:root {
  --blue: #4169e1;
  --blue-dark: #2d4fb8;
  --blue-deep: #1a3490;
  --yellow: #ffce35;
  --yellow-dark: #e6b400;
  --black: #111827;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --gray-light: #f1f4fb;
  --gray-border: #e4e8f0;
  --gray-text: #6b7280;
  --gray-mid: #9ca3af;
  --font-display: "Barlow Condensed", sans-serif;
  --font-body: "Plus Jakarta Sans", sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ─── TOP BAR ─── */
.topbar {
  background: var(--blue-deep);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 8px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar a {
  color: var(--yellow);
  text-decoration: none;
  font-weight: 600;
}
.topbar-right {
  display: flex;
  gap: 20px;
  align-items: center;
}
.topbar-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 206, 53, 0.12);
  border: 1px solid rgba(255, 206, 53, 0.25);
  color: var(--yellow);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ─── NAV ─── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 68px;
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-main {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--blue);
  letter-spacing: 0.01em;
}
.nav-logo-main span {
  color: var(--yellow-dark);
}
.nav-logo-sub {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-mid);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-phone-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.nav-phone-label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-mid);
}
.nav-phone {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--black);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-phone:hover {
  color: var(--blue);
}
.btn-cta-nav {
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 11px 22px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-cta-nav:hover {
  background: var(--yellow-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(255, 206, 53, 0.35);
}

/* ─── HERO ─── */
.hero {
  background: var(--off-white);
  min-height: calc(100vh - 105px);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

/* Background image simulation using a gradient + pattern to look like sky/industrial */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(65, 105, 225, 0.04) 0%, transparent 60%),
    radial-gradient(
      ellipse 80% 60% at 60% 40%,
      rgba(65, 105, 225, 0.05) 0%,
      transparent 70%
    );
}

/* Decorative circles like reference image */
.hero-deco-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(65, 105, 225, 0.12);
  pointer-events: none;
}
.deco-c1 {
  width: 380px;
  height: 380px;
  bottom: -80px;
  left: 30%;
}
.deco-c2 {
  width: 200px;
  height: 200px;
  top: 60px;
  left: 38%;
  border-color: rgba(255, 206, 53, 0.2);
}

/* Floating service badges */
.hero-float-badge {
  position: absolute;
  background: var(--white);
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  font-size: 1.4rem;
  z-index: 3;
  animation: floatBounce 3s ease-in-out infinite;
}
.hero-float-badge.cold {
  bottom: 220px;
  left: 36%;
  background: #e8f0fe;
  animation-delay: 0s;
}
.hero-float-badge.hot {
  bottom: 120px;
  left: 55%;
  animation-delay: 1.5s;
}
@keyframes floatBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 40px;
  min-height: calc(100vh - 105px);
}

/* LEFT */
.hero-left {
  padding: 60px 0;
}
.hero-stars {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
}
.stars-icons {
  color: var(--yellow-dark);
  font-size: 1.05rem;
  letter-spacing: 2px;
}
.stars-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-text);
}
.stars-text strong {
  color: var(--black);
}

.hero-h1 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
  color: var(--black);
}
.hero-h1 em {
  font-style: italic;
  color: var(--blue);
}
.hero-h1 .highlight {
  position: relative;
  display: inline-block;
}
.hero-h1 .highlight::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--yellow);
  opacity: 0.45;
  border-radius: 3px;
  z-index: -1;
}

.hero-sub {
  font-size: 1rem;
  color: var(--gray-text);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  isolation: isolate;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 26px;
  position: relative;
  z-index: 0;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 18px rgba(65, 105, 225, 0.3);
  border-radius: 10px;
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(65, 105, 225, 0.4);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  z-index: 2;
  gap: 9px;
  background: transparent;
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 22px;
  border-radius: 10px;
  border: 2px solid var(--gray-border);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.hero-trust-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.trust-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-text);
}
.trust-pill .dot {
  width: 20px;
  height: 20px;
  background: #e8f0fe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-pill .dot svg {
  color: var(--blue);
}

/* Hero image column */
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 0;
}

/* Technician image frame */
.hero-img-frame {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 420px;
}
.hero-img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, #dce8ff 0%, #b8ccf5 60%, #8aaae8 100%);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 64px rgba(65, 105, 225, 0.18);
}

/* Silhouette HVAC technician using CSS shapes */
.tech-figure {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  height: 88%;
}

/* SVG technician illustration */
.tech-svg {
  width: 100%;
  height: 100%;
}

/* Overlay gradient at bottom of image */
.hero-img-placeholder::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(65, 105, 225, 0.15), transparent);
}

/* Card overlays on image */
.img-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  padding: 12px 16px;
  z-index: 4;
  animation: fadeInUp 0.8s ease both;
}
.img-card.card-tl {
  top: 30px;
  left: -40px;
  min-width: 160px;
  animation-delay: 0.6s;
}
.img-card.card-br {
  bottom: 60px;
  right: -30px;
  min-width: 150px;
  animation-delay: 0.8s;
}
.img-card-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-mid);
  margin-bottom: 3px;
}
.img-card-value {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--black);
  line-height: 1;
}
.img-card-value span {
  color: var(--blue);
}
.img-card-sub {
  font-size: 0.72rem;
  color: var(--gray-text);
  font-weight: 500;
  margin-top: 2px;
}
.img-card-icon {
  width: 32px;
  height: 32px;
  background: var(--yellow);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  font-size: 1rem;
}

/* Hero form (RIGHT side — inline) */
.hero-form-card {
  position: relative;
  background: var(--white);
  border-radius: 20px;
  padding: 32px 28px 28px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.12),
    0 2px 8px rgba(65, 105, 225, 0.08);
  z-index: 5;
  width: 100%;
  max-width: 400px;
  border: 1px solid var(--gray-border);
  animation: fadeInUp 0.7s ease 0.3s both;
  scroll-margin-top: 110px;
}
.hero-form-title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  color: var(--black);
}
.hero-form-sub {
  font-size: 0.8rem;
  color: var(--gray-text);
  margin-bottom: 20px;
  font-weight: 500;
}
.form-field {
  position: relative;
  margin-bottom: 12px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 40px 13px 14px;
  border: 1.5px solid var(--gray-border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--black);
  background: var(--off-white);
  outline: none;
  transition:
    border-color 0.2s,
    background 0.2s;
  appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue);
  background: var(--white);
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--gray-mid);
}
.form-field-icon {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-mid);
  pointer-events: none;
}
.form-field textarea {
  resize: none;
  height: 80px;
  padding-top: 12px;
}
.form-field textarea + .form-field-icon {
  top: 18px;
  transform: none;
}

.btn-form-submit {
  width: 100%;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  padding: 15px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  margin-top: 4px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-form-submit:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 206, 53, 0.4);
}
.form-privacy {
  text-align: center;
  font-size: 0.71rem;
  color: var(--gray-mid);
  margin-top: 10px;
}
.form-success-state {
  display: none;
  text-align: center;
  padding: 20px 0;
}
.form-success-state h3 {
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--black);
}
.form-success-state p {
  font-size: 0.88rem;
  color: var(--gray-text);
  line-height: 1.6;
}
.success-check {
  width: 56px;
  height: 56px;
  background: #e8f5e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.6rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── SERVICE ICONS BAR ─── */
.services-bar {
  background: var(--white);
  border-top: 1px solid var(--gray-border);
  border-bottom: 1px solid var(--gray-border);
  padding: 0 5%;
}
.services-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
}
.service-bar-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 12px;
  border-right: 1px solid var(--gray-border);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gray-text);
  cursor: default;
  transition: all 0.2s;
  text-decoration: none;
  position: relative;
}
.service-bar-item:last-child {
  border-right: none;
}
.service-bar-item:hover {
  color: var(--blue);
  background: var(--gray-light);
}
.service-bar-item:hover::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blue);
}
.service-bar-icon {
  font-size: 1.2rem;
}

/* ─── WHY SECTION ─── */
.why-section {
  background: var(--off-white);
  padding: 80px 5%;
}
.why-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--blue);
  background: #e8f0fe;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.section-h2 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--black);
}
.section-h2 span {
  color: var(--blue);
}
.section-body {
  font-size: 0.95rem;
  color: var(--gray-text);
  line-height: 1.75;
  margin-bottom: 36px;
}

.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.why-card {
  background: var(--white);
  border: 1.5px solid var(--gray-border);
  border-radius: var(--radius-sm);
  padding: 22px;
  transition: all 0.25s;
}
.why-card:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 30px rgba(65, 105, 225, 0.1);
  transform: translateY(-4px);
}
.why-card-icon {
  width: 42px;
  height: 42px;
  background: var(--gray-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 12px;
  transition: background 0.25s;
}
.why-card:hover .why-card-icon {
  background: var(--yellow);
}
.why-card h4 {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 5px;
  color: var(--black);
}
.why-card p {
  font-size: 0.8rem;
  color: var(--gray-text);
  line-height: 1.6;
}

/* Why right: image stack */
.why-img-stack {
  position: relative;
  height: 480px;
}
.why-img-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  height: 360px;
  background: linear-gradient(150deg, #c9d9f8 0%, #8aaae8 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(65, 105, 225, 0.2);
}
.why-img-main img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.why-img-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 58%;
  height: 240px;
  background:
    linear-gradient(
      150deg,
      rgba(26, 52, 144, 0.82) 0%,
      rgba(65, 105, 225, 0.62) 100%
    ),
    url("./dfw-metroplex-hvac-services.png") center / cover no-repeat;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: flex-end;
  padding: 18px;
}
.why-img-accent p {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
}
.why-img-accent p span {
  color: var(--yellow);
}
.why-stat-pill {
  position: absolute;
  top: 30px;
  left: -20px;
  background: var(--yellow);
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 6px 20px rgba(255, 206, 53, 0.35);
  z-index: 3;
}
.why-stat-pill .num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  color: var(--black);
  line-height: 1;
}
.why-stat-pill .lbl {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* SVG illustrations inside image frames */
.frame-svg {
  width: 100%;
  height: 100%;
}

/* ─── SERVICES GRID ─── */
.services-section {
  padding: 80px 5%;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.services-section::before {
  content: "HVAC";
  position: absolute;
  top: -30px;
  right: -20px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 14rem;
  color: rgba(65, 105, 225, 0.03);
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
}
.services-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  gap: 20px;
  flex-wrap: wrap;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(65, 105, 225, 0.14);
}
.service-card-img {
  width: 100%;
  aspect-ratio: 3/2;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.service-card:nth-child(1) .service-card-img {
  background: linear-gradient(145deg, #c9d9f8, #7fa5e8);
}
.service-card:nth-child(2) .service-card-img {
  background: linear-gradient(145deg, #1a3490, #4169e1);
}
.service-card:nth-child(3) .service-card-img {
  background: linear-gradient(145deg, #2d4fb8, #7fa5e8);
}
.service-card:nth-child(4) .service-card-img {
  background: linear-gradient(145deg, #e8f0fe, #b8ccf5);
}
.service-card:nth-child(5) .service-card-img {
  background: linear-gradient(145deg, #1a3490, #2d4fb8);
}
.service-card:nth-child(6) .service-card-img {
  background: linear-gradient(145deg, #4169e1, #8aaae8);
}
.service-card-img-inner {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.service-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.12) 0%,
      rgba(255, 255, 255, 0) 38%
    ),
    linear-gradient(145deg, rgba(18, 42, 119, 0.18), rgba(65, 105, 225, 0.34));
  pointer-events: none;
  z-index: 1;
}
.service-card-img-inner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 0;
}
.service-card-img-label {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  z-index: 2;
}
.service-card-body {
  background: var(--white);
  border: 1.5px solid var(--gray-border);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 20px 22px;
}
.service-card-body h3 {
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--black);
}
.service-card-body p {
  font-size: 0.82rem;
  color: var(--gray-text);
  line-height: 1.6;
  margin-bottom: 14px;
}
.service-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  transition: gap 0.2s;
}
.service-card-cta:hover {
  gap: 10px;
}

/* ─── PROCESS ─── */
.process-section {
  background: var(--blue-deep);
  padding: 80px 5%;
  position: relative;
  overflow: hidden;
}
.process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 20% 50%,
      rgba(255, 206, 53, 0.06) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.04) 0%,
      transparent 40%
    );
}
.process-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.process-inner .section-eyebrow {
  background: rgba(255, 206, 53, 0.15);
  color: var(--yellow);
}
.process-inner .section-h2 {
  color: var(--white);
}
.process-inner .section-h2 span {
  color: var(--yellow);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  position: relative;
}
/* connector line */
.process-grid::before {
  content: "";
  position: absolute;
  top: 28px;
  left: calc(12.5% + 14px);
  right: calc(12.5% + 14px);
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(255, 206, 53, 0.4),
    rgba(255, 206, 53, 0.1)
  );
}
.process-step {
  text-align: center;
  position: relative;
}
.process-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
  transition: transform 0.25s;
}
.process-step:hover .process-num {
  transform: scale(1.15);
}
.process-step h4 {
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 8px;
}
.process-step p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
}

/* ─── METRICS BAR ─── */
.metrics-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-border);
  padding: 50px 5%;
}
.metrics-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.metric-item {
  padding: 10px 20px;
  border-right: 1px solid var(--gray-border);
  transition: background 0.2s;
}
.metric-item:last-child {
  border-right: none;
}
.metric-item:hover {
  background: var(--gray-light);
}
.metric-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 3rem;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.metric-num sup {
  font-size: 1.5rem;
  vertical-align: super;
  color: var(--yellow-dark);
}
.metric-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-text);
}

/* ─── TESTIMONIALS ─── */
.testimonials-section {
  background: var(--off-white);
  padding: 80px 5%;
}
.testimonials-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--white);
  border: 1.5px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.25s;
}
.testimonial-card:hover {
  border-color: var(--blue);
  box-shadow: 0 10px 32px rgba(65, 105, 225, 0.08);
}
.t-stars {
  color: var(--yellow-dark);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.t-text {
  font-size: 0.9rem;
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.t-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1rem;
  flex-shrink: 0;
  color: var(--white);
}
.t-avatar.a {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
}
.t-avatar.b {
  background: linear-gradient(135deg, #1a3490, var(--blue));
}
.t-avatar.c {
  background: linear-gradient(135deg, var(--yellow-dark), #f5a623);
  color: var(--black);
}
.t-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--black);
}
.t-role {
  font-size: 0.75rem;
  color: var(--gray-mid);
  font-weight: 500;
}

/* ─── FINAL CTA ─── */
.final-cta {
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue) 100%);
  padding: 80px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.02) 0,
    rgba(255, 255, 255, 0.02) 1px,
    transparent 1px,
    transparent 30px
  );
}
.final-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}
.final-cta h2 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 16px;
}
.final-cta h2 span {
  color: var(--yellow);
}
.final-cta p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 36px;
}
.final-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-yellow-lg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--yellow);
  color: var(--black);
  font-weight: 800;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 6px 24px rgba(255, 206, 53, 0.35);
}
.btn-yellow-lg:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 206, 53, 0.45);
}
.btn-white-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 28px;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: all 0.2s;
}
.btn-white-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

/* ─── FOOTER ─── */
footer {
  background: var(--black);
  padding: 56px 5% 32px;
}
.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-logo-main {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 4px;
}
.footer-logo-main span {
  color: var(--yellow);
}
.footer-logo-sub {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 16px;
}
.footer-about {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 20px;
}
.footer-contact-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 6px;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact-line:hover {
  color: var(--yellow);
}
.footer-col-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--yellow);
  margin-bottom: 18px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: rgba(255, 255, 255, 0.85);
}
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
}
.license-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 206, 53, 0.08);
  border: 1px solid rgba(255, 206, 53, 0.2);
  color: rgba(255, 255, 255, 0.4);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.72rem;
}
.license-tag span {
  color: var(--yellow);
  font-weight: 700;
}

/* ─── MOBILE FLOAT ─── */
.float-call-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  display: none;
  align-items: center;
  gap: 10px;
  background: var(--yellow);
  color: var(--black);
  font-weight: 800;
  font-size: 1rem;
  padding: 15px 24px;
  border-radius: 50px;
  box-shadow: 0 8px 28px rgba(255, 206, 53, 0.5);
  text-decoration: none;
  animation: floatPulse 2.5s infinite;
}
@keyframes floatPulse {
  0%,
  100% {
    box-shadow: 0 8px 28px rgba(255, 206, 53, 0.4);
  }
  50% {
    box-shadow: 0 8px 44px rgba(255, 206, 53, 0.65);
  }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 50px 5% 60px;
  }
  .hero-right {
    display: none;
  }
  .hero-form-card {
    max-width: 100%;
  }
  .hero-left {
    padding: 0;
  }
  .why-inner {
    grid-template-columns: 1fr;
  }
  .why-img-stack {
    display: none;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid::before {
    display: none;
  }
}
@media (max-width: 680px) {
  .topbar {
    font-size: 0.72rem;
  }
  .topbar-right {
    display: none;
  }
  nav {
    padding: 0 4%;
    height: 60px;
  }
  .nav-phone,
  .nav-phone-label {
    display: none;
  }
  .services-bar-inner {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .service-bar-item {
    flex-shrink: 0;
    padding: 16px 14px;
    font-size: 0.78rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .metrics-inner {
    grid-template-columns: 1fr 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .why-cards {
    grid-template-columns: 1fr;
  }
  .float-call-btn {
    display: flex;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
}
