:root {
  --light: #fefefe;
  --dark: #162141;
  --primary: #0e63f1;
  --primary-strong: #0a51ca;
  --primary-soft: #eaf2ff;
  --secondary: #20ce8f;
  --secondary-soft: #e8fbf3;
  --third: #0a9fa3;
  --third-soft: #e6f8f8;
  --surface: #ffffff;
  --surface-blue: #f7fbff;
  --line: rgba(22, 33, 65, 0.12);
  --text-soft: rgba(22, 33, 65, 0.72);
  --text-faint: rgba(22, 33, 65, 0.52);
  --shadow-sm: 0 12px 30px rgba(22, 33, 65, 0.05);
  --shadow-md: 0 18px 48px rgba(22, 33, 65, 0.08);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 30px;
  --radius-full: 999px;
  --content: 1160px;
  --font-body: "Manrope", "Inter", sans-serif;
  --font-display: "Newsreader", Georgia, serif;
  --text-xs: 0.78rem;
  --text-sm: 0.95rem;
  --text-base: 1rem;
  --text-xl: clamp(2.2rem, 1.2rem + 2.2vw, 3.2rem);
  --text-hero: clamp(3rem, 2rem + 4vw, 5rem);
  --transition: 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--light);
  color: var(--dark);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

button,
input {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: 0;
  background: none;
}

input {
  min-width: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--primary);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-full);
  z-index: 100;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(calc(100% - 2rem), var(--content));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(254, 254, 254, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(22, 33, 65, 0.08);
}

.header-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand-logo,
.menu-logo {
  width: 2.6rem;
  height: 2.6rem;
  object-fit: cover;
  border-radius: 0.7rem;
  flex-shrink: 0;
}

.brand-fallback {
  width: 2.6rem;
  height: 2.6rem;
  display: none;
  place-items: center;
  border-radius: 0.7rem;
  background: var(--primary-soft);
  color: var(--primary);
  flex-shrink: 0;
}

.brand-fallback svg {
  width: 1.7rem;
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  min-width: 0;
}

.brand-name {
  font-size: 1.05rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-tagline {
  font-size: 0.72rem;
  line-height: 1;
  color: var(--text-faint);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.desktop-nav a,
.header-link,
.mobile-menu a {
  color: var(--text-soft);
  font-size: 0.93rem;
  font-weight: 600;
}

.desktop-nav a:hover,
.header-link:hover,
.mobile-menu a:hover {
  color: var(--dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-cta,
.search-button,
.provider-action,
.provider-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: var(--radius-full);
  background: var(--primary);
  color: #fff;
  font-weight: 700;
}

.header-cta {
  padding: 0 1rem;
  box-shadow: 0 10px 24px rgba(14, 99, 241, 0.18);
}

.header-cta:hover,
.search-button:hover,
.provider-action:hover,
.provider-cta-button:hover {
  background: var(--primary-strong);
}

.header-link {
  padding: 0.5rem 0.1rem;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: var(--radius-full);
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
}

.menu-icon-fallback {
  display: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary);
}

.mobile-menu {
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.mobile-menu-inner {
  display: grid;
  padding: 0.5rem 0 1rem;
}

.mobile-menu a {
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
}

.hero {
  background: linear-gradient(180deg, #f7fbff 0%, #fbfdff 60%, #fefefe 100%);
  border-bottom: 1px solid rgba(22, 33, 65, 0.06);
}

.hero-shell {
  min-height: 560px;
  display: grid;
  place-items: center;
  padding: 5rem 0 4.5rem;
}

.hero-copy {
  width: 100%;
  max-width: 920px;
  text-align: center;
}

.eyebrow,
.section-kicker,
.search-label {
  margin: 0;
  font-size: var(--text-xs);
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
}

.hero-copy h1,
.section-copy h2,
.mission-copy h2,
.pricing-copy h2,
.providers-cta-copy h2,
.difference-grid h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.hero-copy h1 {
  margin-top: 1rem;
  font-size: var(--text-hero);
  max-width: 10ch;
  margin-inline: auto;
}

.hero-text {
  margin: 1.35rem auto 2rem;
  max-width: 46rem;
  color: var(--text-soft);
  font-size: 1.12rem;
}

.search-bar {
  width: 100%;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr auto;
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.search-field {
  display: grid;
  gap: 0.25rem;
  min-height: 74px;
  padding: 1rem 1.15rem;
  border-right: 1px solid var(--line);
  text-align: left;
}

.search-field input {
  border: 0;
  padding: 0;
  background: transparent;
  outline: none;
  font-size: 0.98rem;
}

.search-field input::placeholder {
  color: var(--text-faint);
}

.search-button {
  min-width: 150px;
  border-radius: 0;
}

.hero-proof {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 2.3rem;
  padding: 0 0.9rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(14, 99, 241, 0.08);
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 600;
}

.difference-strip,
.specialties-section,
.providers-section,
.steps-section,
.mission-section,
.pricing-section,
.trust-section,
.providers-cta-section,
.cities-section,
.faq-section {
  padding: 5rem 0;
}

.steps-section {
  background: linear-gradient(180deg, var(--surface-blue), #fbfdff);
}

.mission-section {
  background: linear-gradient(180deg, var(--secondary-soft), #f7fffc);
}

.pricing-section {
  background: linear-gradient(180deg, var(--primary-soft), #f7fbff);
}

.trust-section {
  background: linear-gradient(180deg, var(--third-soft), #f9fefe);
}

.providers-cta-section {
  background: linear-gradient(180deg, var(--surface-blue), #f8fbff);
}

.cities-section {
  background: linear-gradient(180deg, #f7fbff, #f3f8ff);
}

.section-copy,
.list-head {
  margin-bottom: 2rem;
}

.section-copy h2,
.difference-grid h2,
.mission-copy h2,
.pricing-copy h2,
.providers-cta-copy h2 {
  margin-top: 0.55rem;
  font-size: var(--text-xl);
}

.section-copy p:last-child,
.difference-points p,
.mission-copy p,
.pricing-copy p,
.providers-cta-copy p {
  margin: 0.85rem 0 0;
  color: var(--text-soft);
  max-width: 50rem;
}

.difference-grid,
.mission-layout,
.pricing-layout,
.providers-cta-layout,
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.difference-points,
.mission-list,
.providers-cta-panel,
.faq-list {
  display: grid;
  gap: 1rem;
}

.pill-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}

.info-pill,
.provider-card,
.step-card,
.mission-item,
.pricing-panel,
.trust-card,
.providers-cta-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 1.35rem;
  box-shadow: var(--shadow-sm);
}

.info-pill {
  min-height: 90px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1rem;
  font-weight: 700;
  color: var(--dark);
}

.info-pill:hover {
  transform: translateY(-2px);
}

.list-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
}

.list-head a {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.93rem;
}

.provider-grid,
.trust-grid,
.steps-grid {
  display: grid;
  gap: 1.25rem;
}

.provider-grid,
.trust-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.provider-card,
.step-card,
.trust-card,
.pricing-panel,
.providers-cta-panel,
.mission-item {
  padding: 1.35rem;
}

.provider-avatar {
  width: 54px;
  height: 54px;
  margin-bottom: 1rem;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}

.provider-avatar::before {
  content: "";
  position: absolute;
  inset: 11px 15px 21px;
  border-radius: 50%;
  background: #f3c2a8;
}

.provider-avatar::after {
  content: "";
  position: absolute;
  left: 9px;
  right: 9px;
  bottom: 7px;
  height: 18px;
  border-radius: 18px 18px 8px 8px;
  background: var(--dark);
}

.avatar-a { background: linear-gradient(135deg, var(--primary-soft), #ffffff); }
.avatar-b { background: linear-gradient(135deg, var(--secondary-soft), #ffffff); }
.avatar-c { background: linear-gradient(135deg, var(--third-soft), #ffffff); }
.avatar-d { background: linear-gradient(135deg, #eef5ff, #ffffff); }

.provider-card h3,
.step-card h3,
.trust-card h3 {
  margin: 0 0 0.3rem;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.provider-meta,
.provider-note,
.step-card p,
.trust-card p,
.mission-item span,
.provider-stat span,
.panel-caption,
.faq-item p {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.provider-meta,
.provider-note,
.step-card p,
.trust-card p,
.panel-caption,
.faq-item p {
  margin: 0;
}

.provider-price {
  margin: 0.8rem 0 0.35rem;
  font-size: 1.18rem;
  font-weight: 800;
}

.provider-action {
  width: 100%;
  margin-top: 1rem;
}

.step-visual {
  height: 150px;
  margin-bottom: 1rem;
  border-radius: 1.05rem;
}

.step-visual-search {
  background: radial-gradient(circle at 28% 40%, #f3c2a8 0 14%, transparent 15%), radial-gradient(circle at 70% 46%, var(--secondary) 0 26%, transparent 27%), linear-gradient(135deg, #ffffff 0%, var(--primary-soft) 100%);
}

.step-visual-price {
  background: radial-gradient(circle at 50% 44%, var(--primary) 0 24%, transparent 25%), linear-gradient(135deg, #ffffff 0%, #f3f8ff 100%);
}

.step-visual-contact {
  background: radial-gradient(circle at 67% 44%, var(--third) 0 24%, transparent 25%), radial-gradient(circle at 27% 50%, #c76b3b 0 12%, transparent 13%), linear-gradient(135deg, #ffffff 0%, var(--third-soft) 100%);
}

.mission-item strong,
.provider-stat strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.price-row:last-of-type,
.provider-stat:last-child {
  border-bottom: 0;
}

.panel-caption {
  margin-top: 1rem;
}

.provider-stat {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.provider-cta-button {
  width: fit-content;
  padding: 0 1.1rem;
  margin-top: 1.1rem;
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(22, 33, 65, 0.1);
}

.city-grid span {
  padding: 1rem 0.25rem;
  border-bottom: 1px solid rgba(22, 33, 65, 0.1);
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding-bottom: 1rem;
}

.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: var(--primary);
  font-size: 1.4rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin-top: 0.85rem;
}

.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.92);
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
}

.footer-brand {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.footer-copy {
  margin: 0.2rem 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1), transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-delay {
  transition-delay: 120ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

@media (max-width: 1100px) {
  .difference-grid,
  .mission-layout,
  .pricing-layout,
  .providers-cta-layout,
  .faq-layout,
  .provider-grid,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pill-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .desktop-nav,
  .header-link,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero-shell {
    min-height: auto;
    padding: 4rem 0 3.5rem;
  }

  .search-bar {
    grid-template-columns: 1fr;
    border-radius: 1.25rem;
  }

  .search-field {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .search-button {
    width: 100%;
    border-radius: 0;
    min-height: 58px;
  }

  .difference-grid,
  .mission-layout,
  .pricing-layout,
  .providers-cta-layout,
  .faq-layout,
  .provider-grid,
  .trust-grid,
  .pill-grid,
  .city-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--content));
  }

  .site-header {
    position: sticky;
  }

  .header-inner {
    gap: 0.9rem;
    min-height: 72px;
  }

  .brand {
    gap: 0.65rem;
  }

  .brand-logo,
  .menu-logo,
  .brand-fallback {
    width: 2.3rem;
    height: 2.3rem;
  }

  .brand-name {
    font-size: 0.96rem;
  }

  .brand-tagline {
    font-size: 0.64rem;
  }

  .hero-shell {
    padding: 3.25rem 0 3rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
    max-width: 9ch;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-proof {
    gap: 0.55rem;
  }

  .hero-proof span {
    width: 100%;
    justify-content: center;
  }

  .section-copy h2,
  .difference-grid h2,
  .mission-copy h2,
  .pricing-copy h2,
  .providers-cta-copy h2 {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
  }

  .list-head,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.hero-lead {
  margin: 1.1rem auto 0;
  max-width: 34rem;
  font-size: clamp(1.1rem, 0.95rem + 0.5vw, 1.4rem);
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--dark);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(254, 254, 254, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(22, 33, 65, 0.08);
  overflow: clip;
}
