/* ???????????????????????????????????????????????????????????????
   QuotaBill Landing ? Navy + Teal Professional Theme
   Logo navy (#0e3e6f) ? Teal accent (#0d9488) ? Cool off-white
??????????????????????????????????????????????????????????????? */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* ?? Design Tokens ??????????????????????????????????????????? */
:root {
  /* Neutral / page base */
  --white:        #ffffff;
  --cream:        #f6f8fb;
  --cream-dark:   #eef2f6;
  --sand:         #e2e8f0;
  --bg:           #f1f5f9;

  /* Brand mark */
  --logo-navy:    #0e3e6f;   /* QuotaBill qb monogram */

  /* Primary navy + teal (post-hero + chrome) */
  --forest:       #0b3a5c;   /* deep navy ? headings, dark bands */
  --forest-mid:   #0e3e6f;   /* logo navy / mid */
  --forest-light: #1a5f8a;   /* lighter navy */
  --teal:         #0d9488;   /* accent CTAs / active states */
  --teal-mid:     #0f766e;
  --teal-soft:    #ccfbf1;
  --blue-1:       #0e4d6e;   /* kept for hero gradients */
  --blue-2:       #0b3a5c;
  --emerald:      #0d9488;   /* align success accent with teal */
  --emerald-soft: #f0fdfa;

  /* Text colors */
  --text:         #0f172a;
  --text-light:   #1e293b;
  --text-muted:   #64748b;
  --text-soft:    #94a3b8;

  /* Borders */
  --border:       #e2e8f0;
  --border-soft:  #eef2f6;

  /* Accent status colors */
  --amber:        #f59e0b;
  --amber-soft:   #fffbeb;
  --rose:         #ef4444;
  --rose-soft:    #fef2f2;
  --blue:         #0284c7;
  --blue-soft:    #e0f2fe;

  /* Shadows (navy-tinted) */
  --shadow-xs:    0 1px 3px rgba(11,58,92,.06);
  --shadow-sm:    0 6px 16px rgba(11,58,92,.10);
  --shadow-md:    0 16px 40px rgba(11,58,92,.12);
  --shadow-lg:    0 28px 70px rgba(11,58,92,.16);

  /* Radii */
  --r-sm:         8px;
  --r:            12px;
  --r-lg:         16px;
  --r-xl:         24px;
  --r-2xl:        32px;

  --font:         'Plus Jakarta Sans', -apple-system, sans-serif;
  --container:    1180px;
  --ease:         cubic-bezier(.16,1,.3,1);
}

/* ?? Reset ??????????????????????????????????????????????????? */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

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

/* ?? Scroll Reveal ??????????????????????????????????????????? */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ??????????????????????????????????????????????????????????????
   HERO ? Full-bleed 3-banner carousel (autoplay)
?????????????????????????????????????????????????????????????? */
.hero-wrap--carousel {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: 0;
  background: #0f172a;
  overflow: hidden;
}

.hero-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.hero-nav--overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  padding: 1.25rem clamp(1rem, 4vw, 2.5rem);
}
.hero-logo {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-weight: 800;
  font-size: 1.1875rem;
  color: var(--white);
  letter-spacing: -.03em;
}
.hero-logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 36px;
  background: transparent;
  border: none;
  border-radius: 0;
  color: var(--white);
}
.hero-logo-mark img {
  display: block;
  height: 36px;
  width: auto;
}
.hero-nav-links { display: flex; gap: .25rem; }
.hero-nav-links a {
  padding: .5rem 1rem;
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255,255,255,.78);
  border-radius: 999px;
  transition: color .25s, background .25s;
}
.hero-nav-links a:hover { color: var(--white); background: rgba(255,255,255,.1); }
.hero-nav-actions { display: flex; align-items: center; gap: .5rem; position: relative; }
.hero-link-ghost {
  padding: .5rem 1rem;
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  border-radius: 999px;
  transition: background .2s;
}
.hero-link-ghost:hover { background: rgba(255,255,255,.1); }

.hero-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.hero-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .28s, opacity .28s;
}
.hero-menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hero-menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.hero-menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero-mobile-nav {
  display: none;
  flex-direction: column;
  gap: .25rem;
}
.hero-mobile-nav--overlay {
  position: absolute;
  top: 72px;
  left: 1rem;
  right: 1rem;
  z-index: 45;
  background: rgba(15,23,42,.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 1rem;
}
.hero-mobile-nav a,
.hero-mobile-nav .hero-mobile-login {
  padding: .75rem .5rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  border-radius: 8px;
}
.hero-mobile-nav a:hover,
.hero-mobile-nav .hero-mobile-login:hover { background: rgba(255,255,255,.08); color: #fff; }
.hero-mobile-nav.is-open { display: flex; }

.hero-carousel {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  outline: none;
}
.hero-carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-banner {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(8%);
  transition: opacity .65s var(--ease), transform .65s var(--ease), visibility .65s;
  pointer-events: none;
  z-index: 0;
}
.hero-banner.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
  z-index: 2;
}
.hero-banner.is-exiting {
  opacity: 0;
  visibility: visible;
  pointer-events: none;
  z-index: 1;
}
.hero-banner.is-exit-left {
  transform: translateX(-10%);
}
.hero-banner.is-exit-right {
  transform: translateX(10%);
}
.hero-banner.is-active.is-from-right {
  animation: hero-scroll-in-right .65s var(--ease) both;
}
.hero-banner.is-active.is-from-left {
  animation: hero-scroll-in-left .65s var(--ease) both;
}
@keyframes hero-scroll-in-right {
  from { opacity: 0; transform: translateX(12%); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes hero-scroll-in-left {
  from { opacity: 0; transform: translateX(-12%); }
  to { opacity: 1; transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-banner,
  .hero-banner.is-active.is-from-right,
  .hero-banner.is-active.is-from-left {
    animation: none !important;
    transition: opacity .2s ease !important;
    transform: none !important;
  }
}
.hero-banner.is-active .hero-banner-brand,
.hero-banner.is-active .hero-banner-title,
.hero-banner.is-active .hero-banner-desc,
.hero-banner.is-active .hero-banner-cta,
.hero-banner.is-active .hero-offer-stage,
.hero-banner.is-active .hero-offer-card {
  animation: hero-enter .55s var(--ease) both;
}
.hero-banner.is-active .hero-banner-title { animation-delay: .06s; }
.hero-banner.is-active .hero-banner-desc { animation-delay: .12s; }
.hero-banner.is-active .hero-banner-cta { animation-delay: .18s; }
.hero-banner.is-active .hero-offer-stage { animation-delay: .14s; }
.hero-banner.is-active .hero-offer-card { animation-delay: .2s; }

@keyframes hero-enter {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

.hero-banner-bg { position: absolute; inset: 0; }
.hero-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-banner-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-banner-overlay--starter {
  background:
    linear-gradient(105deg, rgba(15,23,42,.88) 0%, rgba(15,23,42,.52) 38%, rgba(15,23,42,.18) 62%, rgba(255,255,255,.06) 100%),
    linear-gradient(180deg, rgba(15,23,42,.34) 0%, transparent 40%, rgba(15,23,42,.42) 100%);
}
.hero-banner--starter .hero-banner-bg img {
  object-position: 42% center;
}
@media (max-width: 860px) {
  .hero-banner--starter .hero-banner-bg img {
    object-position: 55% center;
  }
}
.hero-banner-overlay--quotes {
  background:
    linear-gradient(105deg, rgba(43,42,148,.88) 0%, rgba(51,43,160,.55) 40%, rgba(15,23,42,.18) 72%, transparent 100%),
    linear-gradient(180deg, rgba(15,23,42,.4) 0%, transparent 40%, rgba(15,23,42,.5) 100%);
}
.hero-banner-overlay--invoice {
  background:
    linear-gradient(180deg, rgba(15,23,42,.55) 0%, rgba(15,23,42,.45) 45%, rgba(15,23,42,.7) 100%);
}

.hero-banner-body {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(5rem, 12vh, 7rem) clamp(1.25rem, 5vw, 4rem);
  color: #fff;
}
.hero-banner-body--editorial {
  align-items: flex-start;
  max-width: min(560px, 90vw);
  margin-left: clamp(0.5rem, 4vw, 3rem);
}
.hero-banner-body--center {
  align-items: center;
  text-align: center;
  max-width: min(640px, 92vw);
  margin-inline: auto;
}
.hero-banner-body--split {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.5rem, 4vw, 3rem);
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}
.hero-banner-body--starter {
  align-items: center;
}
.hero-banner-split-copy {
  max-width: min(480px, 100%);
  flex-shrink: 0;
}

.hero-banner-brand {
  font-size: clamp(1.375rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
  margin-bottom: .75rem;
  color: #fff;
}
.hero-banner-brand--subtle {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  opacity: .95;
  margin-bottom: .85rem;
}
.hero-banner-title {
  font-size: clamp(2.125rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.03em;
  margin-bottom: .875rem;
}
.hero-banner-title--center { max-width: 14ch; }
.hero-banner-desc {
  font-size: clamp(.9375rem, 1.6vw, 1.0625rem);
  line-height: 1.65;
  color: rgba(255,255,255,.88);
  max-width: 32rem;
  margin-bottom: 1.5rem;
}
.hero-banner-desc--center {
  margin-inline: auto;
  max-width: 34rem;
}
.hero-banner-cta { margin-top: .1rem; }

/* Starter offer ? product card + floating accents */
.hero-offer-stage {
  position: relative;
  flex-shrink: 0;
  width: min(320px, 100%);
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: clamp(0rem, 2vw, 1rem);
}

.hero-offer-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 280px;
  padding: 1.65rem 1.55rem 1.45rem;
  border-radius: 22px;
  background: #fff;
  color: var(--text);
  box-shadow:
    0 4px 6px rgba(51, 43, 160, .04),
    0 22px 48px rgba(15, 23, 42, .22),
    0 0 0 1px rgba(255, 255, 255, .65) inset;
  backdrop-filter: blur(2px);
}

.hero-offer-head {
  text-align: left;
}

.hero-offer-label {
  margin: 0 0 .5rem;
  font-size: .6875rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #3f3d99;
}

.hero-offer-number {
  margin: 0;
  font-size: clamp(4.25rem, 11vw, 5.25rem);
  font-weight: 800;
  line-height: .92;
  letter-spacing: -.05em;
  color: #3f3d99;
}

.hero-offer-sub {
  margin: .45rem 0 0;
  font-size: .9375rem;
  font-weight: 600;
  line-height: 1.3;
  color: #5c6b8a;
}

.hero-offer-price-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 1.15rem 0 1.05rem;
  padding: .55rem 1rem;
  border-radius: 10px;
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: #15803d;
  background: linear-gradient(180deg, #f0fdf4 0%, #ecfdf5 100%);
  border: 1px solid rgba(22, 163, 74, .12);
}

.hero-offer-features {
  margin: 0;
  padding: 1rem 0 0;
  list-style: none;
  border-top: 1px solid #e8ecf4;
}

.hero-offer-features li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: .55rem;
  font-size: .8125rem;
  font-weight: 600;
  line-height: 1.45;
  color: #334155;
}

.hero-offer-features li:last-child {
  margin-bottom: 0;
}

.hero-offer-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .58em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3f3d99;
}

/* Floating doodle chips around the offer card */
.hero-offer-float {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .22);
  box-shadow: 0 10px 28px rgba(15, 23, 42, .18);
  backdrop-filter: blur(8px);
  pointer-events: none;
  animation: hero-float 5s ease-in-out infinite;
}

.hero-offer-float img {
  display: block;
  opacity: .95;
}

.hero-offer-float--quote {
  top: 4%;
  left: -6%;
  width: 76px;
  height: 52px;
  border-radius: 14px;
  padding: .35rem .5rem;
  animation-delay: 0s;
}

.hero-offer-float--invoice {
  top: 18%;
  right: -8%;
  width: 58px;
  height: 58px;
  animation-delay: .8s;
}

.hero-offer-float--stars {
  bottom: 22%;
  left: -4%;
  width: 50px;
  height: 50px;
  background: rgba(253, 230, 138, .18);
  border-color: rgba(253, 230, 138, .35);
  animation-delay: 1.4s;
}

.hero-offer-float--rm {
  bottom: 6%;
  right: -5%;
  width: 54px;
  height: 54px;
  background: rgba(167, 243, 208, .16);
  border-color: rgba(167, 243, 208, .32);
  animation-delay: .4s;
}

@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-carousel-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem clamp(1rem, 4vw, 2.5rem) 1.75rem;
  background: linear-gradient(0deg, rgba(15,23,42,.65) 0%, transparent 100%);
}
.hero-slide-counter {
  font-size: .875rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  letter-spacing: .08em;
  font-variant-numeric: tabular-nums;
}
.hero-carousel-progress-track {
  height: 3px;
  background: rgba(255,255,255,.2);
  border-radius: 999px;
  overflow: hidden;
}
.hero-carousel-progress {
  height: 100%;
  width: 0%;
  background: #fff;
  border-radius: 999px;
}
.hero-carousel-dots { display: flex; gap: .5rem; }
.hero-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.35);
  cursor: pointer;
  padding: 0;
  min-width: 8px;
  min-height: 8px;
  transition: all .3s var(--ease);
}
.hero-carousel-dot.is-active {
  width: 28px;
  border-radius: 999px;
  background: #fff;
}
.hero-carousel-arrows { display: flex; gap: .5rem; }
.hero-carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.1);
  color: #fff;
  display: grid;
  place-items: center;
  backdrop-filter: blur(8px);
  transition: background .2s, border-color .2s;
}
.hero-carousel-btn:hover {
  background: rgba(255,255,255,.25);
  border-color: #fff;
}
.hero-carousel-btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.hero-carousel-btn svg { width: 16px; height: 16px; }

@media (prefers-reduced-motion: reduce) {
  .hero-banner,
  .hero-banner.is-active .hero-banner-brand,
  .hero-banner.is-active .hero-banner-title,
  .hero-banner.is-active .hero-banner-desc,
  .hero-banner.is-active .hero-banner-cta,
  .hero-banner.is-active .hero-offer-stage,
  .hero-banner.is-active .hero-offer-card,
  .hero-offer-float {
    animation: none !important;
    transition: opacity .2s ease !important;
  }
}

/* ?? Sticky condensed nav (revealed after scrolling past hero) ?? */
.sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transform: translateY(-100%);
  transition: transform .35s var(--ease);
}
.sticky-nav.is-visible { transform: translateY(0); }
.sticky-nav-inner {
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.sticky-nav .logo {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-weight: 800;
  font-size: 1.0625rem;
  color: var(--forest);
  letter-spacing: -.03em;
}
.sticky-nav .logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 32px;
  background: transparent;
  border-radius: 0;
  color: var(--logo-navy, #0e3e6f);
}
.sticky-nav .logo-mark img {
  display: block;
  height: 32px;
  width: auto;
}
.sticky-nav-links { display: flex; gap: .25rem; }
.sticky-nav-links a {
  padding: .5rem 1rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: 8px;
  transition: color .2s, background .2s;
}
.sticky-nav-links a:hover { color: var(--forest); background: var(--cream-dark); }
.sticky-nav-actions { display: flex; align-items: center; gap: .625rem; position: relative; }

/* ??????????????????????????????????????????????????????????????
   BUTTONS
?????????????????????????????????????????????????????????????? */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.625rem;
  font-size: .9375rem;
  font-weight: 700;
  border-radius: var(--r);
  border: 1.5px solid transparent;
  transition: all .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(13,148,136,.28);
}
.btn-primary:hover {
  background: var(--teal-mid);
  box-shadow: 0 8px 24px rgba(13,148,136,.36);
}

.btn-outline {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn-outline:hover { background: rgba(11,58,92,.05); }

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  padding: .5rem 1rem;
}
.btn-ghost:hover { color: var(--forest); background: var(--cream-dark); }

button.btn,
button.hero-link-ghost,
button.footer-link-btn {
  font-family: inherit;
  cursor: pointer;
}

button.hero-link-ghost {
  border: none;
  background: transparent;
}

.btn-white {
  background: var(--white);
  color: var(--forest);
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
}
.btn-white:hover { background: #f1f2fb; }

.btn-block { width: 100%; justify-content: center; }
.btn-lg { padding: .875rem 2rem; font-size: 1rem; border-radius: 14px; }
.btn-pill { border-radius: 999px; }

/* ??????????????????????????????????????????????????????????????
   SECTIONS
?????????????????????????????????????????????????????????????? */
.section {
  position: relative;
  isolation: isolate;
  padding: 6.5rem 0;
  overflow: hidden;
}
.section-alt { background: var(--cream-dark); }
.section-forest { background: var(--forest); color: var(--white); }

/* Continuous geometric / line-art story (every section after hero) */
.has-scene {
  background-color: transparent;
}
.section-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.section-scene__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--scene-focus, center);
  transform: scale(1.02);
  opacity: .72;
}
.section-scene--lines .section-scene__img {
  filter: none;
  opacity: .78;
}
.section-scene__wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(247, 248, 252, .88) 0%,
      rgba(247, 248, 252, .72) 28%,
      rgba(247, 248, 252, .68) 55%,
      rgba(247, 248, 252, .86) 100%),
    linear-gradient(105deg,
      rgba(51, 43, 160, .04) 0%,
      transparent 42%,
      rgba(67, 56, 202, .04) 100%);
}
.section-scene__fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(247, 248, 252, .7) 0%, transparent 14%, transparent 86%, rgba(247, 248, 252, .75) 100%);
}

/* Alternating wash tones so neighbouring scenes blend */
#about .section-scene__wash {
  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, .9) 0%,
      rgba(255, 255, 255, .74) 35%,
      rgba(247, 248, 252, .8) 100%),
    linear-gradient(120deg, rgba(51, 43, 160, .04), transparent 55%);
}
#features .section-scene__wash,
#contact .section-scene__wash {
  background:
    linear-gradient(180deg,
      rgba(238, 240, 250, .9) 0%,
      rgba(238, 240, 250, .72) 40%,
      rgba(238, 240, 250, .88) 100%),
    linear-gradient(160deg, transparent 30%, rgba(67, 56, 202, .05));
}
#how-it-works .section-scene__wash,
#testimonials .section-scene__wash {
  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, .86) 0%,
      rgba(247, 248, 252, .7) 45%,
      rgba(255, 255, 255, .86) 100%);
}
#pricing .section-scene__wash {
  background:
    linear-gradient(180deg,
      rgba(247, 248, 252, .88) 0%,
      rgba(247, 248, 252, .7) 40%,
      rgba(247, 248, 252, .88) 100%),
    radial-gradient(ellipse 80% 60% at 85% 20%, rgba(67, 56, 202, .06), transparent 60%);
}
#faq .section-scene__wash {
  background:
    linear-gradient(180deg,
      rgba(238, 242, 248, .88) 0%,
      rgba(238, 242, 248, .7) 45%,
      rgba(238, 242, 248, .9) 100%);
}
#faq .section-scene__img {
  opacity: .55;
}

.has-scene > .container,
.has-scene > .why-grid {
  position: relative;
  z-index: 1;
}

@media (max-width: 640px) {
  .section-scene__img,
  .section-scene--lines .section-scene__img {
    opacity: .45;
    transform: scale(1.06);
  }
}

@media (prefers-reduced-motion: reduce) {
  .section-scene__img {
    transform: none;
  }
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.25rem;
}
.section-head h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.03em;
  color: var(--forest);
  margin-bottom: 1rem;
}
.section-forest .section-head h2 { color: var(--white); }
.section-head p {
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.65;
}
.section-forest .section-head p { color: rgba(255,255,255,.7); }

.section-tag {
  display: inline-flex;
  align-items: center;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal-mid);
  background: var(--teal-soft);
  border: 1px solid rgba(13,148,136,.22);
  border-radius: 999px;
  padding: .3rem 1rem;
  margin-bottom: 1.25rem;
}
.section-forest .section-tag {
  color: #99f6e4;
  background: rgba(13,148,136,.18);
  border-color: rgba(13,148,136,.35);
}

.text-emerald { color: var(--emerald); }

/* ??????????????????????????????????????????????????????????????
   FEATURES
?????????????????????????????????????????????????????????????? */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.5rem 2rem;
  transition: all .35s var(--ease);
  position: relative;
  overflow: hidden;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--forest);
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(67,56,202,.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s;
}
.feature-card:hover::before { opacity: 1; }

.feature-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--emerald-soft);
  color: var(--forest);
  display: grid;
  place-items: center;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(67,56,202,.16);
  transition: all .3s;
}
.feature-card:hover .feature-icon-wrap {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}
.feature-icon-wrap svg { width: 24px; height: 24px; }

.feature-card h3 {
  font-size: 1.1875rem;
  font-weight: 800;
  color: var(--forest);
  margin-bottom: .625rem;
  letter-spacing: -.02em;
}
.feature-card p {
  font-size: .9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ??????????????????????????????????????????????????????????????
   HOW WE WORK ? curved process flow
?????????????????????????????????????????????????????????????? */
.work-section {
  background: var(--white);
  padding-top: clamp(4rem, 8vw, 6rem);
}

.work-section.has-scene {
  background: transparent;
}

.pricing-section.has-scene,
.faq-section.has-scene {
  background: transparent;
}

.work-header {
  max-width: 520px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.work-header h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--forest);
  letter-spacing: -.03em;
  line-height: 1.15;
  margin-bottom: .875rem;
}
.work-header p {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

.work-canvas {
  position: relative;
  min-height: clamp(520px, 62vw, 680px);
}

.work-path {
  position: absolute;
  inset: 8% 0 12%;
  width: 100%;
  height: auto;
  pointer-events: none;
  z-index: 0;
  opacity: .85;
}

.work-deco {
  position: absolute;
  margin: 0;
  z-index: 1;
  pointer-events: none;
}
.work-deco img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 36px rgba(15, 23, 42, .12));
}
.work-deco--doc {
  top: 0;
  right: 0;
  width: min(42%, 420px);
}
.work-deco--stack {
  bottom: 2%;
  left: 0;
  width: min(30%, 280px);
}

.work-flow {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 2;
  min-height: inherit;
}
.work-flow-item {
  position: absolute;
  left: var(--work-x, 0);
  top: var(--work-y, 0);
  max-width: min(280px, 34vw);
}
.work-flow-num {
  display: block;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #cbd5e1;
  line-height: 1;
  margin-bottom: .35rem;
  letter-spacing: -.02em;
}
.work-flow-item h3 {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--forest);
  margin-bottom: .4rem;
  letter-spacing: -.015em;
}
.work-flow-item p {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* ??????????????????????????????????????????????????????????????
   TESTIMONIALS
?????????????????????????????????????????????????????????????? */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.5rem 2.25rem;
  box-shadow: var(--shadow-xs);
  transition: all .3s;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--forest);
}
.testimonial-card.featured {
  background: linear-gradient(150deg, var(--blue-1), var(--blue-2));
  color: var(--white);
  border: none;
}
.stars { display: flex; gap: 3px; margin-bottom: 1.25rem; color: var(--amber); }
.stars svg { width: 16px; height: 16px; fill: currentColor; }
.testimonial-card.featured .stars { color: #fde68a; }

.testimonial-card blockquote {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}
.testimonial-card.featured blockquote { color: rgba(255,255,255,.85); }

.testimonial-user { display: flex; align-items: center; gap: .875rem; }
.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--emerald-soft);
  color: var(--forest);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: .875rem;
  flex-shrink: 0;
}
.testimonial-card.featured .testimonial-avatar {
  background: rgba(255,255,255,.18);
  color: var(--white);
}
.testimonial-user strong { display: block; font-size: .9375rem; font-weight: 700; }
.testimonial-user span { font-size: .8125rem; color: var(--text-muted); }
.testimonial-card.featured .testimonial-user span { color: rgba(255,255,255,.6); }

/* ??????????????????????????????????????????????????????????????
   PRICING ? split cards + billing toggle
?????????????????????????????????????????????????????????????? */
.pricing-section {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  padding-top: clamp(4.5rem, 8vw, 6.5rem);
  padding-bottom: clamp(5rem, 10vw, 7rem);
}

.pricing-top {
  max-width: 720px;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.pricing-top h2 {
  font-size: clamp(2.125rem, 4.2vw, 3.35rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.035em;
  color: var(--text);
  margin-bottom: 1.75rem;
}

.pricing-toggle {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  background: var(--cream-dark);
  border-radius: 999px;
  padding: .35rem;
  border: 1px solid var(--border);
}

.pricing-toggle button {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .65rem 1.35rem;
  font-size: .9375rem;
  font-weight: 700;
  color: var(--text-muted);
  border-radius: 999px;
  transition: all .25s var(--ease);
}

.pricing-toggle button.active {
  background: var(--white);
  color: var(--teal-mid);
  box-shadow: var(--shadow-xs);
}

.pricing-toggle__badge {
  display: inline-flex;
  align-items: center;
  padding: .2rem .55rem;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal-mid);
  font-size: .6875rem;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.pricing-cards--stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.pricing-cards__paid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.pricing-card--starter {
  width: 100%;
}

.pricing-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  border-radius: 24px;
  overflow: hidden;
  min-height: 100%;
}

.pricing-card--standard {
  background: var(--white);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-xs);
}

.pricing-card--featured {
  background: #1a1f3d;
  box-shadow: var(--shadow-md);
}

.pricing-card__main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2rem);
}

.pricing-card--featured .pricing-card__main {
  color: var(--white);
}

.pricing-card__tag {
  display: inline-block;
  font-size: .6875rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.pricing-card__tag--amber { color: #ea580c; }
.pricing-card__tag--mint { color: #86efac; }
.pricing-card__tag--green { color: #16a34a; }

.pricing-card__pill {
  display: inline-flex;
  align-items: center;
  padding: .3rem .75rem;
  margin-bottom: 1.25rem;
  border-radius: 999px;
  background: #dcfce7;
  color: #166534;
  font-size: .75rem;
  font-weight: 700;
}

.pricing-card__main h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: inherit;
  margin-bottom: .5rem;
}

.pricing-card__desc {
  font-size: .9375rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.pricing-card--featured .pricing-card__desc {
  color: rgba(255, 255, 255, .72);
}

.pricing-card__price {
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--text);
  margin-bottom: .35rem;
}

.pricing-card--featured .pricing-card__price {
  color: var(--white);
}

.pricing-card__term {
  font-size: .9375rem;
  font-weight: 600;
  color: var(--text-soft);
  margin-left: .15rem;
}

.pricing-card--featured .pricing-card__term {
  color: rgba(255, 255, 255, .65);
}

.pricing-card__billing-note {
  font-size: .8125rem;
  color: var(--text-soft);
  margin-bottom: 1.5rem;
}

.pricing-card--featured .pricing-card__billing-note {
  color: rgba(255, 255, 255, .55);
}

.pricing-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: auto;
  padding: .95rem 1.25rem;
  border-radius: 999px;
  font-size: .9375rem;
  font-weight: 700;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
}

.pricing-card__btn--dark {
  background: #0f172a;
  color: var(--white);
  box-shadow: 0 8px 20px rgba(15, 23, 42, .18);
}

.pricing-card__btn--dark:hover {
  background: #1e293b;
  transform: translateY(-1px);
}

.pricing-card__btn--blue {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(13,148,136,.28);
}

.pricing-card__btn--blue:hover {
  background: var(--teal-mid);
  transform: translateY(-1px);
}

.pricing-card__features {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--white);
}

.pricing-card--featured .pricing-card__features {
  margin: .85rem .85rem .85rem 0;
  border-radius: 18px;
}

.pricing-card__features h4 {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.pricing-card__features ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .9375rem;
  line-height: 1.45;
  color: var(--text-light);
}

.pricing-sparkle {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: .2rem;
  color: var(--text);
}

.yearly-price { display: none; }
body.pricing-yearly .yearly-price { display: inline; }
body.pricing-yearly .monthly-price { display: none; }
body.pricing-yearly .pricing-card__billing-note.yearly-price { display: block; }
.pricing-card__billing-note.yearly-price { display: none; }

@media (max-width: 960px) {
  .pricing-cards__paid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .pricing-card {
    grid-template-columns: 1fr;
  }

  .pricing-card--featured .pricing-card__features {
    margin: 0;
    border-radius: 0;
  }
}

@media (max-width: 600px) {
  .pricing-section {
    padding-top: 3.5rem;
    padding-bottom: 4rem;
  }

  .pricing-top h2 {
    margin-bottom: 1.25rem;
  }

  .pricing-card {
    border-radius: 20px;
  }

  .pricing-card--featured .pricing-card__features {
    border-radius: 0 0 20px 20px;
  }
}

/* Legacy price-card aliases (unused) */
.price-card { display: none; }

/* ??????????????????????????????????????????????????????????????
   CONTACT
?????????????????????????????????????????????????????????????? */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}
.contact-info h3 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--forest);
  letter-spacing: -.03em;
  margin-bottom: 1rem;
}
.contact-info > p {
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.65;
  margin-bottom: 2.5rem;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.125rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--emerald-soft);
  color: var(--forest);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 1px solid rgba(67,56,202,.16);
}
.contact-detail-icon svg { width: 20px; height: 20px; }
.contact-detail strong { display: block; font-size: .9375rem; font-weight: 700; color: var(--forest); }
.contact-detail span { font-size: .875rem; color: var(--text-muted); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.contact-form h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--forest);
  margin-bottom: 1.75rem;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.25rem; }
.form-group label { font-size: .875rem; font-weight: 700; color: var(--forest); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-size: .9375rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  width: 100%;
  transition: all .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 4px rgba(51,43,160,.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-soft); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { appearance: none; cursor: pointer; }

/* ??????????????????????????????????????????????????????????????
   FAQ ? split intro + accordion cards
?????????????????????????????????????????????????????????????? */
.faq-section {
  background: #eef2f8;
  padding-top: clamp(4.5rem, 8vw, 6.5rem);
  padding-bottom: clamp(4.5rem, 8vw, 6.5rem);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.25fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 6rem;
}

.faq-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .45rem .95rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  font-size: .6875rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.faq-badge svg {
  width: 14px;
  height: 14px;
  color: var(--forest-mid);
}

.faq-intro h2 {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.035em;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.faq-illustration {
  margin-bottom: 1.75rem;
}

.faq-illustration svg {
  width: min(100%, 280px);
  height: auto;
}

.faq-intro-text {
  font-size: .9875rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 340px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.faq-item {
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, .06);
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}

.faq-item.is-open {
  border-color: #2563eb;
  box-shadow: 0 8px 24px rgba(37, 99, 235, .12);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  text-align: left;
  transition: background .25s var(--ease), color .25s var(--ease);
}

.faq-item.is-open .faq-question {
  background: #2563eb;
  color: var(--white);
}

.faq-question__text {
  flex: 1;
  line-height: 1.4;
}

.faq-toggle {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 999px;
  background: #f1f5f9;
  color: var(--text);
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}

.faq-toggle svg {
  width: 16px;
  height: 16px;
}

.faq-item.is-open .faq-toggle {
  background: var(--white);
  color: var(--text);
}

.faq-item:not(.is-open) .faq-toggle svg {
  transform: none;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}

.faq-item.is-open .faq-answer {
  max-height: 320px;
}

.faq-answer__inner {
  padding: 0 1.25rem 1.25rem;
}

.faq-answer p {
  margin: 0;
  font-size: .9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 960px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .faq-intro {
    position: static;
  }

  .faq-intro-text {
    max-width: none;
  }
}

@media (max-width: 600px) {
  .faq-section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .faq-question {
    padding: 1rem 1rem;
    font-size: .9375rem;
  }

  .faq-answer__inner {
    padding: 0 1rem 1rem;
  }
}

/* ??????????????????????????????????????????????????????????????
   FOOTER
?????????????????????????????????????????????????????????????? */
.site-footer {
  background: var(--forest);
  color: rgba(255,255,255,.55);
  padding: 5rem 0 2.5rem;
  border-top: 1px solid rgba(255,255,255,.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer-brand .logo {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: -.03em;
}
.footer-brand .logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 36px;
  background: transparent;
  border-radius: 0;
  color: var(--white);
}
.footer-brand .logo-mark img {
  display: block;
  height: 36px;
  width: auto;
}
.footer-brand > p { font-size: .9rem; line-height: 1.7; margin-top: 1rem; max-width: 280px; }
.footer-social { display: flex; gap: .75rem; margin-top: 1.5rem; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.6);
  transition: all .2s;
}
.footer-social a:hover { background: var(--emerald); color: var(--white); }
.footer-col h4 {
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.4);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .75rem; }
.footer-col li a { font-size: .9rem; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-col li a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  font-size: .875rem;
  flex-wrap: wrap;
}

/* ??????????????????????????????????????????????????????????????
   RESPONSIVE
?????????????????????????????????????????????????????????????? */
@media (max-width: 1040px) {
  .work-deco--doc { width: min(46%, 360px); }
  .work-flow-item { max-width: min(260px, 38vw); }
  .hero-banner-body--split { flex-direction: column; align-items: flex-start; }
  .hero-offer-stage {
    width: 100%;
    max-width: 300px;
    min-height: 300px;
    margin-right: 0;
    align-self: center;
  }
  .hero-offer-float--quote { left: 0; }
  .hero-offer-float--invoice { right: 0; }
  .hero-offer-float--rm { right: 2%; }
  .features-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-section { gap: 2.5rem; }
}

@media (max-width: 900px) {
  .sticky-nav-inner { gap: 0.75rem; }
  .sticky-nav-links { display: none; }
}

@media (max-width: 860px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .work-canvas {
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-top: 1rem;
  }
  .work-path,
  .work-deco { display: none; }
  .work-flow {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
  }
  .work-flow-item {
    position: static;
    max-width: 100%;
  }
  .contact-section { grid-template-columns: 1fr; gap: 3.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 4.5rem 0; }
  .hero-nav-links { display: none; }
  .hero-menu-toggle { display: flex; }
  .hero-nav-actions .hero-link-ghost { display: none; }
  .hero-banner-body {
    padding: clamp(4.75rem, 12vh, 5.5rem) 1.15rem 5.5rem;
  }
  .hero-banner-body--editorial {
    max-width: 100%;
    margin-left: 0;
  }
  .hero-banner-title { font-size: clamp(2rem, 9vw, 2.75rem); }
  .hero-offer-stage {
    min-height: auto;
    max-width: 100%;
  }
  .hero-offer-card {
    max-width: 100%;
  }
  .hero-offer-float {
    display: none;
  }
  .hero-carousel-footer {
    grid-template-columns: auto auto;
    grid-template-rows: auto auto auto;
    gap: .85rem 1rem;
  }
  .hero-slide-counter { grid-column: 1; grid-row: 1; }
  .hero-carousel-arrows { grid-column: 2; grid-row: 1; justify-self: end; }
  .hero-carousel-progress-track { grid-column: 1 / -1; grid-row: 2; }
  .hero-carousel-dots { grid-column: 1 / -1; grid-row: 3; justify-content: center; }

  .sticky-nav-links { display: none; }

  .features-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-form { padding: 1.75rem 1.5rem; }

  .login-dropdown__panel {
    left: max(12px, env(safe-area-inset-left)) !important;
    right: max(12px, env(safe-area-inset-right)) !important;
    width: auto !important;
    max-width: none !important;
  }

  .login-dropdown__inner {
    padding: 1rem 1rem 1.25rem;
  }

  .login-dropdown__tabs {
    font-size: 0.75rem;
  }
}

/* ?? SEO & accessibility helpers ????????????????????????????? */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--forest);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  border-radius: 0.5rem;
}

.skip-link:focus {
  position: fixed;
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  overflow: visible;
}

/* ??????????????????????????????????????????????????????????????
   WHY QUOTABILL ? fintech three-column section
?????????????????????????????????????????????????????????????? */
.why-section {
  position: relative;
  background: var(--white);
  overflow: hidden;
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.why-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 340px) minmax(0, 240px);
  gap: clamp(1.25rem, 3vw, 2.25rem);
  align-items: center;
}

.why-copy {
  min-width: 0;
}

.why-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .8125rem;
  font-weight: 700;
  color: var(--forest-mid);
  margin-bottom: 1rem;
}

.why-copy h2 {
  font-size: clamp(2rem, 3.8vw, 2.85rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.035em;
  color: var(--text);
  margin-bottom: .85rem;
  max-width: 14ch;
}

.why-lead {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 36rem;
}

.why-cta-pill {
  display: flex;
  align-items: stretch;
  max-width: 400px;
  padding: .35rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
}

.why-cta-pill input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  padding: .75rem 1rem .75rem 1.15rem;
  font-size: .9375rem;
  color: var(--text);
  outline: none;
}

.why-cta-pill input::placeholder {
  color: var(--text-soft);
}

.why-cta-btn {
  flex-shrink: 0;
  border: 0;
  border-radius: 999px;
  padding: .75rem 1.35rem;
  font-size: .875rem;
  font-weight: 700;
  color: var(--white);
  background: var(--text);
  cursor: pointer;
  transition: background .15s ease, transform .15s ease;
}

.why-cta-btn:hover {
  background: #1e293b;
}

.why-contacts-label {
  font-size: .875rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .75rem;
}

.why-contacts-row {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}

.why-contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-width: 88px;
  padding: .85rem .65rem .75rem;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-xs);
  font-size: .6875rem;
  font-weight: 700;
  color: var(--text-muted);
  text-align: center;
  text-decoration: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.why-contact-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.why-contact-card--add {
  background: var(--text);
  color: var(--white);
  border-color: var(--text);
}

.why-contact-card--add:hover {
  background: #1e293b;
  color: var(--white);
}

.why-contact-add-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px dashed rgba(255, 255, 255, .45);
  font-size: 1.125rem;
  line-height: 1;
}

.why-contact-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: .8125rem;
  font-weight: 800;
  color: var(--white);
}

.why-contact-avatar--a { background: linear-gradient(135deg, #6366f1, #4338ca); }
.why-contact-avatar--b { background: linear-gradient(135deg, #f472b6, #ec4899); }

.why-visual {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.why-visual-arch {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, 300px);
  height: 380px;
  background: #7b968a;
  border-radius: 150px 150px 24px 24px;
  z-index: 0;
}

.why-visual-person {
  position: relative;
  z-index: 1;
  width: min(100%, 280px);
  height: auto;
  max-height: 400px;
  object-fit: cover;
  object-position: center top;
  margin-bottom: -2px;
}

.why-float {
  position: absolute;
  z-index: 2;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, .12);
  border: 1px solid rgba(226, 232, 240, .9);
}

.why-float--balance {
  left: -4%;
  bottom: 28%;
  width: min(170px, 46vw);
  padding: .75rem .85rem .65rem;
}

.why-float-label {
  font-size: .625rem;
  font-weight: 600;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: .15rem;
}

.why-float-value {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.02em;
  margin-bottom: .35rem;
}

.why-float-chart {
  width: 100%;
  height: 28px;
  margin-bottom: .25rem;
}

.why-float-link {
  font-size: .625rem;
  font-weight: 700;
  color: var(--forest-mid);
}

.why-float--notify {
  right: -6%;
  top: 18%;
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .55rem .7rem;
  max-width: 160px;
}

.why-float-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ecfdf5;
  color: #059669;
  flex-shrink: 0;
}

.why-float-check svg {
  width: 14px;
  height: 14px;
}

.why-float-notify-title {
  font-size: .6875rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
}

.why-float-notify-sub {
  font-size: .5625rem;
  font-weight: 600;
  color: var(--text-soft);
  margin-top: .1rem;
}

.why-stats {
  min-width: 0;
}

.why-stats-icon {
  width: 40px;
  height: 40px;
  color: var(--text);
  margin-bottom: 1rem;
}

.why-stats-icon svg {
  width: 100%;
  height: 100%;
}

.why-stats-title {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.02em;
  margin-bottom: 1.35rem;
  line-height: 1.3;
}

.why-stat-block + .why-stat-block {
  margin-top: 1.35rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--border-soft);
}

.why-stat-num {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--text);
  line-height: 1;
  margin-bottom: .45rem;
}

.why-stat-desc {
  font-size: .8125rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
}

.why-stat-foot {
  margin-top: 1.35rem;
  font-size: .75rem;
  line-height: 1.55;
  color: var(--text-soft);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1040px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "copy copy"
      "visual stats";
  }
  .why-copy { grid-area: copy; }
  .why-visual { grid-area: visual; min-height: 360px; }
  .why-stats { grid-area: stats; align-self: center; }
  .why-copy h2 { max-width: none; }
}

@media (max-width: 720px) {
  .why-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "copy" "visual" "stats";
    gap: 2rem;
  }
  .why-visual {
    min-height: 340px;
    max-width: 320px;
    margin-inline: auto;
  }
  .why-float--balance { left: 0; }
  .why-float--notify { right: 0; }
  .why-cta-pill { max-width: none; }
  .why-contacts-row { justify-content: flex-start; }
}

/* Legacy seo-content aliases (cached refs) */
.seo-content-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.seo-content-grid p {
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.seo-content-aside {
  background: var(--cream);
  border: 1px solid var(--border-soft);
  border-radius: 1.25rem;
  padding: 1.75rem;
}

.seo-content-aside h3 {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--forest);
  margin: 0 0 1rem;
}

.seo-content-aside ul {
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.seo-content-aside li + li {
  margin-top: 0.5rem;
}

.seo-content-cta {
  margin: 0;
}

@media (max-width: 900px) {
  .seo-content-grid { grid-template-columns: 1fr; }
}

/* ?? Login dropdown (below nav) ?????????????????????????????? */
.login-dropdown {
  position: fixed;
  inset: 0;
  z-index: 500;
  pointer-events: none;
  visibility: hidden;
}

.login-dropdown.is-open {
  pointer-events: auto;
  visibility: visible;
}

.login-dropdown__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.login-dropdown.is-open .login-dropdown__backdrop {
  opacity: 1;
}

.login-dropdown__panel {
  position: fixed;
  top: var(--login-dropdown-top, 66px);
  left: var(--login-dropdown-left, 12px);
  width: var(--login-dropdown-width, min(420px, calc(100vw - 24px)));
  right: auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.28s cubic-bezier(.16, 1, .3, 1), opacity 0.24s ease, visibility 0.24s;
  max-height: min(85vh, 560px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 2;
}

.login-dropdown.is-open .login-dropdown__panel {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.login-dropdown__inner {
  padding: 1.25rem 1.25rem 1.5rem;
  max-width: none;
  margin: 0;
}

.login-dropdown .hidden {
  display: none !important;
}

.login-dropdown__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.login-dropdown__tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.375rem;
  padding: 0.25rem;
  margin-bottom: 1rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.login-dropdown__tab {
  border: none;
  background: transparent;
  border-radius: 9px;
  padding: 0.5rem 0.75rem;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.login-dropdown__tab.is-active {
  background: var(--white);
  color: var(--forest);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
}

.login-dropdown__plan-note {
  margin-bottom: 0.75rem;
  padding: 0.625rem 0.75rem;
  border-radius: 10px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #047857;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.4;
}

.login-field__optional {
  font-weight: 500;
  color: var(--text-muted);
}

.login-checkbox--terms {
  margin-top: 0.125rem;
  align-items: flex-start;
}

.login-checkbox--terms span {
  line-height: 1.35;
}

.login-dropdown__title {
  margin: 0;
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--forest);
  letter-spacing: -0.02em;
}

.login-dropdown__desc {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.login-dropdown__close {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--cream);
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.login-dropdown__close:hover {
  background: var(--cream-dark);
  color: var(--forest);
  border-color: var(--sand);
}

.login-dropdown__close svg {
  width: 1.125rem;
  height: 1.125rem;
}

.login-dropdown__alert {
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
}

.login-dropdown__alert.hidden { display: none; }

.login-dropdown__alert--error {
  background: var(--rose-soft);
  color: #b91c1c;
  border: 1px solid #fecaca;
}

.login-dropdown__alert--success {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}

.login-dropdown__form {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.login-field label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-soft);
  margin-bottom: 0.35rem;
}

.login-field input {
  width: 100%;
  padding: 0.75rem 0.9rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.login-field input:focus {
  outline: none;
  background: var(--white);
  border-color: var(--forest-light);
  box-shadow: 0 0 0 4px rgba(109, 94, 247, 0.15);
}

.login-field__password {
  position: relative;
}

.login-field__password input {
  padding-right: 2.75rem;
}

.login-field__toggle {
  position: absolute;
  right: 0.35rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--text-soft);
  cursor: pointer;
}

.login-field__toggle:hover {
  background: var(--cream-dark);
  color: var(--text-muted);
}

.login-field__toggle svg {
  width: 1.125rem;
  height: 1.125rem;
}

.login-field__toggle .hidden { display: none; }

.login-field__error {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--rose);
}

.login-field__error.hidden { display: none; }

.login-dropdown__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 0.8125rem;
}

.login-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-weight: 600;
  cursor: pointer;
  user-select: none;
}

.login-checkbox input {
  width: 1rem;
  height: 1rem;
  accent-color: var(--forest);
}

.login-dropdown__forgot {
  font-weight: 700;
  color: var(--forest);
}

.login-dropdown__forgot:hover { color: var(--forest-mid); }

.login-dropdown__submit {
  margin-top: 0.25rem;
  min-height: 2.75rem;
}

.login-dropdown__submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.login-dropdown__signup {
  margin: 0.25rem 0 0;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 600;
}

.login-dropdown__signup a {
  font-weight: 800;
  color: var(--forest);
}

.login-dropdown__switch {
  border: none;
  background: none;
  padding: 0;
  font: inherit;
  font-weight: 800;
  color: var(--forest);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.login-dropdown__switch:hover {
  color: var(--forest-mid);
}

.js-login-trigger.is-active {
  color: var(--forest);
  background: rgba(51, 43, 160, 0.08);
}

.hero-link-ghost.js-login-trigger.is-active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
}

.btn.js-signup-trigger.is-active,
.hero-link-ghost.js-signup-trigger.is-active {
  box-shadow: 0 0 0 2px rgba(51, 43, 160, 0.2);
}

.hero-mobile-login {
  width: 100%;
  text-align: left;
  padding: 0.75rem 0.5rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  border-radius: 8px;
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
}

.hero-mobile-login:hover {
  background: rgba(255, 255, 255, 0.08);
}

.footer-link-btn {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.footer-link-btn:hover {
  color: var(--forest);
}

body.login-dropdown-open {
  overflow: hidden;
}

/* --------------------------------------------------------------
   POST-HERO REDESIGN ? trust, tabs, flow, social, CTA
-------------------------------------------------------------- */
.trust-section { padding-top: 5rem; padding-bottom: 4.5rem; background: var(--cream); }
.trust-layout {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  max-width: var(--container);
  margin-inline: auto;
}
.trust-copy h2 {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--forest);
  line-height: 1.2;
  margin-bottom: .85rem;
}
.trust-copy > p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 36rem;
  margin-bottom: 1.75rem;
}
.trust-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
}
.trust-stat strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--forest);
  letter-spacing: -.03em;
  line-height: 1.1;
}
.trust-stat span {
  font-size: .8125rem;
  color: var(--text-muted);
  font-weight: 600;
}
.trust-chips {
  display: grid;
  gap: .75rem;
}
.trust-chip {
  text-align: left;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: .85rem;
  row-gap: .15rem;
  padding: 1rem 1.15rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--white);
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.trust-chip-icon {
  grid-row: 1 / span 2;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--cream-dark);
  color: var(--forest);
  display: grid;
  place-items: center;
  align-self: center;
}
.trust-chip-icon svg { width: 20px; height: 20px; }
.trust-chip-label {
  font-weight: 700;
  font-size: .95rem;
  color: var(--text);
}
.trust-chip-detail {
  font-size: .8125rem;
  color: var(--text-muted);
  line-height: 1.45;
}
.trust-chip:hover,
.trust-chip.is-active {
  border-color: rgba(13,148,136,.45);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}
.trust-chip.is-active .trust-chip-icon {
  background: var(--teal);
  color: var(--white);
}

/* Feature tabs */
.feat-section { background: var(--white); padding-block: 5rem; }
.feat-tabs {
  margin-top: .75rem;
  max-width: var(--container);
  margin-inline: auto;
}
.feat-tablist {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.75rem;
  padding: .35rem;
  background: var(--cream);
  border-radius: 14px;
  border: 1px solid var(--border-soft);
}
.feat-tab {
  flex: 1 1 auto;
  min-width: 7rem;
  padding: .7rem 1rem;
  font-weight: 700;
  font-size: .875rem;
  color: var(--text-muted);
  border-radius: 10px;
  transition: background .2s, color .2s, box-shadow .2s;
}
.feat-tab:hover { color: var(--forest); background: rgba(11,58,92,.04); }
.feat-tab.is-active {
  background: var(--white);
  color: var(--teal-mid);
  box-shadow: var(--shadow-xs);
}
.feat-panel {
  display: none;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.feat-panel.is-active { display: grid; }
.feat-panel-copy h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 800;
  color: var(--forest);
  letter-spacing: -.02em;
  margin-bottom: .75rem;
}
.feat-panel-copy > p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.65;
}
.feat-bullets {
  display: grid;
  gap: .55rem;
}
.feat-bullets li {
  position: relative;
  padding-left: 1.35rem;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--text-light);
}
.feat-bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: .45em;
  width: .55rem; height: .55rem;
  border-radius: 50%;
  background: var(--teal);
}
.feat-panel-media {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  background: var(--cream);
}
.feat-panel-media img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Workflow board */
.flow-section { background: var(--cream); padding-block: 5rem; }
.flow-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 1.75rem;
  align-items: stretch;
  max-width: var(--container);
  margin-inline: auto;
}
.flow-steps {
  display: grid;
  gap: .65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.flow-step {
  width: 100%;
  text-align: left;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: .85rem;
  padding: 1rem 1.15rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.flow-step-num {
  grid-row: 1 / span 2;
  align-self: center;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .06em;
  color: var(--teal);
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  background: var(--teal-soft);
  display: grid;
  place-items: center;
}
.flow-step-title {
  font-weight: 800;
  font-size: 1rem;
  color: var(--forest);
}
.flow-step-hint {
  font-size: .8rem;
  color: var(--text-muted);
  font-weight: 600;
}
.flow-step:hover,
.flow-step.is-active {
  border-color: rgba(13,148,136,.4);
  box-shadow: var(--shadow-sm);
}
.flow-step.is-active {
  background: linear-gradient(135deg, #fff 0%, #f0fdfa 100%);
}
.flow-detail {
  background: var(--forest);
  color: var(--white);
  border-radius: 20px;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: flex;
  align-items: center;
  min-height: 220px;
  box-shadow: var(--shadow-md);
}
.flow-panel { display: none; }
.flow-panel.is-active { display: block; }
.flow-panel h3 {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: .75rem;
}
.flow-panel p {
  color: rgba(255,255,255,.78);
  line-height: 1.65;
  font-size: 1rem;
}

/* Pricing trio */
.pricing-lead {
  color: var(--text-muted);
  max-width: 32rem;
  margin: 0 auto 1.25rem;
  text-align: center;
}
.pricing-top { text-align: center; }
.pricing-top .section-tag { margin-inline: auto; }
.pricing-top h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--forest);
  letter-spacing: -.03em;
  margin-bottom: .75rem;
}
.pricing-cards--trio {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}
.pricing-cards--trio .pricing-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s, border-color .25s;
}
.pricing-cards--trio .pricing-card.is-selected,
.pricing-cards--trio .pricing-card:focus-within {
  border-color: rgba(13,148,136,.5);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.pricing-cards--trio .pricing-card__main,
.pricing-cards--trio .pricing-card__features {
  display: flex;
  flex-direction: column;
}
.pricing-cards--trio .pricing-card__features { flex: 1; }

/* Social proof switcher */
.social-section { background: var(--white); padding-block: 5rem; }
.social-switcher { max-width: 760px; margin: 0 auto; }
.social-nav {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.social-nav-btn {
  padding: .55rem 1rem;
  font-size: .8125rem;
  font-weight: 700;
  color: var(--text-muted);
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--cream);
  transition: all .2s;
}
.social-nav-btn:hover { color: var(--forest); }
.social-nav-btn.is-active {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}
.social-stage {
  background: var(--cream);
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-xs);
}
.social-card { display: none; }
.social-card.is-active { display: block; }
.social-card .stars {
  display: flex;
  gap: .2rem;
  color: var(--amber);
  margin-bottom: 1rem;
}
.social-card .stars svg { width: 16px; height: 16px; fill: currentColor; }
.social-card blockquote {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.65;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.social-meta strong {
  display: block;
  font-weight: 800;
  color: var(--forest);
}
.social-meta span {
  font-size: .875rem;
  color: var(--text-muted);
}

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--forest) 0%, #0e4d6e 55%, var(--teal-mid) 140%);
  color: var(--white);
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}
.cta-band-inner {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 2rem;
  align-items: center;
}
.cta-band-copy h2 {
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: .75rem;
}
.cta-band-copy p {
  color: rgba(255,255,255,.78);
  max-width: 32rem;
  margin-bottom: 1.5rem;
}
.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.45);
  padding: .75rem 1.5rem;
  font-weight: 700;
  border-radius: 999px;
  transition: background .2s, border-color .2s;
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.8);
}
.cta-band-media {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: var(--shadow-lg);
}
.cta-band-media img { width: 100%; height: auto; }

/* Contact / FAQ polish */
.contact-section-wrap { background: var(--cream); }
.contact-detail-icon {
  background: var(--teal-soft) !important;
  color: var(--teal-mid) !important;
}
.faq-section .faq-intro h2 { color: var(--forest); }
.faq-item.is-open {
  border-color: rgba(13,148,136,.35);
}
.faq-item.is-open .faq-question { color: var(--teal-mid); }

.site-footer {
  background: #071f33;
}

@media (max-width: 960px) {
  .trust-layout,
  .feat-panel.is-active,
  .flow-board,
  .cta-band-inner,
  .pricing-cards--trio {
    grid-template-columns: 1fr;
  }
  .cta-band-media { max-width: 420px; }
  .feat-tablist { overflow-x: auto; flex-wrap: nowrap; }
  .feat-tab { flex: 0 0 auto; }
}
@media (max-width: 640px) {
  .trust-stats { gap: 1rem 1.25rem; }
  .pricing-cards--trio {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding-bottom: .5rem;
    -webkit-overflow-scrolling: touch;
  }
  .pricing-cards--trio .pricing-card {
    flex: 0 0 min(86vw, 320px);
    scroll-snap-align: start;
  }
}

/* --------------------------------------------------------------
   POST-HERO SKELETON + STORY RAIL + SECTION CONNECTORS
-------------------------------------------------------------- */
.post-hero {
  position: relative;
}
.post-hero.is-loading .post-hero-body {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  min-height: 70vh;
}
.post-hero.is-ready .post-hero-body {
  opacity: 1;
  visibility: visible;
  transition: opacity .45s var(--ease);
}
.post-hero-skel {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: var(--cream);
  padding: 3rem 0 5rem;
  transition: opacity .4s var(--ease), visibility .4s;
}
.post-hero.is-ready .post-hero-skel {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.post-hero-skel-inner {
  display: grid;
  gap: 2.5rem;
}
.phs-block {
  padding: 1.5rem 0;
}
.phs-block--alt {
  background: var(--cream-dark);
  margin-inline: calc(50% - 50vw);
  padding-inline: calc(50vw - 50%);
  padding-block: 2rem;
  border-radius: 0;
}
.phs-bone {
  display: block;
  border-radius: 10px;
  background: linear-gradient(90deg, #e2e8f0 0%, #f1f5f9 45%, #e2e8f0 90%);
  background-size: 200% 100%;
  animation: phs-shimmer 1.35s ease-in-out infinite;
}
@keyframes phs-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .phs-bone { animation: none; }
}
.phs-bone--tag { width: 7rem; height: 1.5rem; border-radius: 999px; margin-bottom: 1rem; }
.phs-bone--title { width: min(28rem, 90%); height: 2.25rem; margin-bottom: .85rem; }
.phs-bone--title-sm { width: min(18rem, 70%); height: 1.5rem; margin-bottom: .85rem; }
.phs-bone--line { width: min(36rem, 95%); height: .85rem; margin-bottom: .55rem; }
.phs-bone--short { width: min(22rem, 60%); }
.phs-chips { display: grid; gap: .65rem; margin-top: 1.25rem; max-width: 28rem; }
.phs-bone--chip { height: 4.25rem; border-radius: 14px; }
.phs-bone--tabs { width: 100%; height: 3.25rem; border-radius: 14px; margin-bottom: 1.25rem; }
.phs-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
}
.phs-panel-copy { display: grid; gap: .55rem; }
.phs-bone--media { height: 14rem; border-radius: 18px; }
.phs-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}
.phs-bone--card { height: 12rem; border-radius: 16px; }

/* Section connectors ? clean horizontal divider */
.section-connector {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  margin: -.25rem auto;
  max-width: 280px;
  padding: 0 1rem;
  pointer-events: none;
}
.section-connector-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(13,148,136,.35), transparent);
  opacity: .55;
  transform: scaleX(.6);
  transition: transform .7s var(--ease), opacity .7s;
}
.section-connector-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  flex-shrink: 0;
}
.section-connector-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(13,148,136,.12);
}
.section-connector-label {
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal-mid);
  white-space: nowrap;
}
.section-connector.is-visible .section-connector-line {
  transform: scaleX(1);
  opacity: 1;
}

/* Image skeleton */
.media-skel {
  position: relative;
  background: linear-gradient(90deg, #e2e8f0 0%, #f1f5f9 45%, #e2e8f0 90%);
  background-size: 200% 100%;
  animation: phs-shimmer 1.35s ease-in-out infinite;
}
.media-skel.is-loaded {
  animation: none;
  background: var(--cream);
}
.media-skel img {
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.media-skel.is-loaded img { opacity: 1; }

.trust-cta { margin-top: 1.5rem; }
.feat-panel-link {
  display: inline-flex;
  margin-top: 1.25rem;
  font-weight: 700;
  font-size: .9375rem;
  color: var(--teal-mid);
  transition: color .2s, gap .2s;
  gap: .25rem;
}
.feat-panel-link:hover { color: var(--forest); }

@media (max-width: 960px) {
  .phs-panel,
  .phs-cards { grid-template-columns: 1fr; }
  .section-connector { margin: -1rem 0; }
  .section { padding: 4rem 0; }
  .trust-cta { width: 100%; justify-content: center; }
}
@media (max-width: 640px) {
  .section-connector-label { font-size: .625rem; }
  .feat-tablist {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .feat-tab { min-width: 0; text-align: center; }
  .flow-detail { min-height: 180px; }
  .cta-band-actions .btn { width: 100%; justify-content: center; }
  .social-nav { gap: .4rem; }
  .social-nav-btn { font-size: .75rem; padding: .45rem .75rem; }
}
