/* ======= GOOGLE-STYLE ADDRESS AUTOCOMPLETE ======= */
.gpa-dropdown {
  position: absolute;
  z-index: 10000;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 4px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18), 0 2px 6px rgba(0,0,0,0.08);
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
  padding: 4px 0 0;
}
.gpa-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  cursor: pointer;
  font-size: 14px;
  color: #111827;
  line-height: 1.2;
  background: #fff;
  border-bottom: 1px solid #F1F2F4;
}
.gpa-row:last-of-type { border-bottom: none; }
.gpa-row-active,
.gpa-row:hover { background: #F5F6F8; }
.gpa-pin {
  width: 16px; height: 16px;
  color: #9AA0A6;
  flex-shrink: 0;
}
.gpa-primary {
  font-weight: 600;
  color: #202124;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 60%;
}
.gpa-secondary {
  font-size: 13px;
  font-weight: 400;
  color: #70757A;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.gpa-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  padding: 6px 12px 8px;
  background: #fff;
  font-size: 11px;
  color: #70757A;
}
.gpa-pb { letter-spacing: 0.01em; }
.gpa-g {
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: -0.01em;
}

/* ======= RESET & BASE ======= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; color: #111827; background: #fff; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ======= TOKENS ======= */
:root {
  --blue:        #1352a8;
  --blue-dark:   #0e3f82;
  --blue-navy:   #0a2f63;
  --blue-light:  #E6EEF9;
  --orange:      #FF9404;
  --green:       #2a7d2e;
  --green-dark:  #1f5e22;
  --black:       #111827;
  --gray-700:    #374151;
  --gray-500:    #6B7280;
  --gray-200:    #E5E7EB;
  --gray-100:    #F3F4F6;
  --gray-50:     #F9FAFB;
  --white:       #FFFFFF;
  --shadow-md:   0 2px 16px rgba(0,0,0,0.08);
  --shadow-lg:   0 8px 32px rgba(0,0,0,0.12);
}

/* ======= LAYOUT ======= */
.container { max-width: 1160px; margin: 0 auto; padding: 0 40px; }
.section { padding: 88px 0; }
.section-alt { background: var(--gray-50); }

/* ======= TYPOGRAPHY ======= */
.eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; }
.eyebrow-white { color: rgba(255,255,255,0.65); }
h1 { font-size: clamp(34px, 5vw, 56px); font-weight: 800; line-height: 1.1; letter-spacing: -0.025em; }
h2 { font-size: clamp(26px, 3.5vw, 38px); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; color: var(--black); }
h3 { font-size: 19px; font-weight: 700; color: var(--black); margin-bottom: 8px; }
p { font-size: 16px; line-height: 1.7; color: var(--gray-700); }
.lead { font-size: 17px; line-height: 1.65; color: var(--gray-700); max-width: 560px; }
.text-center { text-align: center; }
.text-white { color: var(--white); }

/* ======= BUTTONS ======= */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 700;
  padding: 13px 26px; border-radius: 8px; border: 2px solid transparent;
  cursor: pointer; transition: all 0.2s ease; white-space: nowrap;
}
.btn-primary { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(30,79,193,0.28); }
.btn-green { background: var(--green); color: #fff; border-color: var(--green); }
.btn-green:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }
.btn-white { background: #fff; color: var(--blue); border-color: #fff; font-weight: 700; }
.btn-white:hover { background: var(--blue-light); }

/* ======= TOP BAR ======= */
.topbar {
  background: #0A1628;
  padding: 10px 0;
}
.topbar-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.topbar-tag {
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.topbar-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; color: #fff;
  text-decoration: none;
  transition: color 0.15s;
}
.topbar-phone:hover { color: #7DD3A8; }
.topbar-phone i,
.topbar-phone svg { color: #7DD3A8; flex-shrink: 0; }

/* ======= NAV ======= */
.nav-wrap { position: sticky; top: 0; z-index: 100; }
.nav {
  background: #fff;
  border-bottom: 1.5px solid var(--gray-200);
  box-shadow: 0 2px 12px rgba(30,79,193,0.07);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 86px; max-width: 1160px; margin: 0 auto; padding: 0 40px;
}
.nav-logo img { height: 52px; object-fit: contain; }
.nav-links { display: flex; gap: 4px; list-style: none; }
.nav-links a {
  white-space: nowrap;
  font-size: 14px; font-weight: 700; color: #374151;
  padding: 8px 14px; border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--blue); background: var(--blue-light); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 7px;
  background: #22A04B;
  color: #fff; font-family: 'Poppins', sans-serif;
  font-size: 13px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  line-height: 1.2;
  padding: 14px 26px; border-radius: 6px; border: none; cursor: pointer;
  box-shadow: 0 2px 8px rgba(34,160,75,0.25);
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
}
.nav-cta:hover { background: #1c8a3f; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(34,160,75,0.35); }

/* ======= NAV SCROLL FORM ======= */
/* Hidden by default — reveals when body has .nav-scrolled (set after user scrolls past the hero). */
.nav-scroll-form {
  display: none;
  flex: 1;
  max-width: 720px;
  margin: 0 24px;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 999px;
  padding: 4px 4px 4px 6px;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 10px rgba(10,30,70,0.06);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.nav-scroll-form .nsf-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #111827;
  padding: 12px 16px;
  min-width: 0;
}
.nav-scroll-form .nsf-input::placeholder { color: #9CA3AF; }
.nav-scroll-form .nsf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #22A04B;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  border-radius: 999px;
  padding: 12px 22px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}
.nav-scroll-form .nsf-btn:hover { background: #1c8a3f; }

/* When scrolled: swap nav-links + CTA out, swap form in. */
body.nav-scrolled .nav-wrap .nav-links { display: none; }
body.nav-scrolled .nav-wrap .nav-cta { display: none; }
body.nav-scrolled .nav-wrap .nav-scroll-form {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}
/* Slim down the nav when scrolled so it looks like a sticky utility bar */
body.nav-scrolled .nav-wrap .nav { height: 92px !important; }
body.nav-scrolled .nav-wrap .nav-inner { height: 92px !important; }
body.nav-scrolled .nav-wrap .nav-logo img { height: 76px !important; width: auto !important; }


/* Mobile menu — hidden by default; revealed below 900px */
.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  align-items: center; justify-content: center;
  background: transparent;
  border: 1.5px solid #E5E7EB;
  border-radius: 10px;
  cursor: pointer;
  color: #111827;
  padding: 0;
  transition: background 0.15s, border-color 0.15s;
}
.nav-toggle:hover { background: var(--blue-light); border-color: var(--blue); color: var(--blue); }
.nav-toggle svg { width: 24px; height: 24px; display: block; }
.nav-toggle .icon-close { display: none; }
.nav-toggle.open .icon-open { display: none; }
.nav-toggle.open .icon-close { display: block; }

/* Mobile drawer */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 86vw);
  height: 100vh;
  background: #fff;
  box-shadow: -10px 0 32px rgba(0,0,0,0.18);
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  flex-direction: column;
  padding: 22px 22px 28px;
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 18px; margin-bottom: 12px;
  border-bottom: 1px solid var(--gray-200);
}
.mobile-menu-header img { height: 48px; width: auto; object-fit: contain; }
.mobile-menu-close {
  width: 40px; height: 40px;
  background: transparent; border: 1px solid var(--gray-200);
  border-radius: 8px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #374151;
}
.mobile-menu-close:hover { background: var(--gray-100); }
.mobile-menu nav { display: flex; flex-direction: column; gap: 2px; }
.mobile-menu nav a {
  display: flex; align-items: center; gap: 12px;
  font-size: 16px; font-weight: 700; color: #111827;
  padding: 14px 14px;
  border-radius: 10px;
  transition: background 0.15s, color 0.15s;
}
.mobile-menu nav a:hover,
.mobile-menu nav a.active { background: var(--blue-light); color: var(--blue); }
.mobile-menu nav a .chev { margin-left: auto; color: #9CA3AF; }
.mobile-menu .mm-cta {
  margin-top: 18px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: #22A04B; color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 14px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 15px 18px; border-radius: 10px;
  border: none; cursor: pointer;
  box-shadow: 0 6px 16px rgba(34,160,75,0.3);
}
.mobile-menu .mm-cta:hover { background: #1c8a3f; }
.mobile-menu .mm-contact {
  margin-top: 22px; padding-top: 18px;
  border-top: 1px solid var(--gray-200);
  display: flex; flex-direction: column; gap: 10px;
  font-size: 13px; color: var(--gray-500);
}
.mobile-menu .mm-contact a {
  display: inline-flex; align-items: center; gap: 8px;
  color: #111827; font-weight: 600; font-size: 14px;
}
.mobile-menu .mm-contact a:hover { color: var(--blue); }

.menu-backdrop {
  display: none;
  pointer-events: none;
  position: fixed; inset: 0;
  background: rgba(10,22,40,0.45);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.24s ease;
}
.menu-backdrop.open { opacity: 1; pointer-events: auto; }
body.menu-open { overflow: hidden; }

/* ======= TICKER ======= */
.ticker { background: #fff; color: #374151; padding: 0; overflow: hidden; border-bottom: 1px solid #E5E7EB; }
.ticker-track { display: flex; gap: 0; animation: ticker 22s linear infinite; white-space: nowrap; align-items: center; }
.ticker-item { display: inline-flex; align-items: center; font-size: 11.5px; font-weight: 500; color: #374151; padding: 8px 32px; }
.ticker-item .t-blue { color: #1E4FC1; font-weight: 700; }
.ticker-dot { width: 3px; height: 3px; border-radius: 50%; background: #D1D5DB; display: inline-block; margin: 0 4px; vertical-align: middle; flex-shrink: 0; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ======= HERO ======= */
.hero {
  min-height: 720px;
  background:
    linear-gradient(to bottom, rgba(10,25,55,0.28) 0%, rgba(10,25,55,0.22) 50%, rgba(10,25,55,0.30) 100%),
    url('assets/hero-house-opt.webp') center center/cover no-repeat;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  padding: 80px 0 100px;
}
.hero::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 160px;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.95) 100%);
  pointer-events: none; z-index: 1;
}
.hero-headline {
  color: #fff; font-weight: 800;
  font-size: clamp(34px, 4.6vw, 56px);
  text-transform: uppercase; letter-spacing: 0.01em;
  line-height: 1.1; margin-bottom: 22px; text-align: center;
  text-shadow: 0 2px 18px rgba(10,30,70,0.45), 0 1px 2px rgba(10,30,70,0.35);
}
.hero-sublead {
  color: #fff; font-size: 18px; font-weight: 700;
  text-align: center; line-height: 1.55; margin: 0 auto 36px;
  max-width: 560px;
  text-shadow: 0 1px 12px rgba(10,30,70,0.45), 0 1px 2px rgba(10,30,70,0.35);
}
.hero-form-row {
  background: #fff; border-radius: 4px;
  box-shadow: 0 12px 36px rgba(10,40,80,0.15);
  padding: 8px; display: grid; grid-template-columns: 1.45fr 1fr auto;
  gap: 8px; max-width: 760px; margin: 0 auto;
}
.hero-form-row .form-input {
  border: 1px solid #E5E7EB; border-radius: 3px; padding: 16px 18px;
  font-size: 14px; box-shadow: none;
}
.hero-form-row .hero-submit {
  background: var(--blue); color: #fff; border: none;
  border-radius: 3px; padding: 0 32px; cursor: pointer;
  font-family: 'Poppins', sans-serif; font-size: 14px;
  font-weight: 700; letter-spacing: 0.08em;
  transition: background 0.15s;
}
.hero-form-row .hero-submit:hover { background: var(--blue-dark); }
.hero-trust-line {
  text-align: center; margin-top: 28px;
  font-size: 14px; font-weight: 700; color: #fff;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 8px rgba(10,30,70,0.5);
}
.hero-google {
  display: flex; flex-direction: column; align-items: center;
  margin-top: 24px; gap: 4px;
}
.hero-google-logo { font-family: 'Poppins', sans-serif; font-weight: 500; font-size: 32px; letter-spacing: -0.01em; }
.hero-google-logo span:nth-child(1) { color: #4285F4; }
.hero-google-logo span:nth-child(2) { color: #EA4335; }
.hero-google-logo span:nth-child(3) { color: #FBBC05; }
.hero-google-logo span:nth-child(4) { color: #4285F4; }
.hero-google-logo span:nth-child(5) { color: #34A853; }
.hero-google-logo span:nth-child(6) { color: #EA4335; }
.hero-google-stars { color: #FBBC05; font-size: 16px; letter-spacing: 2px; }

/* As Seen On strip */
.as-seen { background: #F4EEDF; padding: 44px 0; border-top: 1px solid rgba(0,0,0,0.04); border-bottom: 1px solid rgba(0,0,0,0.04); }
.as-seen-inner { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.as-seen-label { color: #fff; font-size: 18px; font-weight: 700; letter-spacing: 0.02em; }
.as-seen-logos { display: flex; align-items: center; gap: 64px; color: #fff; font-weight: 800; font-style: italic; }
.as-seen-logos .net { font-size: 30px; letter-spacing: 0.04em; }

/* Anywhere section */
.anywhere-section {
  background: var(--blue-navy);
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 90px 0;
}
.anywhere-section::before { content: ''; position: absolute; inset: 0; opacity: 0.05; background-image: radial-gradient(circle, #fff 1px, transparent 1px); background-size: 26px 26px; }
.anywhere-section .container { max-width: 1320px; padding: 0 28px; position: relative; z-index: 2; }
.anywhere-grid {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 48px;
  align-items: center;
}
.anywhere-images {
  display: flex; flex-direction: column; gap: 18px;
}
.anywhere-images img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 6px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
}
.anywhere-caption {
  text-align: center; font-style: italic; font-size: 14px;
  color: rgba(255,255,255,0.75); margin-top: 6px;
}
.anywhere-text h2 {
  font-size: clamp(24px, 2.4vw, 30px); font-weight: 800;
  color: #fff; line-height: 1.3; margin-bottom: 18px;
}
.anywhere-text > p {
  font-size: 15px; line-height: 1.75; color: rgba(255,255,255,0.85);
  margin-bottom: 26px;
}
.anywhere-checks {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px 28px; margin-bottom: 32px;
}
.anywhere-checks .ac-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; color: #fff; font-weight: 500;
}
.anywhere-checks .ac-mark {
  width: 24px; height: 24px; border-radius: 50%;
  background: #fff; color: var(--blue-navy);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.anywhere-cta {
  display: inline-block;
  background: linear-gradient(135deg, #22A04B, #187A38);
  color: #fff;
  border: none;
  padding: 18px 56px;
  border-radius: 40px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}
.anywhere-cta:hover { background: linear-gradient(135deg, #1c8a3f, #145f2b); }
.anywhere-cta-wrap { text-align: left; margin-top: 24px; }
@media (max-width: 860px) {
  .anywhere-section .container { padding: 0 20px; }
  .anywhere-grid { grid-template-columns: 1fr; gap: 36px; }
  .anywhere-checks { grid-template-columns: 1fr; }
}

/* We've Made It Simple */
.simple-section { background: #fff; padding: 100px 0; }
.simple-head { text-align: center; margin-bottom: 64px; }
.simple-head h2 { font-size: clamp(28px, 3.2vw, 38px); font-weight: 800; margin-bottom: 12px; }
.simple-head p { font-size: 16px; color: var(--black); font-weight: 500; }
.simple-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.simple-card { background: #fff; border: 1px solid #E5E7EB; border-radius: 4px; padding: 48px 36px 40px; text-align: center; }
.simple-icon { width: 72px; height: 72px; border-radius: 50%; background: var(--blue); color: #fff; display: flex; align-items: center; justify-content: center; margin: 0 auto 26px; }
.simple-icon svg { width: 36px; height: 36px; }
.simple-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 10px; }
.simple-card .tagline { font-size: 15px; font-style: italic; color: var(--black); margin-bottom: 16px; }
.simple-card p { font-size: 14px; line-height: 1.7; color: #374151; }
.hero-inner { display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; z-index: 2; padding: 80px 0 70px; gap: 28px; }
.hero-content { max-width: 700px; }
.hero-content h1 { color: #fff; margin-bottom: 12px; font-size: clamp(36px, 5vw, 62px); }
.hero-lead { font-size: 17px; color: rgba(255,255,255,0.85); line-height: 1.6; margin: 0 auto; }
.hero-lead strong { font-style: italic; color: #fff; }
.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 0; }
.hero-badge {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.9);
  font-size: 12px; font-weight: 600; padding: 6px 13px;
  border-radius: 99px; border: 1px solid rgba(255,255,255,0.18);
}

/* Hero form card */
.hero-form {
  background: rgba(8,18,42,0.82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  padding: 32px 36px;
  width: 480px; max-width: 100%;
}
.hero-form .hero-form-title { color: #fff; }
.hero-form .form-field { text-align: left; }
.hero-form .form-field label { color: rgba(255,255,255,0.85); }
.hero-form .form-input {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.25);
  color: #fff;
}
.hero-form .form-input::placeholder { color: rgba(255,255,255,0.45); }
.hero-form .form-input:focus { border-color: rgba(255,255,255,0.6); box-shadow: 0 0 0 3px rgba(255,255,255,0.1); background: rgba(255,255,255,0.15); }
.hero-form .form-note { color: rgba(255,255,255,0.45); }
.hero-form-title { font-size: 18px; font-weight: 800; color: var(--black); margin-bottom: 3px; }
.hero-form-sub { font-size: 12px; color: var(--gray-500); margin-bottom: 20px; }
.form-field { margin-bottom: 9px; }
.form-field label { display: block; font-size: 11px; font-weight: 600; color: var(--gray-700); margin-bottom: 4px; }
.form-input {
  font-family: 'Poppins', sans-serif; font-size: 13px; color: var(--black);
  background: #fff; border: 1.5px solid var(--gray-200); border-radius: 8px;
  padding: 11px 13px; width: 100%; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(30,79,193,0.1); }
.form-input::placeholder { color: #9CA3AF; }
.form-input.valid { border-color: var(--green); }
.form-select { font-family: 'Poppins', sans-serif; font-size: 13px; color: var(--black); background: #fff; border: 1.5px solid var(--gray-200); border-radius: 8px; padding: 11px 13px; width: 100%; outline: none; }
.form-textarea { font-family: 'Poppins', sans-serif; font-size: 13px; color: var(--black); background: #fff; border: 1.5px solid var(--gray-200); border-radius: 8px; padding: 11px 13px; width: 100%; outline: none; resize: vertical; min-height: 60px; }
.form-textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(30,79,193,0.1); }
.form-btn {
  width: 100%; padding: 14px;
  background: linear-gradient(135deg, #22A04B, #187A38);
  color: #fff; font-family: 'Poppins', sans-serif;
  font-size: 15px; font-weight: 800; letter-spacing: 0.03em;
  border: none; border-radius: 10px; cursor: pointer;
  box-shadow: 0 4px 16px rgba(34,160,75,0.3);
  transition: transform 0.15s, box-shadow 0.15s;
}
.form-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(34,160,75,0.4); }
.form-note { font-size: 10px; color: var(--gray-500); text-align: center; margin-top: 10px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.form-grid-2 .full { grid-column: 1 / -1; }

/* ======= PROCESS (Our Process Is Simple) ======= */
.process-section { background: #fff; }
.process-title {
  font-style: italic; font-weight: 800;
  color: var(--blue);
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.process-sub {
  color: var(--blue);
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 500;
  margin: 0 auto;
}
.process-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 56px; margin-top: 64px;
}
.process-step { text-align: center; padding: 0 12px; }
.process-icon {
  width: 96px; height: 96px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 6px 20px rgba(30,79,193,0.22);
}
.process-icon svg { width: 48px; height: 48px; display: block; }
/* The dotted track runs behind the icons, so each circle needs an opaque ring
   of page colour around it to sit cleanly on the line. */
.process-grid { position: relative; }
.process-track {
  position: absolute; top: 48px; left: 17%; right: 17%; height: 2px;
  background: repeating-linear-gradient(90deg, #D3D9E3 0 7px, transparent 7px 15px);
}
.process-step { position: relative; }
.process-icon { box-shadow: 0 6px 20px rgba(30,79,193,0.22), 0 0 0 9px #f9fafb; }
@media (max-width: 900px) { .process-track { display: none; } }
.process-step h3 {
  font-size: 20px; font-weight: 800; color: var(--black);
  margin-bottom: 10px;
}
.process-step p {
  font-size: 15px; line-height: 1.7;
  color: #4B5563;
  max-width: 300px; margin: 0 auto;
}

/* ======= WHY CHOOSE ======= */
.why-section { background: #F2F2F2; }
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.why-copy { text-align: center; padding: 0 20px; }
.why-copy h2 {
  font-size: clamp(26px, 2.8vw, 34px);
  font-weight: 800;
  margin-bottom: 22px;
}
.why-copy p {
  font-size: 17px; line-height: 1.65;
  color: var(--black);
  max-width: 420px; margin: 0 auto;
}
.why-list-col { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.why-logo { width: 240px; height: auto; margin-bottom: 6px; }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.why-list li {
  display: flex; align-items: center; gap: 14px;
  font-size: 17px; font-weight: 500; color: var(--black);
}
.why-check {
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}
.why-check svg { width: 22px; height: 22px; }

/* ======= GREEN PILL CTA (process / why sections) ======= */
.btn-pill-green {
  display: inline-block;
  padding: 18px 44px;
  background: linear-gradient(135deg, #22A04B, #187A38);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 15px; font-weight: 800; letter-spacing: 0.06em;
  border: none; border-radius: 999px; cursor: pointer;
  box-shadow: 0 6px 20px rgba(34,160,75,0.32);
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-pill-green:hover { transform: translateY(-1px); box-shadow: 0 10px 28px rgba(34,160,75,0.45); }

/* ======= TRUST BAR ======= */
.trust-bar { background: #fff; border-bottom: 1px solid var(--gray-200); padding: 24px 0; }
.trust-inner { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 11px; }
.trust-icon { width: 40px; height: 40px; background: var(--blue-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--blue); flex-shrink: 0; }
.trust-label { font-size: 13px; font-weight: 700; color: var(--black); }
.trust-sub { font-size: 11px; color: var(--gray-500); }
.trust-divider { width: 1px; height: 36px; background: var(--gray-200); }

/* ======= BENEFITS ======= */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 52px; }
.benefit-card {
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: 16px; box-shadow: var(--shadow-md); padding: 28px;
  text-align: center; transition: transform 0.2s, box-shadow 0.2s;
  position: relative; overflow: hidden;
}
.benefit-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--blue), #2D62D9); }
.benefit-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.benefit-icon { width: 56px; height: 56px; background: linear-gradient(135deg, #E8EEFB, #C8D8F8); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--blue); margin: 0 auto 16px; }
.benefit-card h3 { font-size: 16px; margin-bottom: 8px; }
.benefit-card p { font-size: 13px; color: var(--gray-500); line-height: 1.65; }

/* ======= COMPARISON — Real Estate Made Real Easy ======= */
/* ======= COMPARISON — Real Estate Made Real Easy ======= */
.comparison-wrap {
  margin: 48px auto 0;
  max-width: 1040px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.comp-panel {
  display: flex;
  flex-direction: column;
  padding: 32px 32px 28px;
  border-radius: 16px;
  color: #fff;
  position: relative;
  flex-shrink: 0;
}
.comp-smartoffer {
  background: #102E66;
  background: linear-gradient(180deg, #1E5BB7 0%, #0A2F63 100%);
  box-shadow: 0 24px 56px rgba(10,47,99,0.42);
  width: 450px;
  padding: 46px 32px 42px;
  z-index: 2;
}
.comp-smartoffer .comp-list li { padding: 15px 0; }
.comp-traditional {
  background: #2A2026;
  background: linear-gradient(180deg, #2F2329 0%, #1C1418 100%);
  box-shadow: 0 16px 36px rgba(28,20,24,0.38);
  width: 410px;
  z-index: 1;
}
.comp-panel-heading {
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.1;
}
.comp-smartoffer .comp-panel-heading { font-size: 27px; }
.comp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
}
.comp-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  padding: 12px 0;
}
.comp-traditional .comp-list li { padding: 11px 0; }
.comp-smartoffer .comp-list li + li {
  border-top: 1px solid rgba(255,255,255,0.22);
}
.comp-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.comp-icon-x {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: #2A2026;
}
.comp-icon-x svg { width: 13px; height: 13px; display: block; }
.comp-icon-check svg {
  width: 24px; height: 24px;
  color: #fff;
  display: block;
}
.comp-bullet,
.comp-icon-no, .comp-icon-yes,
.yes, .no { display: none; }

@media (max-width: 760px) {
  .comparison-wrap {
    flex-direction: column;
    gap: 16px;
    max-width: 420px;
  }
  .comp-panel { width: 100%; max-width: 360px; padding: 24px 22px; }
  .comp-panel-heading { font-size: 20px; }
  .comp-smartoffer .comp-panel-heading { font-size: 22px; }
  .comp-list li { font-size: 14px; padding: 10px 0; }
}

/* ======= STEPS ======= */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 52px; position: relative; }
.steps::before {
  content: ''; position: absolute;
  top: 33px; left: calc(16.66% + 20px); right: calc(16.66% + 20px);
  height: 2px;
  background: linear-gradient(90deg, #1E4FC1, #163799);
  z-index: 0;
}
.step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 28px; position: relative; z-index: 1;
}
.step-num {
  width: 66px; height: 66px;
  background: linear-gradient(135deg, #1E4FC1, #0D1E4A);
  color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 800; margin-bottom: 20px;
  border: 4px solid #fff;
  box-shadow: 0 4px 20px rgba(30,79,193,0.3), 0 0 0 4px rgba(30,79,193,0.1);
  position: relative; z-index: 2;
}
.step-icon { display: none; }
.step h3 { margin-bottom: 8px; font-size: 17px; font-weight: 700; }
.step p { font-size: 14px; color: var(--gray-500); line-height: 1.65; }

/* ======= TESTIMONIALS ======= */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; align-items: stretch; }
.testimonial-card { background: #fff; border: 1px solid var(--gray-200); border-radius: 14px; box-shadow: var(--shadow-md); padding: 26px; display: flex; flex-direction: column; height: 100%; }
.stars { display: flex; gap: 3px; margin-bottom: 14px; color: #F59E0B; }
.testimonial-text { font-size: 14px; line-height: 1.7; color: var(--gray-700); margin-bottom: 18px; font-style: italic; flex-grow: 1; }
.testimonial-author { display: flex; align-items: center; gap: 11px; margin-top: auto; }
.author-avatar { width: 40px; height: 40px; background: var(--blue-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 700; color: var(--blue); flex-shrink: 0; }
.author-name { font-size: 13px; font-weight: 700; color: var(--black); }
.author-loc { font-size: 11px; color: var(--gray-500); }

/* ======= CTA BAND (aerial photo style) ======= */
.cta-band {
  position: relative; padding: 88px 0; text-align: center;
  background: linear-gradient(135deg, #071229 0%, #0D1E4A 100%);
  overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0; opacity: 0.05;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 28px 28px;
}
.cta-band-inner { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band .sub { font-size: 17px; color: rgba(255,255,255,0.7); max-width: 480px; margin: 0 auto 36px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ======= ABOUT PAGE ======= */
.page-hero { background: linear-gradient(135deg, #071229 0%, #0D1E4A 100%); padding: 52px 0; min-height: 220px; display: flex; align-items: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; opacity: 0.04; background-image: radial-gradient(circle, #fff 1px, transparent 1px); background-size: 28px 28px; }
.page-hero-inner { position: relative; z-index: 2; width: 100%; }
.page-hero h1 { color: #fff; margin-bottom: 14px; }
.page-hero .sub { font-size: 17px; color: rgba(255,255,255,0.7); max-width: 520px; }
.about-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: start; }
.about-trust-card { background: linear-gradient(180deg, #F7FAFF, #EEF3FD); border: 1px solid var(--blue-light); border-radius: 18px; padding: 36px 34px; }
.about-trust-card .trust-card-icon { width: 46px; height: 46px; background: var(--blue); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #fff; margin-bottom: 18px; }
.about-trust-card h3 { font-size: 20px; font-weight: 700; color: var(--black); margin-bottom: 10px; line-height: 1.25; }
.about-trust-card p { font-size: 14.5px; color: var(--gray-700); line-height: 1.7; margin-bottom: 22px; }
.about-trust-list { display: flex; flex-direction: column; gap: 14px; }
.about-trust-list div { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--gray-700); font-weight: 500; }
.about-trust-list i { color: var(--blue); flex-shrink: 0; margin-top: 1px; width: 22px; height: 22px; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
.value-item { background: #fff; border: 1px solid var(--gray-200); border-radius: 14px; padding: 26px 22px; box-shadow: 0 1px 4px rgba(0,0,0,0.04); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.value-item:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.value-icon { width: 42px; height: 42px; background: var(--blue-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--blue); margin-bottom: 14px; }
.value-item h4 { font-size: 15px; font-weight: 700; color: var(--black); margin-bottom: 6px; }
.value-item p { font-size: 13.5px; color: var(--gray-500); line-height: 1.65; }

/* ======= HOW IT WORKS ======= */
.hiw-timeline { position: relative; max-width: 1000px; margin: 0 auto; padding-left: 56px; }
.hiw-timeline::before { content: ''; position: absolute; left: 172px; top: 4px; bottom: 4px; width: 9px; background: linear-gradient(180deg, var(--blue), var(--green)); border-radius: 5px; }
.hiw-step { position: relative; display: grid; grid-template-columns: 100px 40px 1fr; margin-bottom: 52px; }
.hiw-step:last-child { margin-bottom: 0; }
.hiw-step > .step-badge { grid-column: 1; text-align: right; padding-top: 4px; }
.hiw-step > .hiw-step-body { grid-column: 3; }
.hiw-step h2 { font-size: 29px; }
.hiw-step p { font-size: 16px; line-height: 1.7; }
.hiw-closing-tag { display: inline-flex; align-items: center; gap: 6px; background: var(--green); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; padding: 4px 10px; border-radius: 20px; margin-top: 2px; }
.hiw-closing-tag i { width: 12px; height: 12px; }
.step-badge { font-size: 18px; font-weight: 800; color: var(--blue); letter-spacing: 0.08em; text-transform: uppercase; }
.hiw-list { list-style: none; margin-top: 18px; display: flex; flex-direction: column; gap: 12px; }
.hiw-list li { display: flex; align-items: center; gap: 11px; font-size: 15.5px; color: var(--gray-700); }
.hiw-list li i { color: var(--green); flex-shrink: 0; }

/* ======= GET OFFER ======= */
.offer-hero { background: linear-gradient(180deg, rgba(7,18,41,0.55), rgba(13,30,74,0.65)), url('assets/contact-hero-bg-opt.webp') center 45%/cover no-repeat; padding: 64px 0; text-align: center; position: relative; overflow: hidden; }
.offer-hero::before { content: ''; position: absolute; inset: 0; opacity: 0.04; background-image: radial-gradient(circle, #fff 1px, transparent 1px); background-size: 28px 28px; }
.offer-hero-inner { position: relative; z-index: 2; }
.offer-hero h1 { color: #fff; margin-bottom: 10px; }
.offer-hero .sub { font-size: 16px; color: rgba(255,255,255,0.82); max-width: 500px; margin: 0 auto; }
.offer-form-card { background: #fff; border-radius: 18px; box-shadow: 0 16px 48px rgba(0,0,0,0.13); padding: 48px; max-width: 680px; margin: -44px auto 0; position: relative; z-index: 10; }
.offer-form-card h3 { font-size: 21px; font-weight: 800; margin-bottom: 4px; }
.offer-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 72px; }
.offer-feature { text-align: center; }
.offer-feature-icon { width: 54px; height: 54px; background: var(--blue-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--blue); margin: 0 auto 14px; }
.offer-feature h4 { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.offer-feature p { font-size: 13px; color: var(--gray-500); }

/* ======= CONTACT ======= */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.contact-info h2 { margin-bottom: 14px; }
.contact-info > p { margin-bottom: 28px; font-size: 15px; }
.contact-methods { display: flex; flex-direction: column; gap: 18px; margin-bottom: 28px; }
.contact-method { display: flex; align-items: center; gap: 14px; }
.contact-method-icon { width: 46px; height: 46px; background: var(--blue-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--blue); flex-shrink: 0; }
.contact-method-label { font-size: 10px; font-weight: 700; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.08em; }
.contact-method-val { font-size: 15px; font-weight: 600; color: var(--black); }
.map-embed { border-radius: 14px; overflow: hidden; border: 1px solid var(--gray-200); box-shadow: var(--shadow-md); margin-top: 6px; }
.map-placeholder { background: linear-gradient(135deg, #e8f0fb, #d0e0f8); height: 240px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: var(--blue); }
.map-placeholder span { font-size: 12px; font-weight: 600; color: var(--gray-500); }
.map-label { font-size: 13px; font-weight: 700; color: var(--black); margin-top: 2px; }
.contact-form-card { background: #fff; border: 1px solid var(--gray-200); border-radius: 18px; box-shadow: var(--shadow-lg); padding: 28px; max-width: 560px; margin-left: auto; }
.contact-form-card h3 { font-size: 21px; font-weight: 800; margin-bottom: 22px; }
.legal-doc { max-width: 820px; }
.legal-doc .legal-eff { font-size: 13px; color: var(--gray-500); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 28px; }
.legal-doc h2 { font-size: 20px; font-weight: 800; color: var(--black); margin: 38px 0 12px; }
.legal-doc h2:first-of-type { margin-top: 0; }
.legal-doc h3 { font-size: 15px; font-weight: 700; margin: 24px 0 8px; }
.legal-doc p { font-size: 15px; line-height: 1.75; color: var(--gray-700); margin-bottom: 14px; text-wrap: pretty; }
.legal-doc ul { margin: 0 0 16px 20px; display: flex; flex-direction: column; gap: 6px; }
.legal-doc li { font-size: 15px; line-height: 1.65; color: var(--gray-700); }
.legal-doc .legal-callout { border: 1px solid var(--gray-200); border-left: 3px solid var(--blue); border-radius: 10px; background: var(--gray-50); padding: 18px 20px; margin: 0 0 22px; }
.legal-doc .legal-callout p { margin-bottom: 0; font-size: 14px; font-weight: 600; color: var(--black); }
.legal-doc .legal-caps { text-transform: uppercase; letter-spacing: 0.02em; font-weight: 700; }
.legal-doc .legal-contact { margin-top: 34px; padding: 22px 24px; border: 1px solid var(--gray-200); border-radius: 14px; background: var(--gray-50); }
.legal-doc .legal-contact p { margin-bottom: 4px; }
.legal-doc .legal-contact strong { color: var(--black); }
@media (max-width: 480px) { .legal-doc h2 { font-size: 18px; } .legal-doc p, .legal-doc li { font-size: 14.5px; } }
.privacy-note { font-size: 11px; color: var(--gray-500); line-height: 1.6; margin-top: 8px; }
.social-row { display: flex; gap: 14px; margin-top: 22px; }
.social-btn { width: 52px; height: 52px; border-radius: 11px; background: var(--gray-100); display: flex; align-items: center; justify-content: center; color: var(--gray-700); transition: background 0.15s, color 0.15s; cursor: pointer; border: none; }
.social-btn:hover { background: var(--blue); color: #fff; }

/* ======= WORK SLIDESHOW ======= */
.work-band { background: var(--blue-navy); position: relative; overflow: hidden; padding: 46px 0 50px; }
.work-band::before { content: ''; position: absolute; inset: 0; opacity: 0.05; background-image: radial-gradient(circle, #fff 1px, transparent 1px); background-size: 26px 26px; }
.work-band .container { position: relative; z-index: 2; }
.work-top { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 20px; }
.work-label { display: flex; align-items: center; gap: 12px; }
.work-label .eyebrow { color: var(--orange); font-size: 13px; }
.work-strip { position: relative; display: flex; align-items: center; justify-content: flex-start; gap: 16px; height: 320px; transition: transform 0.55s cubic-bezier(0.4,0,0.2,1); will-change: transform; }
.work-slide { position: relative; flex: 0 0 18%; aspect-ratio: 3 / 2; border-radius: 14px; overflow: hidden; opacity: 0.32; filter: saturate(0.55); transform: scale(0.9); cursor: pointer; box-shadow: 0 10px 30px rgba(0,0,0,0.3); transition: flex-basis 0.55s cubic-bezier(0.4,0,0.2,1), opacity 0.55s, transform 0.55s, filter 0.55s, box-shadow 0.55s; }
.work-slide.on { flex: 0 0 50%; opacity: 1; filter: none; transform: scale(1); cursor: default; box-shadow: 0 24px 60px rgba(0,0,0,0.45); }
.work-slide img { width: 100%; height: 100%; object-fit: cover; }
.work-arrows { display: flex; gap: 8px; }
.work-arrow { width: 42px; height: 42px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.3); background: rgba(6,20,44,0.5); backdrop-filter: blur(6px); color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.15s, border-color 0.15s; }
.work-arrow:hover { background: var(--blue); border-color: var(--blue); }
.work-ui { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 34px; }
.work-dots { display: flex; gap: 7px; }
.work-dot { width: 9px; height: 9px; border-radius: 50%; border: 0; padding: 0; background: rgba(255,255,255,0.35); cursor: pointer; transition: background 0.2s, width 0.25s, border-radius 0.25s; }
.work-dot.on { background: #fff; width: 26px; border-radius: 5px; }
.work-bar { width: 180px; height: 3px; background: rgba(255,255,255,0.16); border-radius: 2px; overflow: hidden; }
.work-bar i { display: block; height: 100%; width: 0; background: var(--orange); transition: width 0.2s linear; }
@media (max-width: 900px) { .work-strip { height: 250px; } }
@media (max-width: 560px) {
  .work-band { padding: 38px 0 42px; }
  .work-strip { height: auto; }
  .work-slide { display: none; }
  .work-slide.on { display: block; flex: 0 0 100%; }
  .work-arrow { width: 44px; height: 44px; }
  .work-ui { gap: 14px; margin-top: 26px; }
  .work-bar { display: none; }
  .work-bar { width: 90px; }
}

/* ======= FOOTER ======= */
footer {
  background: linear-gradient(160deg, #0A1628 0%, #0D1E4A 100%);
  color: #fff; padding: 0;
}
.footer-cta-strip {
  background: linear-gradient(135deg, #071229 0%, #0D2461 100%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 52px 0;
}
.footer-cta-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.footer-cta-text h3 { font-size: 26px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.footer-cta-text p { font-size: 15px; color: rgba(255,255,255,0.55); }
.footer-offer-form { display: flex; flex-direction: column; gap: 10px; }
.footer-cta-action { display: flex; flex-direction: column; gap: 20px; }
.footer-cta-points { display: flex; flex-direction: column; gap: 10px; }
.footer-cta-points div { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.82); }
.footer-cta-points svg { color: #22A04B; flex-shrink: 0; }
.footer-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-cta-btn-green { font-family: 'Poppins', sans-serif; padding: 15px 26px; background: linear-gradient(135deg, #22A04B, #187A38); color: #fff; font-size: 15px; font-weight: 800; border: none; border-radius: 9px; cursor: pointer; box-shadow: 0 4px 16px rgba(34,160,75,0.35); transition: transform 0.15s; }
.footer-cta-btn-green:hover { transform: translateY(-1px); }
.footer-cta-btn-ghost { display: inline-flex; align-items: center; gap: 9px; padding: 15px 22px; border: 1.5px solid rgba(255,255,255,0.32); border-radius: 9px; color: #fff; font-size: 15px; font-weight: 700; transition: background 0.15s; }
.footer-cta-btn-ghost:hover { background: rgba(255,255,255,0.09); }
.footer-offer-title { font-size: 14px; font-weight: 700; color: #22A04B; letter-spacing: 0.02em; }
.footer-input-pill { display: flex; background: #fff; border-radius: 10px; overflow: hidden; align-items: stretch; box-shadow: 0 6px 20px rgba(0,0,0,0.22); }
.footer-input-pill .footer-input { flex: 1 1 auto; min-width: 0; width: 100%; border: none; background: transparent; border-radius: 0; padding: 13.5px 18px; font-size: 14.5px; }
.footer-input-pill .footer-btn { width: auto; flex: 0 0 auto; border-radius: 0; padding: 13.5px 22px; white-space: nowrap; background: #17853B; box-shadow: none; font-size: 13.5px; letter-spacing: 0.06em; text-transform: uppercase; }
.footer-input-pill .footer-btn:hover { background: #12692F; transform: none; }
@media (max-width: 620px) {
  .footer-input-pill { flex-direction: column; border-radius: 14px; }
  .footer-input-pill .footer-input { padding: 12px 18px; }
  .footer-input-pill .footer-btn { width: 100%; padding: 12px 18px; }
}
.footer-input {
  font-family: 'Poppins', sans-serif; font-size: 14px; color: var(--black);
  background: #fff; border: none; border-radius: 8px;
  padding: 13px 16px; outline: none; width: 100%;
}
.footer-input::placeholder { color: #9CA3AF; }
.footer-btn {
  padding: 13px; background: linear-gradient(135deg, #22A04B, #187A38);
  color: #fff; font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 800;
  border: none; border-radius: 8px; cursor: pointer;
  box-shadow: 0 4px 14px rgba(34,160,75,0.35); transition: transform 0.15s;
}
.footer-btn:hover { transform: translateY(-1px); }

.footer-main { padding: 42px 0 24px; }
.footer-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,0.65fr) minmax(320px,1.8fr); gap: 28px; margin-bottom: 24px; align-items: start; }
.footer-brand { display: flex; flex-direction: column; align-items: center; text-align: center; }
.footer-brand img { height: 42px; margin-bottom: 20px; }
.footer-phone { font-size: 18px; font-weight: 800; color: #fff; margin-top: 0; display: inline-flex; align-items: center; gap: 9px; }
.footer-email { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 8px; display: block; }
.footer-col h4 { font-size: 12px; font-weight: 700; margin-bottom: 14px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.1em; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; align-items: center; }
.footer-col ul a { font-size: 14px; color: #fff; transition: color 0.15s; }
.footer-col ul a:hover { color: #22A04B; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 16px; display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,0.25); transition: color 0.15s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }
.footer-social { display: flex; gap: 12px; margin-top: 20px; justify-content: center; }
.footer-social-btn { width: 46px; height: 46px; border-radius: 10px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); transition: background 0.15s, color 0.15s; cursor: pointer; }
.footer-social-btn:hover { background: var(--blue); color: #fff; }

@media (max-width: 900px) {
  .footer-cta-action { align-items: center; }
  .footer-cta-points div { justify-content: center; text-align: left; }
  .footer-cta-btns { justify-content: center; }
  .footer-offer-form { text-align: center; align-items: stretch; }
  .footer-cta-btn-green, .footer-cta-btn-ghost { flex: 1 1 auto; justify-content: center; text-align: center; min-height: 48px; display: inline-flex; align-items: center; }
}
@media (max-width: 640px) {
  .footer-input, .form-input, .form-select, .form-textarea, input[type="text"], input[type="tel"], input[type="email"], select, textarea { font-size: 16px !important; }
  .footer-input-pill .footer-btn { min-height: 48px; font-size: 14px; }
  .footer-cta-btns { flex-direction: column; width: 100%; }
  .footer-cta-btn-green, .footer-cta-btn-ghost { width: 100%; }
}
@media (max-width: 560px) {
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-bottom-links { justify-content: center; flex-wrap: wrap; gap: 8px 18px; }
}

/* ======= FAQ PAGE ======= */
.page-hero-compact { padding: 30px 0 !important; }
.page-hero-compact h1 { font-size: clamp(28px, 3.4vw, 38px); margin-bottom: 0; text-align: center; }
.faq-intro {
  text-align: center;
  margin: 0 auto 36px;
  max-width: 640px;
}
.faq-intro p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
  margin: 0;
}
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  box-shadow: 0 1px 2px rgba(10,22,40,0.04);
  overflow: hidden;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.faq-item[open] {
  border-color: var(--blue);
  box-shadow: 0 6px 18px rgba(19,82,168,0.08);
}
.faq-item > summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px;
  padding: 18px 22px;
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  cursor: pointer;
  user-select: none;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary:hover { color: var(--blue); }
.faq-icon {
  position: relative;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--blue-light);
  flex-shrink: 0;
  transition: background 0.18s, transform 0.25s;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--blue);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
}
.faq-icon::before { width: 10px; height: 2px; }
.faq-icon::after  { width: 2px; height: 10px; }
.faq-item[open] .faq-icon { background: var(--blue); }
.faq-item[open] .faq-icon::before { background: #fff; }
.faq-item[open] .faq-icon::after  { background: #fff; opacity: 0; transform: translate(-50%, -50%) rotate(90deg); }
.faq-body {
  padding: 0 22px 20px;
}
.faq-body p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--gray-700);
}
.faq-body p + p { margin-top: 8px; }

.faq-cta {
  margin-top: 44px;
  text-align: center;
  background: var(--blue-navy);
  position: relative;
  overflow: hidden;
  color: #fff;
  border-radius: 14px;
  padding: 36px 28px;
  box-shadow: 0 12px 32px rgba(10,30,70,0.16);
}
.faq-cta::before { content: ''; position: absolute; inset: 0; opacity: 0.05; background-image: radial-gradient(circle, #fff 1px, transparent 1px); background-size: 26px 26px; }
.faq-cta > * { position: relative; z-index: 2; }
.faq-cta h3 { color: #fff; font-size: 20px; font-weight: 800; margin-bottom: 6px; }
.faq-cta p { color: rgba(255,255,255,0.72); font-size: 14px; margin: 0 auto 22px; max-width: 460px; }
.faq-cta-actions { display: inline-flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: center; }
.faq-call {
  display: inline-flex; align-items: center; gap: 8px;
  color: #fff; font-size: 14px; font-weight: 700;
  padding: 12px 18px;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 999px;
  transition: background 0.15s, border-color 0.15s;
}
.faq-call:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); }
.faq-call svg { color: #7DD3A8; }

@media (max-width: 720px) {
  .faq-item > summary { padding: 13px 14px; font-size: 14px; gap: 10px; }
  .faq-body { padding: 0 14px 14px; }
  .faq-cta { margin-top: 32px; padding: 28px 18px; }
}

/* ======= PAGE SYSTEM ======= */
.page { display: none; }
.page.active { display: block; }

/* ======= SUCCESS STATE ======= */
.form-success { display: none; text-align: center; padding: 34px 24px; }
.form-success.show { display: block; animation: fsIn 0.3s ease-out both; }
@keyframes fsIn { from { opacity: 0; } to { opacity: 1; } }
.form-success-card { background: #fff; border: 1px solid var(--gray-200); border-radius: 14px; box-shadow: 0 2px 10px rgba(10,30,70,0.08); padding: 40px 36px; }
.success-icon { position: relative; width: 62px; height: 62px; background: linear-gradient(135deg, #26AE53, #17753A); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; margin: 0 auto 20px; }
.success-icon::after { content: ''; position: absolute; inset: -8px; border-radius: 50%; border: 2px solid rgba(38,174,83,0.24); }
.form-success h3 { font-size: 25px; font-weight: 800; color: var(--black); margin-bottom: 10px; letter-spacing: -0.01em; }
.form-success p { font-size: 15px; color: var(--gray-600, #4B5563); line-height: 1.65; max-width: 480px; margin: 0 auto; }
.fs-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 30px; text-align: left; }
.fs-step { background: #F7FAFF; border: 1px solid var(--blue-light); border-radius: 12px; padding: 18px 16px; }
.fs-step-num { font-size: 10.5px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); }
.fs-step h4 { font-size: 14px; font-weight: 700; color: var(--black); margin-top: 5px; }
.fs-step p { font-size: 12.5px; color: var(--gray-500); line-height: 1.6; margin-top: 3px; max-width: none; }
.fs-divider { height: 1px; background: var(--gray-200); margin: 30px auto 20px; max-width: 320px; }
.fs-reach { font-size: 13px; font-weight: 600; color: var(--gray-500); }
.fs-phone { display: inline-flex; align-items: center; gap: 9px; margin-top: 8px; font-size: 24px; font-weight: 800; color: var(--blue); text-decoration: none; letter-spacing: -0.01em; }
.fs-phone:hover { color: var(--blue-dark, #072B63); }
/* The contact card carries a fixed height for the form; release it once the
   confirmation replaces the form, and drop the form's own heading with it. */
.contact-form-card:has(.form-success.show), .contact-form-card.has-success { height: auto !important; }
.contact-form-card:has(.form-success.show) .contact-form-heading, .contact-form-card.has-success .contact-form-heading { display: none; }
.form-error { display: none; margin-top: 12px; font-size: 13px; font-weight: 600; line-height: 1.5; color: #B42318; background: #FEF3F2; border: 1px solid #FDA29B; border-radius: 8px; padding: 10px 12px; text-align: left; }
.form-error.show { display: block; }
.form-error-light { text-align: center; max-width: 760px; margin: 12px auto 0; color: #fff; background: rgba(155,28,20,0.94); border-color: rgba(255,255,255,0.35); }

/* ======= GOOGLE BADGE — under trust line ======= */
.hero-google {
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  display: flex; flex-direction: row; align-items: center; justify-content: center;
  gap: 14px;
  margin-top: 0;
  z-index: 2;
}
.hero-google-logo { font-size: 38px; line-height: 1; }
.hero-google-stars { font-size: 22px; line-height: 1; letter-spacing: 3px; }

@media (max-width: 1000px) and (min-width: 901px) {
  .nav-links { display: none; }
  .nav-cta { display: none !important; }
  .nav-toggle { display: inline-flex; }
  .mobile-menu { display: flex; }
  .menu-backdrop { display: block; }
}
/* ======= MOBILE BREAKPOINT ======= */
@media (max-width: 900px) {
  .container { padding: 0 20px; }
  .section { padding: 56px 0; }

  /* Nav */
  .nav { height: auto !important; line-height: 1.4 !important; }
  .nav-inner { height: auto !important; padding: 12px 20px; gap: 12px; flex-wrap: wrap; }
  .nav-logo img { height: 56px !important; width: auto !important; }
  .nav-links { display: none; }
  .nav-cta { display: none !important; }
  .nav-toggle { display: inline-flex; }
  .mobile-menu { display: flex; }
  .menu-backdrop { display: block; }
  /* On mobile keep the hamburger — don't reveal the scroll form */
  body.nav-scrolled .nav-wrap .nav-scroll-form { display: none !important; }
  body.nav-scrolled .nav-wrap .nav { height: auto !important; }
  body.nav-scrolled .nav-wrap .nav-inner { height: auto !important; }

  /* Top bar */
  .topbar { padding: 8px 0; }
  .topbar-inner { flex-direction: column; gap: 4px; padding: 0 16px; text-align: center; }
  .topbar-tag { font-size: 12px; }
  .topbar-phone { font-size: 12px; }

  /* Ticker */
  .ticker-item { font-size: 11px; padding: 8px 18px; }

  /* Hero */
  .hero { min-height: 560px; padding: 56px 0 80px; }
  .hero::after { height: 100px; }
  .hero-headline { font-size: 30px !important; }
  .hero-sublead { font-size: 15px !important; padding: 0 8px; }
  .hero-form-row {
    grid-template-columns: 1fr;
    padding: 12px;
    gap: 10px;
  }
  .hero-form-row .form-input { padding: 14px 14px; font-size: 15px; }
  .hero-form-row .hero-submit { padding: 14px 20px; }
  .hero-trust-line { font-size: 14px !important; }
  .hero-google { gap: 10px; bottom: 24px; margin-top: 0; }
  .hero-google-logo { font-size: 26px; }
  .hero-google-stars { font-size: 16px; letter-spacing: 2px; }

  /* As Seen On */
  .as-seen-inner { flex-direction: column; gap: 18px; text-align: center; }

  /* Anywhere */
  .anywhere-section { padding: 60px 0; }
  .anywhere-grid { grid-template-columns: 1fr; gap: 36px; }
  .anywhere-checks { grid-template-columns: 1fr; }

  /* Simple section */
  .simple-section { padding: 60px 0; }
  .simple-grid { grid-template-columns: 1fr; gap: 18px; }
  .simple-card { padding: 32px 24px 28px; }
  .simple-head { margin-bottom: 36px; }

  /* Forms */
  .form-grid-2 { grid-template-columns: 1fr; }

  /* Process */
  .process-grid { grid-template-columns: 1fr; gap: 36px; margin-top: 40px; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Benefits */
  .benefits-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 32px; }

  /* Comparison */
  .comparison-wrap { flex-direction: column; max-width: 100%; gap: 16px; align-items: center; }
  .comp-panel { width: 100% !important; max-width: 360px; height: auto !important; margin: 0 !important; padding: 24px 22px; border-radius: 16px !important; }

  /* Steps */
  .steps { grid-template-columns: 1fr; gap: 32px; margin-top: 32px; }
  .steps::before { display: none; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 32px; }

  /* About */
  .about-grid { grid-template-columns: 1fr !important; gap: 36px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 32px; }
  .about-trust-card { padding: 28px 24px; width: 100% !important; height: auto !important; }
  .about-trust-card h3 div { font-size: 20px !important; }
  .about-grid > div[style*="position: relative"] { width: 100% !important; max-width: 300px; }

  /* How it works */
  .hiw-timeline { max-width: 100%; padding-left: 0; }
  .hiw-lead { font-size: 26px !important; width: auto !important; height: auto !important; line-height: 1.3; }
  .hiw-lead + * , .hiw-timeline { margin-top: 0; }
  .hiw-timeline::before { left: 0; width: 6px; }
  .hiw-step { grid-template-columns: 1fr; padding-left: 26px; margin-bottom: 34px; }
  .hiw-step > .step-badge { grid-column: 1; text-align: left; padding-top: 0; margin-bottom: 6px; }
  .hiw-step > .hiw-step-body { grid-column: 1; }
  .hiw-step h2 { font-size: 22px !important; }
  .hiw-step p { font-size: 15px; }

  /* Offer */
  .offer-form-card { padding: 28px 20px; margin: -28px 16px 0; }
  .offer-features { grid-template-columns: 1fr; gap: 20px; margin-top: 48px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-form-card { width: 100% !important; height: auto !important; max-width: 100% !important; margin-left: 0 !important; padding: 24px 20px; }
  .contact-info > div[style*="margin-top"] { width: 100% !important; height: auto !important; }
  .form-grid-2 { grid-template-columns: 1fr !important; }

  /* Footer */
  .footer-cta-inner { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  /* Page hero */
  .page-hero { min-height: 170px; padding: 36px 0; }
  .page-hero h1 { font-size: 30px; }

  .fs-steps { grid-template-columns: 1fr; gap: 10px; margin-top: 22px; }
  .form-success { padding: 26px 16px; }
  .form-success-card { padding: 30px 20px; }
  .form-success h3 { font-size: 20px; }
  .form-success p { font-size: 14px; }
  .fs-phone { font-size: 20px; }
  /* Neutralize fixed widths from inline styles */
  button[style*="width:"], .btn[style*="width:"] { width: auto !important; max-width: 100% !important; height: auto !important; }

  /* Touch targets + interaction */
  button, .btn, a.btn, input[type="submit"], .form-btn, .nav-cta, .nsf-btn, .anywhere-cta, .hero-submit { min-height: 46px; }
  input, select, textarea { font-size: 16px !important; min-height: 46px; }
  .form-textarea { min-height: 88px; }
  input[type="checkbox"] { width: 22px !important; height: 22px !important; min-height: 22px; }
  label[style*="cursor:pointer"], .about-trust-list div { padding: 2px 0; }
  .faq-item > summary { min-height: 52px; }
  .footer-phone, .footer-email, .topbar-phone, .contact-method-val, .mm-contact a { display: flex; width: fit-content; max-width: 100%; align-items: center; min-height: 44px; }
  .social-btn { min-width: 44px; min-height: 44px; }
  .nav-toggle { min-width: 46px; min-height: 46px; }
  .mobile-menu-close { min-width: 44px; min-height: 44px; }
  .mobile-menu nav a { min-height: 50px; }
  .btn, button, a { -webkit-tap-highlight-color: rgba(13,71,161,0.12); }
  .map-embed iframe { touch-action: auto; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-headline { font-size: 26px !important; letter-spacing: 0.005em; }
  .nav-cta { font-size: 12px !important; padding: 9px 12px; letter-spacing: 0.02em; }
  .nav-logo img { height: 48px !important; }
  .values-grid { grid-template-columns: 1fr !important; }
  .page-hero h1 { font-size: 25px; }
  .hiw-step h2 { font-size: 19px !important; }
  .hiw-lead { font-size: 22px !important; }
  .about-trust-card h3 div { font-size: 18px !important; }
  .faq-item > summary { font-size: 14px; }
  .footer-phone { font-size: 20px !important; }
  .footer-email { font-size: 15px !important; word-break: break-all; }
  .testimonial-text { font-size: 13.5px; }
}
