/* ============================================================
   EcomAuto Agency — Homepage
   Design system: Blue / Navy / White / Orange
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand */
  --blue:        #1f5cff;
  --blue-600:    #1748d6;
  --blue-400:    #4d80ff;
  --blue-100:    #e8efff;
  --navy:        #0a1633;
  --navy-800:    #0e1d44;
  --navy-700:    #142555;
  --orange:      #ff9518;
  --orange-600:  #f5860a;
  --orange-100:  #fff1dd;

  /* Neutrals */
  --white:   #ffffff;
  --ink:     #0c1730;
  --slate:   #5a6783;
  --slate-2: #8a94ad;
  --line:    #e7ebf3;
  --surface: #f6f8fc;
  --surface-2: #eef2fb;

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(10,22,51,.06), 0 1px 3px rgba(10,22,51,.05);
  --shadow-md: 0 8px 24px rgba(10,22,51,.08);
  --shadow-lg: 0 24px 60px rgba(10,22,51,.14);
  --shadow-blue: 0 16px 40px rgba(31,92,255,.28);
  --shadow-orange: 0 16px 40px rgba(255,149,24,.32);

  --radius:    14px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 40px);

  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-head: "Sora", var(--font-body);

  --ease: cubic-bezier(.4, 0, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input { font-family: inherit; }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.12; letter-spacing: -.02em; font-weight: 700; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 1000;
  background: var(--blue); color: #fff; padding: 10px 16px; border-radius: 10px;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

.hide-mobile { display: none; }
@media (min-width: 768px) { .hide-mobile { display: inline; } }

.text-gradient {
  background: linear-gradient(100deg, var(--blue-400), var(--orange));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  --btn-pad-y: 12px; --btn-pad-x: 22px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: .95rem; line-height: 1;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  border-radius: 12px; cursor: pointer; white-space: nowrap;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  will-change: transform;
}
.btn--lg { --btn-pad-y: 16px; --btn-pad-x: 30px; font-size: 1rem; border-radius: 14px; }

.btn--primary { background: var(--blue); color: #fff; box-shadow: var(--shadow-blue); }
.btn--primary:hover { background: var(--blue-600); transform: translateY(-2px); box-shadow: 0 20px 48px rgba(31,92,255,.36); }

.btn--orange { background: var(--orange); color: #20140a; box-shadow: var(--shadow-orange); }
.btn--orange:hover { background: var(--orange-600); transform: translateY(-2px); box-shadow: 0 20px 48px rgba(255,149,24,.42); }

.btn--outline { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn--outline:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }

.btn--ghost { background: var(--white); color: var(--blue); border: 1.5px solid var(--blue-100); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { background: var(--blue-100); transform: translateY(-2px); }

.btn--glass { background: rgba(255,255,255,.1); color: #fff; border: 1.5px solid rgba(255,255,255,.25); backdrop-filter: blur(8px); }
.btn--glass:hover { background: rgba(255,255,255,.18); transform: translateY(-2px); }

.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 3px solid rgba(31,92,255,.45); outline-offset: 2px;
}

.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; color: var(--blue); font-size: .95rem;
}
.link-arrow span { transition: transform .25s var(--ease-out); }
.link-arrow:hover span { transform: translateX(5px); }
.link-arrow--light { color: var(--orange); }

/* ---------- Shared section bits ---------- */
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section__head--center { text-align: center; max-width: 720px; margin-inline: auto; margin-bottom: clamp(40px, 6vw, 64px); }

.eyebrow {
  display: inline-block; font-weight: 600; font-size: .8rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--blue);
  background: var(--blue-100); padding: 6px 14px; border-radius: 100px; margin-bottom: 18px;
}
.eyebrow--light { color: var(--orange); background: rgba(255,149,24,.14); }

.section__title { font-size: clamp(1.9rem, 4vw, 2rem); margin-bottom: 18px; }
.section__title--light { color: #fff; }
.section__lead { color: var(--slate); font-size: clamp(1rem, 1.5vw, 1.12rem); max-width: 56ch; }
.section__head--center .section__lead { margin-inline: auto; }
.section__lead--light { color: rgba(255,255,255,.72); }

.badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .85rem; font-weight: 500; color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  padding: 8px 16px; border-radius: 100px; backdrop-filter: blur(8px); margin-bottom: 26px;
}
.badge__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px rgba(255,149,24,.25); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 4px rgba(255,149,24,.25); } 50% { box-shadow: 0 0 0 7px rgba(255,149,24,0); } }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 16px 0;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease), backdrop-filter .35s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 rgba(10,22,51,.08), var(--shadow-sm);
  padding: 10px 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav__brand { display: flex; align-items: center; }
.nav__logo { height: 34px; width: auto; }
.nav__logo--dark { display: none; }
.site-header.is-scrolled .nav__logo--light { display: none; }
.site-header.is-scrolled .nav__logo--dark { display: block; }

.nav__list { display: flex; gap: 6px; align-items: center; }
.nav__link {
  position: relative; padding: 8px 14px; border-radius: 10px;
  font-weight: 500; font-size: .95rem; color: rgba(255,255,255,.82);
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav__link:hover { color: #fff; background: rgba(255,255,255,.08); }
.nav__link.is-active { color: #fff; }
.site-header.is-scrolled .nav__link { color: var(--slate); }
.site-header.is-scrolled .nav__link:hover,
.site-header.is-scrolled .nav__link.is-active { color: var(--blue); background: var(--blue-100); }

.nav__cta--desktop { display: none; }
.nav__cta--mobile { display: none; }

.nav__toggle { display: flex; flex-direction: column; gap: 5px; padding: 8px; z-index: 110; }
.nav__toggle span { width: 24px; height: 2.5px; background: #fff; border-radius: 2px; transition: transform .3s var(--ease), opacity .25s var(--ease), background .3s var(--ease); }
.site-header.is-scrolled .nav__toggle span { background: var(--ink); }
.nav__toggle.is-open span,
.site-header.is-scrolled .nav__toggle.is-open span { background: #fff; }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (min-width: 992px) {
  .nav__menu { display: flex !important; align-items: center; gap: 28px; }
  .nav__cta--desktop { display: inline-flex; }
  .nav__toggle { display: none; }
}

/* Mobile menu */
@media (max-width: 991px) {
  .nav__menu {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px);
    background: var(--navy); flex-direction: column; align-items: stretch;
    padding: 96px 28px 32px; gap: 8px;
    transform: translateX(105%); transition: transform .4s var(--ease-out);
    box-shadow: -20px 0 60px rgba(0,0,0,.35); z-index: 105;
  }
  .nav__menu.is-open { transform: translateX(0); }
  .nav__list { flex-direction: column; align-items: stretch; gap: 4px; }
  .nav__link { display: block; color: rgba(255,255,255,.85); padding: 14px 16px; font-size: 1.05rem; }
  .nav__link:hover, .nav__link.is-active { color: #fff; background: rgba(255,255,255,.08); }
  .nav__cta--mobile { display: inline-flex; margin-top: 16px; }
  .nav-backdrop {
    position: fixed; inset: 0; background: rgba(5,10,25,.5); backdrop-filter: blur(2px);
    opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s var(--ease); z-index: 95;
  }
  .nav-backdrop.is-open { opacity: 1; visibility: visible; }
}

/* ---------- Services dropdown ---------- */
.nav__item--has-dropdown { position: relative; }
.nav__link--dropdown {
  display: inline-flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,.82); font: inherit; font-weight: 500; font-size: .95rem;
  padding: 8px 14px; border-radius: 10px; cursor: pointer;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav__link--dropdown:hover, .nav__item--has-dropdown.is-open .nav__link--dropdown { color: #fff; background: rgba(255,255,255,.08); }
.site-header.is-scrolled .nav__link--dropdown { color: var(--slate); }
.site-header.is-scrolled .nav__link--dropdown:hover,
.site-header.is-scrolled .nav__item--has-dropdown.is-open .nav__link--dropdown { color: var(--blue); background: var(--blue-100); }
.nav__caret { width: 15px; height: 15px; transition: transform .3s var(--ease); }
.nav__item--has-dropdown.is-open .nav__caret { transform: rotate(180deg); }

.dropdown {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 14px;
}
.dropdown__grid { display: grid; gap: 8px; }
.dropdown__link {
  display: block; padding: 11px 16px; border-radius: 11px; font-size: .92rem; font-weight: 500;
  color: var(--slate); border: 1px solid transparent;
  transition: color .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease-out);
}
.dropdown__link:hover {
  color: var(--blue); background: var(--blue-100); border-color: #d8e3ff; transform: translateX(3px);
}

@media (min-width: 992px) {
  .dropdown {
    position: absolute; top: calc(100% + 14px); left: 50%; width: 520px;
    transform: translateX(-50%) translateY(10px); transform-origin: top center;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .28s var(--ease), transform .28s var(--ease-out), visibility .28s var(--ease);
    z-index: 120;
  }
  .dropdown::before { /* hover bridge so cursor can travel to the panel */
    content: ""; position: absolute; left: 0; right: 0; top: -16px; height: 16px;
  }
  .dropdown::after { /* little pointer */
    content: ""; position: absolute; top: -7px; left: 50%; width: 14px; height: 14px;
    background: #fff; border-left: 1px solid var(--line); border-top: 1px solid var(--line);
    transform: translateX(-50%) rotate(45deg); border-radius: 3px 0 0 0;
  }
  .dropdown__grid { grid-template-columns: 1fr 1fr; }
  .nav__item--has-dropdown:hover .dropdown,
  .nav__item--has-dropdown.is-open .dropdown {
    opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
  }
  .nav__item--has-dropdown:hover .nav__caret { transform: rotate(180deg); }
}

/* Mobile: inline collapsible dropdown inside the slide-in menu */
@media (max-width: 991px) {
  .nav__link--dropdown { width: 100%; justify-content: space-between; color: rgba(255,255,255,.85); padding: 14px 16px; font-size: 1.05rem; }
  .nav__link--dropdown:hover, .nav__item--has-dropdown.is-open .nav__link--dropdown { color: #fff; background: rgba(255,255,255,.08); }
  .dropdown {
    background: transparent; border: none; box-shadow: none; padding: 4px 0 4px 12px;
    max-height: 0; overflow: hidden; transition: max-height .4s var(--ease);
  }
  .dropdown__grid { gap: 2px; }
  .dropdown__link { color: rgba(255,255,255,.7); padding: 11px 16px; }
  .dropdown__link:hover { color: #fff; background: rgba(255,255,255,.06); border-color: transparent; transform: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; isolation: isolate;
  background: radial-gradient(120% 120% at 80% -10%, var(--navy-700), var(--navy) 55%);
  color: #fff; padding: clamp(130px, 18vh, 200px) 0 clamp(80px, 10vw, 130px);
  overflow: hidden; text-align: center;
}
.hero__bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.hero__glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .55; }
.hero__glow--1 { width: 560px; height: 560px; background: radial-gradient(circle, var(--blue) 0%, transparent 70%); top: -180px; right: -120px; }
.hero__glow--2 { width: 480px; height: 480px; background: radial-gradient(circle, var(--orange) 0%, transparent 70%); bottom: -200px; left: -120px; opacity: .35; }
.hero__grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(110% 80% at 50% 0%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(110% 80% at 50% 0%, #000 30%, transparent 75%);
}
.hero__inner { display: flex; flex-direction: column; align-items: center; }
.hero__title { font-size: clamp(2.3rem, 6vw, 3rem); font-weight: 800; max-width: 16ch; margin-bottom: 22px; }
.hero__subtitle { color: rgba(255,255,255,.74); font-size: clamp(1rem, 1.7vw, 1.2rem); max-width: 60ch; margin-bottom: 22px; }
.hero__proof { font-size: .95rem; color: rgba(255,255,255,.6); margin-bottom: 30px; }
.hero__proof strong { color: var(--orange); }

.hero__form { width: 100%; max-width: 620px; }
.hero__form-fields { display: flex; flex-direction: column; gap: 12px; margin-bottom: 14px; }
.hero__form input {
  width: 100%; padding: 16px 18px; border-radius: 14px; font-size: 1rem;
  background: rgba(255,255,255,.06); border: 1.5px solid rgba(255,255,255,.16); color: #fff;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.hero__form input::placeholder { color: rgba(255,255,255,.5); }
.hero__form input:focus { outline: none; border-color: var(--blue-400); background: rgba(255,255,255,.1); }
.hero__form .btn { width: 100%; }
.hero__form-msg { margin-top: 12px; font-size: .9rem; color: var(--orange); min-height: 1.2em; }

@media (min-width: 620px) {
  .hero__form-fields { flex-direction: row; }
  .hero__form { display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: start; }
  .hero__form-fields { margin-bottom: 0; grid-column: 1; }
  .hero__form .btn { width: auto; grid-column: 2; }
  .hero__form-msg { grid-column: 1 / -1; }
}

.hero__brands { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.hero__brands-label { font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.45); }
.hero__brands-list { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(20px, 5vw, 48px); }
.hero__brands-list li { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.05rem, 2.5vw, 1.45rem); color: rgba(255,255,255,.55); transition: color .25s var(--ease); }
.hero__brands-list li:hover { color: #fff; }

/* ============================================================
   WHY CHOOSE
   ============================================================ */
.why { background: var(--white); }
.why__grid { display: grid; gap: clamp(40px, 6vw, 72px); align-items: center; }
@media (min-width: 940px) { .why__grid { grid-template-columns: 1.05fr 1fr; } }

.why__list { display: flex; flex-direction: column; gap: 22px; margin: 30px 0; }
.why__item { display: flex; gap: 16px; }
.why__icon {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 13px;
  display: grid; place-items: center; color: var(--blue);
  background: var(--blue-100); border: 1px solid #d8e3ff;
}
.why__icon svg { width: 24px; height: 24px; }
.why__item h3 { font-size: 1.12rem; margin-bottom: 4px; }
.why__item p { color: var(--slate); font-size: .96rem; }

.why__cta { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; }
.why__phone { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; color: var(--ink); }
.why__phone span { width: 38px; height: 38px; border-radius: 50%; background: var(--orange-100); color: var(--orange-600); display: grid; place-items: center; }
.why__phone span svg { width: 18px; height: 18px; }
.why__phone:hover { color: var(--blue); }

/* Visual / dashboard */
.why__visual { position: relative; }
.why__card-stack { position: relative; }
.why__media {
  position: relative; border-radius: var(--radius-xl);
  background: linear-gradient(160deg, var(--navy-700), var(--navy));
  padding: 26px; box-shadow: var(--shadow-lg); overflow: hidden;
}
.why__media-glow { position: absolute; width: 320px; height: 320px; top: -120px; right: -80px; background: radial-gradient(circle, rgba(31,92,255,.5), transparent 70%); filter: blur(40px); }
.dashboard { position: relative; }
.dashboard__bar { display: flex; gap: 7px; margin-bottom: 22px; }
.dashboard__bar span { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,.22); }
.dashboard__bar span:first-child { background: var(--orange); }
.dashboard__metric { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 22px; }
.dashboard__label { color: rgba(255,255,255,.6); font-size: .82rem; }
.dashboard__value { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.7rem, 4vw, 2.3rem); color: #fff; }
.dashboard__trend { color: #34d399; font-weight: 700; font-size: .9rem; background: rgba(52,211,153,.14); padding: 4px 10px; border-radius: 8px; }
.dashboard__chart { display: flex; align-items: flex-end; gap: 9px; height: 120px; }
.dashboard__chart span {
  flex: 1; height: var(--h); border-radius: 7px 7px 3px 3px;
  background: linear-gradient(to top, var(--blue), var(--blue-400));
  transform-origin: bottom; transform: scaleY(0); transition: transform .8s var(--ease-out);
}
.dashboard__chart span:last-child { background: linear-gradient(to top, var(--orange-600), var(--orange)); }
.why__visual.is-visible .dashboard__chart span { transform: scaleY(1); }
.why__visual.is-visible .dashboard__chart span:nth-child(2){ transition-delay:.06s }
.why__visual.is-visible .dashboard__chart span:nth-child(3){ transition-delay:.12s }
.why__visual.is-visible .dashboard__chart span:nth-child(4){ transition-delay:.18s }
.why__visual.is-visible .dashboard__chart span:nth-child(5){ transition-delay:.24s }
.why__visual.is-visible .dashboard__chart span:nth-child(6){ transition-delay:.3s }
.why__visual.is-visible .dashboard__chart span:nth-child(7){ transition-delay:.36s }

.why__quote {
  position: relative; margin: -28px 20px 0 auto; max-width: 320px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 20px 22px; box-shadow: var(--shadow-md);
}
.why__quote p { font-size: .92rem; color: var(--ink); font-style: italic; }
.why__quote figcaption { margin-top: 10px; font-size: .82rem; font-weight: 600; color: var(--slate); }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--surface); }
.services__grid { display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 620px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .services__grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 30px 26px;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease), border-color .35s var(--ease);
  overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease-out);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--blue-100); color: var(--blue); margin-bottom: 20px;
  transition: transform .35s var(--ease-out);
}
.service-card:hover .service-card__icon { transform: scale(1.08) rotate(-4deg); }
.service-card__icon svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 1.12rem; margin-bottom: 10px; }
.service-card p { color: var(--slate); font-size: .92rem; margin-bottom: 18px; }

.service-card--featured {
  background: linear-gradient(165deg, var(--navy-700), var(--navy)); color: #fff; border-color: transparent;
}
.service-card--featured h3 { color: #fff; }
.service-card--featured p { color: rgba(255,255,255,.72); }
.service-card--featured .service-card__icon { background: rgba(255,149,24,.16); color: var(--orange); }
.service-card--featured .link-arrow { color: var(--orange); }
.service-card__tag {
  position: absolute; top: 16px; right: 16px; font-size: .68rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: #20140a;
  background: var(--orange); padding: 4px 10px; border-radius: 100px;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process { background: var(--white); }
.process__grid { display: grid; gap: clamp(32px, 5vw, 64px); align-items: start; }
@media (min-width: 940px) { .process__grid { grid-template-columns: .85fr 1.15fr; }
  .process__head { position: sticky; top: 110px; } }
.process__head .btn { margin-top: 24px; }

/* Accordion */
.accordion__item { border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 14px; overflow: hidden; transition: border-color .3s var(--ease), box-shadow .3s var(--ease); background: #fff; }
.accordion__item.is-open { border-color: #cdd9f6; box-shadow: var(--shadow-md); }
.accordion__trigger {
  width: 100%; display: flex; align-items: center; gap: 16px; text-align: left;
  padding: 20px 22px; font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: var(--ink);
}
.accordion__num { color: var(--blue); font-weight: 700; font-size: .95rem; opacity: .8; }
.accordion__title { flex: 1; }
.accordion__icon { position: relative; flex-shrink: 0; width: 22px; height: 22px; }
.accordion__icon::before, .accordion__icon::after {
  content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  background: var(--blue); border-radius: 2px; transition: transform .3s var(--ease), background .3s var(--ease);
}
.accordion__icon::before { width: 14px; height: 2.5px; }
.accordion__icon::after { width: 2.5px; height: 14px; }
.accordion__item.is-open .accordion__icon::after { transform: translate(-50%,-50%) scaleY(0); }
.accordion__item.is-open .accordion__icon::before { background: var(--orange); }
.accordion__panel { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.accordion__panel p { padding: 0 22px 22px; color: var(--slate); font-size: .96rem; }

.accordion--faq { max-width: 820px; margin-inline: auto; }
.accordion--faq .accordion__trigger { font-size: 1rem; }

/* ============================================================
   AUTOPILOT CTA BAND
   ============================================================ */
.autopilot {
  position: relative; isolation: isolate; text-align: center; color: #fff;
  background: linear-gradient(135deg, var(--blue-600), var(--blue) 40%, var(--navy));
  padding: clamp(56px, 8vw, 90px) 0; overflow: hidden;
}
.autopilot::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(60% 120% at 80% 20%, rgba(255,149,24,.35), transparent 60%);
}
.autopilot__inner { max-width: 720px; margin-inline: auto; }
.autopilot__title { font-size: clamp(1.7rem, 4vw, 2.6rem); color: #fff; margin-bottom: 16px; }
.autopilot p { color: rgba(255,255,255,.82); margin-bottom: 28px; font-size: 1.05rem; }

/* ============================================================
   STATS / SINCE 2015
   ============================================================ */
.stats { background: var(--surface); }
.stats__grid { display: grid; gap: clamp(40px, 6vw, 64px); align-items: center; }
@media (min-width: 940px) { .stats__grid { grid-template-columns: 1.1fr .9fr; } }

.stats__bars { display: flex; flex-direction: column; gap: 22px; margin-top: 32px; }
.stat-bar__head { display: flex; justify-content: space-between; font-weight: 600; font-size: .92rem; margin-bottom: 9px; }
.stat-bar__pct { color: var(--blue); }
.stat-bar__track { height: 9px; background: var(--surface-2); border-radius: 100px; overflow: hidden; border: 1px solid var(--line); }
.stat-bar__fill {
  display: block; height: 100%; width: 0; border-radius: 100px;
  background: linear-gradient(90deg, var(--blue), var(--blue-400));
  transition: width 1.2s var(--ease-out);
}
.stat-bar:nth-child(2) .stat-bar__fill,
.stat-bar:nth-child(4) .stat-bar__fill { background: linear-gradient(90deg, var(--orange-600), var(--orange)); }
.stats__bars.is-animated .stat-bar__fill { width: var(--w); }

.stats__card {
  background: linear-gradient(165deg, var(--navy-700), var(--navy)); color: #fff;
  border-radius: var(--radius-xl); padding: clamp(28px, 4vw, 40px); box-shadow: var(--shadow-lg);
}
.stats__card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.stats__card > p { color: rgba(255,255,255,.7); font-size: .95rem; margin-bottom: 26px; }
.stats__metrics { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px 18px; margin-bottom: 26px; }
.stats__metrics strong { display: block; font-family: var(--font-head); font-weight: 800; font-size: clamp(1.7rem, 4vw, 2.3rem); line-height: 1; }
.stats__metrics li:nth-child(2) strong, .stats__metrics li:nth-child(4) strong { color: var(--orange); }
.stats__metrics li:nth-child(1) strong, .stats__metrics li:nth-child(3) strong { color: var(--blue-400); }
.stats__metrics span { font-size: .85rem; color: rgba(255,255,255,.62); margin-top: 4px; display: block; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { background: var(--white); }
.pricing__grid { display: grid; gap: 24px; grid-template-columns: 1fr; align-items: stretch; }
@media (min-width: 720px) { .pricing__grid { grid-template-columns: repeat(3, 1fr); } }

.plan {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-xl);
  padding: 34px 30px; transition: transform .35s var(--ease-out), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.plan__name { font-size: 1.25rem; margin-bottom: 8px; }
.plan__desc { color: var(--slate); font-size: .92rem; margin-bottom: 22px; min-height: 60px; }
.plan__price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.plan__amount { font-family: var(--font-head); font-weight: 800; font-size: 2.2rem; color: var(--ink); }
.plan__per { color: var(--slate-2); font-size: .9rem; }
.plan__features { display: flex; flex-direction: column; gap: 13px; margin-bottom: 28px; flex: 1; }
.plan__features li { position: relative; padding-left: 28px; font-size: .94rem; color: var(--ink); }
.plan__features li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 18px; height: 18px; border-radius: 50%;
  background: var(--blue-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231f5cff' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/11px no-repeat;
}
.plan__cta { width: 100%; }

.plan--featured {
  background: linear-gradient(170deg, var(--navy-700), var(--navy)); color: #fff; border-color: transparent;
  box-shadow: var(--shadow-lg); transform: translateY(-8px);
}
@media (max-width: 719px) { .plan--featured { transform: none; } }
.plan--featured:hover { transform: translateY(-14px); }
@media (max-width: 719px) { .plan--featured:hover { transform: translateY(-6px); } }
.plan--featured .plan__name, .plan--featured .plan__amount { color: #fff; }
.plan--featured .plan__desc { color: rgba(255,255,255,.72); }
.plan--featured .plan__price { border-color: rgba(255,255,255,.16); }
.plan--featured .plan__features li { color: rgba(255,255,255,.88); }
.plan--featured .plan__features li::before { background: rgba(255,149,24,.18) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff9518' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/11px no-repeat; }
.plan__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #20140a; font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; padding: 6px 16px; border-radius: 100px;
  box-shadow: var(--shadow-orange);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: linear-gradient(180deg, var(--navy) 0%, var(--navy-800) 100%); }
.testimonials__grid { display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .testimonials__grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); padding: 30px 28px; color: #fff;
  transition: transform .35s var(--ease-out), background .35s var(--ease), border-color .35s var(--ease);
}
.testimonial:hover { transform: translateY(-6px); background: rgba(255,255,255,.07); border-color: rgba(255,149,24,.35); }
.testimonial__stars { color: var(--orange); letter-spacing: 3px; margin-bottom: 16px; font-size: 1.05rem; }
.testimonial blockquote { font-size: .98rem; line-height: 1.7; color: rgba(255,255,255,.86); margin-bottom: 24px; }
.testimonial__author { display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0; display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: .95rem; color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--orange));
}
.testimonial__author strong { display: block; font-family: var(--font-head); font-size: .98rem; }
.testimonial__author span span { color: rgba(255,255,255,.55); font-size: .85rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--surface); }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  position: relative; isolation: isolate; text-align: center; color: #fff;
  background: radial-gradient(120% 120% at 50% 0%, var(--navy-700), var(--navy) 60%);
  padding: clamp(70px, 10vw, 120px) 0; overflow: hidden;
}
.final-cta::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(50% 80% at 50% 100%, rgba(31,92,255,.4), transparent 60%);
}
.final-cta__inner { max-width: 720px; margin-inline: auto; }
.final-cta__title { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; margin-bottom: 18px; }
.final-cta p { color: rgba(255,255,255,.78); font-size: 1.1rem; margin-bottom: 32px; }
.final-cta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy); color: rgba(255,255,255,.7); padding-top: clamp(56px, 8vw, 84px); }
.footer__grid { display: grid; gap: 40px; grid-template-columns: 1fr; }
@media (min-width: 620px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 940px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr 1.2fr 1.4fr; } }

.footer__logo { height: 36px; margin-bottom: 18px; }
.footer__brand p { font-size: .92rem; max-width: 34ch; margin-bottom: 20px; }
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  background: rgba(255,255,255,.06); color: rgba(255,255,255,.8);
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease-out);
}
.footer__social a:hover { background: var(--blue); color: #fff; transform: translateY(-3px); }
.footer__social svg { width: 18px; height: 18px; }

.footer__col h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; }
.footer__col ul { display: flex; flex-direction: column; gap: 11px; }
.footer__col a, .footer__col li { font-size: .92rem; transition: color .2s var(--ease); }
.footer__col a:hover { color: var(--orange); }

.footer__newsletter p { font-size: .9rem; margin-bottom: 14px; }
.footer__form { display: flex; gap: 8px; }
.footer__form input {
  flex: 1; min-width: 0; padding: 12px 14px; border-radius: 11px; font-size: .92rem;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); color: #fff;
}
.footer__form input::placeholder { color: rgba(255,255,255,.45); }
.footer__form input:focus { outline: none; border-color: var(--blue-400); }
.footer__form .btn { padding: 12px 16px; font-size: 1.1rem; }
.footer__form-msg { font-size: .82rem; color: var(--orange); margin-top: 8px; min-height: 1em; }

.footer__bottom { margin-top: clamp(48px, 6vw, 72px); border-top: 1px solid rgba(255,255,255,.1); padding: 24px 0; }
.footer__bottom-inner { display: flex; flex-direction: column; gap: 12px; align-items: center; text-align: center; font-size: .85rem; }
.footer__bottom-inner ul { display: flex; gap: 22px; }
.footer__bottom-inner a:hover { color: var(--orange); }
@media (min-width: 720px) { .footer__bottom-inner { flex-direction: row; justify-content: space-between; } }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.to-top {
  position: fixed; bottom: 26px; right: 26px; z-index: 90;
  width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center;
  background: var(--blue); color: #fff; box-shadow: var(--shadow-blue);
  opacity: 0; visibility: hidden; transform: translateY(16px) scale(.9);
  transition: opacity .3s var(--ease), transform .3s var(--ease-out), visibility .3s var(--ease), background .25s var(--ease);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.to-top:hover { background: var(--blue-600); transform: translateY(-3px); }
.to-top svg { width: 22px; height: 22px; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
/* ---- Page hero ---- */
.page-hero {
  position: relative; isolation: isolate; text-align: center; color: #fff;
  background: radial-gradient(120% 120% at 80% -10%, var(--navy-700), var(--navy) 55%);
  padding: clamp(130px, 20vh, 210px) 0 clamp(60px, 9vw, 110px); overflow: hidden;
}
.page-hero__bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.page-hero__inner { display: flex; flex-direction: column; align-items: center; }
.breadcrumb { font-size: .88rem; color: rgba(255,255,255,.6); margin-bottom: 20px; }
.breadcrumb a { color: rgba(255,255,255,.75); transition: color .2s var(--ease); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span[aria-current] { color: #fff; }
.page-hero__title { font-size: clamp(2.1rem, 5.4vw, 3.6rem); font-weight: 800; max-width: 18ch; margin-bottom: 20px; }
.page-hero__lead { color: rgba(255,255,255,.74); font-size: clamp(1rem, 1.6vw, 1.18rem); max-width: 62ch; margin-bottom: 30px; }
.page-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---- Feature columns ---- */
.about-features { background: var(--white); padding-top: clamp(48px, 7vw, 80px); }
.about-features__grid { display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 620px) { .about-features__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .about-features__grid { grid-template-columns: repeat(4, 1fr); } }
.feature-col {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 26px;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.feature-col:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.feature-col__icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--blue-100); color: var(--blue); margin-bottom: 20px; transition: transform .35s var(--ease-out);
}
.feature-col:hover .feature-col__icon { transform: scale(1.08) rotate(-4deg); }
.feature-col__icon svg { width: 26px; height: 26px; }
.feature-col h3 { font-size: 1.1rem; margin-bottom: 10px; }
.feature-col p { color: var(--slate); font-size: .92rem; }
.feature-col p a { color: var(--blue); font-weight: 600; }

/* ---- Story / Mission & Vision ---- */
.about-story { background: var(--surface); }
.about-story__grid { display: grid; gap: clamp(40px, 6vw, 72px); align-items: center; }
@media (min-width: 940px) { .about-story__grid { grid-template-columns: 1.1fr .9fr; } }
.about-story__text { color: var(--slate); margin-top: 16px; }
.about-story__cards { display: grid; gap: 18px; margin-top: 32px; grid-template-columns: 1fr; }
@media (min-width: 560px) { .about-story__cards { grid-template-columns: 1fr 1fr; } }
.mv-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease);
}
.mv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.mv-card__icon { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--orange-100); color: var(--orange-600); margin-bottom: 14px; }
.mv-card__icon svg { width: 22px; height: 22px; }
.mv-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.mv-card p { color: var(--slate); font-size: .92rem; }

.about-story__visual { position: relative; }
.about-story__stat-card {
  position: relative; overflow: hidden; color: #fff;
  background: linear-gradient(165deg, var(--navy-700), var(--navy));
  border-radius: var(--radius-xl); padding: clamp(28px, 4vw, 40px); box-shadow: var(--shadow-lg);
}
.about-story__glow { position: absolute; width: 320px; height: 320px; top: -120px; right: -80px; background: radial-gradient(circle, rgba(31,92,255,.5), transparent 70%); filter: blur(40px); }
.about-story__stat-label { position: relative; color: rgba(255,255,255,.6); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 22px; }
.about-story__stats { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 24px 18px; margin-bottom: 28px; }
.about-story__stats strong { display: block; font-family: var(--font-head); font-weight: 800; font-size: clamp(1.7rem, 4vw, 2.3rem); line-height: 1; }
.about-story__stats li:nth-child(odd) strong { color: var(--blue-400); }
.about-story__stats li:nth-child(even) strong { color: var(--orange); }
.about-story__stats span { display: block; font-size: .82rem; color: rgba(255,255,255,.62); margin-top: 5px; }
.about-story__quote { position: relative; border-top: 1px solid rgba(255,255,255,.12); padding-top: 20px; }
.about-story__quote p { font-style: italic; color: rgba(255,255,255,.88); font-size: .96rem; }
.about-story__quote figcaption { margin-top: 10px; font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.55); }

/* ---- Approach ---- */
.approach { background: var(--white); }
.approach__grid { display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .approach__grid { grid-template-columns: repeat(3, 1fr); } }
.approach__step {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 34px 28px; overflow: hidden;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.approach__step:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; background: #fff; }
.approach__num {
  display: inline-block; font-family: var(--font-head); font-weight: 800; font-size: 2.4rem;
  line-height: 1; background: linear-gradient(135deg, var(--blue), var(--orange));
  -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 16px;
}
.approach__step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.approach__step p { color: var(--slate); font-size: .94rem; }
.approach__cta { text-align: center; margin-top: 44px; }

/* ---- Values ---- */
.values { background: var(--surface); }
.values__grid { display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 620px) { .values__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .values__grid { grid-template-columns: repeat(3, 1fr); } }
.value-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 28px;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.value-card__icon { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; background: var(--blue-100); color: var(--blue); margin-bottom: 18px; transition: transform .35s var(--ease-out); }
.value-card:hover .value-card__icon { transform: scale(1.08) rotate(-4deg); }
.value-card__icon svg { width: 25px; height: 25px; }
.value-card h3 { font-size: 1.1rem; margin-bottom: 9px; }
.value-card p { color: var(--slate); font-size: .93rem; }

/* ---- Service page extras ---- */
.plan__old { text-decoration: line-through; color: var(--slate-2); font-size: 1.05rem; font-weight: 500; }
.plan--featured .plan__old { color: rgba(255,255,255,.5); }
.dropdown__link.is-current { color: var(--blue); background: var(--blue-100); border-color: #d8e3ff; }
@media (max-width: 991px) { .dropdown__link.is-current { color: #fff; background: rgba(255,255,255,.1); } }

/* ============================================================
   PACKAGES PAGE
   ============================================================ */
.packages-section { background: var(--white); }

/* Filter tabs */
.pkg-tabs {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.pkg-tab {
  padding: 10px 20px; border-radius: 100px; font-weight: 600; font-size: .92rem;
  color: var(--slate); background: var(--surface); border: 1.5px solid var(--line);
  transition: color .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), transform .2s var(--ease-out);
}
.pkg-tab:hover { color: var(--blue); border-color: #cdd9f6; transform: translateY(-2px); }
.pkg-tab.is-active { color: #fff; background: var(--blue); border-color: var(--blue); box-shadow: var(--shadow-blue); }

/* Groups */
.pkg-groups { display: flex; flex-direction: column; gap: clamp(48px, 7vw, 80px); }
.pkg-group { scroll-margin-top: 120px; }
.pkg-group.is-hidden { display: none; }
.pkg-group__head { text-align: center; margin-bottom: 34px; }
.pkg-group__title { font-size: clamp(1.5rem, 3vw, 2rem); position: relative; display: inline-block; padding-bottom: 12px; }
.pkg-group__title::after { content: ""; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); width: 56px; height: 3px; border-radius: 3px; background: linear-gradient(90deg, var(--blue), var(--orange)); }
.pkg-group__tagline { color: var(--slate); margin-top: 14px; }

/* Save badge on combo plans */
.plan__save {
  margin-left: auto; align-self: center; font-size: .72rem; font-weight: 700; letter-spacing: .04em;
  color: #0f7a4d; background: rgba(52,211,153,.16); padding: 5px 10px; border-radius: 100px;
}
.plan--featured .plan__save { color: #7bf3c0; background: rgba(52,211,153,.18); }

.pkg-note { text-align: center; margin-top: clamp(36px, 5vw, 56px); color: var(--slate); }
.pkg-note a { color: var(--blue); font-weight: 600; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-info { background: var(--white); padding-bottom: 0; }
.contact-cards { display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .contact-cards { grid-template-columns: repeat(3, 1fr); } }
.contact-card {
  text-align: center; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 34px 26px;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.contact-card__icon { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; margin: 0 auto 18px; background: var(--blue-100); color: var(--blue); transition: transform .35s var(--ease-out); }
.contact-card:hover .contact-card__icon { transform: scale(1.08) rotate(-4deg); }
.contact-card__icon svg { width: 27px; height: 27px; }
.contact-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.contact-card__value { color: var(--slate); font-size: .96rem; font-weight: 500; }
a.contact-card__value:hover { color: var(--blue); }

/* Form + panel layout */
.contact-grid { display: grid; gap: clamp(28px, 4vw, 44px); align-items: start; }
@media (min-width: 940px) { .contact-grid { grid-template-columns: 1.25fr .75fr; } }

.contact-form-wrap { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-xl); padding: clamp(26px, 4vw, 42px); box-shadow: var(--shadow-md); }
.contact-form-wrap .section__title { margin-top: 10px; }
.contact-form-wrap .section__lead { margin-bottom: 28px; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.field-row { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 560px) { .field-row { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: .88rem; font-weight: 600; color: var(--ink); }
.field__opt { color: var(--slate-2); font-weight: 400; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border-radius: 12px; font-size: .96rem; color: var(--ink);
  background: var(--surface); border: 1.5px solid var(--line);
  transition: border-color .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
}
.field textarea { resize: vertical; min-height: 120px; }
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235a6783' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; padding-right: 40px;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); background: #fff; box-shadow: 0 0 0 4px rgba(31,92,255,.12); }
.field input::placeholder, .field textarea::placeholder { color: var(--slate-2); }
.contact-form .btn { align-self: flex-start; }
.contact-form__msg { font-size: .92rem; min-height: 1.2em; margin: 0; }

/* Info panel */
.contact-panel__card {
  position: relative; overflow: hidden; color: #fff;
  background: linear-gradient(165deg, var(--navy-700), var(--navy));
  border-radius: var(--radius-xl); padding: clamp(28px, 3.5vw, 38px); box-shadow: var(--shadow-lg);
}
.contact-panel__glow { position: absolute; width: 300px; height: 300px; top: -120px; right: -90px; background: radial-gradient(circle, rgba(31,92,255,.5), transparent 70%); filter: blur(40px); }
.contact-panel__card h3 { position: relative; font-size: 1.3rem; margin-bottom: 8px; }
.contact-panel__lead { position: relative; color: rgba(255,255,255,.66); font-size: .93rem; margin-bottom: 26px; }
.contact-panel__list { position: relative; display: flex; flex-direction: column; gap: 18px; margin-bottom: 26px; }
.contact-panel__list li { display: flex; gap: 14px; }
.contact-panel__ic { flex-shrink: 0; width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,255,255,.08); color: var(--orange); }
.contact-panel__ic svg { width: 20px; height: 20px; }
.contact-panel__list strong { display: block; font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.5); margin-bottom: 3px; font-weight: 600; }
.contact-panel__list a, .contact-panel__list span > span { color: rgba(255,255,255,.9); font-size: .96rem; }
.contact-panel__list a:hover { color: var(--orange); }
.contact-panel__hours { position: relative; border-top: 1px solid rgba(255,255,255,.12); padding-top: 22px; margin-bottom: 24px; }
.contact-panel__hours > strong { display: block; font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.5); margin-bottom: 12px; }
.contact-panel__hours > div { display: flex; justify-content: space-between; font-size: .92rem; color: rgba(255,255,255,.85); margin-bottom: 8px; }
.contact-panel__badge { display: inline-block; margin-top: 6px; font-size: .8rem; font-weight: 600; color: var(--orange); background: rgba(255,149,24,.14); padding: 6px 12px; border-radius: 100px; }
.contact-panel__social { position: relative; display: flex; gap: 12px; }
.contact-panel__social a { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: rgba(255,255,255,.08); color: #fff; transition: background .25s var(--ease), transform .25s var(--ease-out); }
.contact-panel__social a:hover { background: var(--blue); transform: translateY(-3px); }
.contact-panel__social svg { width: 18px; height: 18px; }

/* Map */
.contact-map { margin-top: clamp(28px, 4vw, 44px); border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-md); line-height: 0; }
.contact-map iframe { width: 100%; height: clamp(300px, 40vw, 440px); border: 0; display: block; filter: grayscale(.15); }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.page-hero--sm { padding: clamp(120px, 16vh, 170px) 0 clamp(40px, 6vw, 64px); text-align: left; }
.page-hero--sm .page-hero__inner { align-items: flex-start; }
.legal-updated { color: rgba(255,255,255,.55); font-size: .9rem; margin-top: 18px; }

.legal { background: var(--white); }
.legal-layout { display: grid; gap: clamp(32px, 5vw, 56px); align-items: start; }
@media (min-width: 900px) { .legal-layout { grid-template-columns: 260px 1fr; } }

/* Table of contents */
.legal-toc { display: none; }
@media (min-width: 900px) {
  .legal-toc { display: block; position: sticky; top: 110px; }
  .legal-toc__title { font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; color: var(--slate-2); font-weight: 600; margin-bottom: 14px; }
  .legal-toc ul { display: flex; flex-direction: column; gap: 2px; border-left: 2px solid var(--line); }
  .legal-toc a { display: block; padding: 7px 16px; margin-left: -2px; font-size: .9rem; color: var(--slate); border-left: 2px solid transparent; transition: color .2s var(--ease), border-color .2s var(--ease); }
  .legal-toc a:hover, .legal-toc a.is-active { color: var(--blue); border-color: var(--blue); }
}

/* Prose */
.legal-content { max-width: 760px; }
.legal-intro { color: var(--slate); font-size: 1.02rem; margin-bottom: 8px; }
.legal-section { padding-top: 26px; scroll-margin-top: 100px; }
.legal-section + .legal-section { border-top: 1px solid var(--line); margin-top: 8px; }
.legal-content h2 { font-size: clamp(1.25rem, 2.4vw, 1.5rem); margin-bottom: 14px; }
.legal-content h3 { font-size: 1.08rem; margin: 20px 0 10px; }
.legal-content p { color: var(--slate); margin-bottom: 14px; line-height: 1.75; }
.legal-content a { color: var(--blue); font-weight: 500; }
.legal-content a:hover { text-decoration: underline; }
.legal-list { margin: 0 0 16px; padding-left: 0; display: flex; flex-direction: column; gap: 10px; }
.legal-list li { position: relative; padding-left: 26px; color: var(--slate); line-height: 1.7; }
.legal-list li::before { content: ""; position: absolute; left: 4px; top: 11px; width: 7px; height: 7px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--orange)); }
.legal-contact { margin-top: 34px; padding: 28px 30px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.legal-contact h2 { margin-bottom: 10px; }

/* ============================================================
   PROMO OFFER POPUP (two-panel)
   ============================================================ */
.promo {
  position: fixed; inset: 0; z-index: 300; display: grid; place-items: center;
  padding: 20px; background: rgba(6,11,26,.62); backdrop-filter: blur(5px);
  opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s var(--ease);
}
.promo.is-open { opacity: 1; visibility: visible; }

.promo__dialog {
  position: relative; width: 100%; max-width: 760px; background: #fff;
  border-radius: var(--radius-xl); overflow: hidden; box-shadow: 0 40px 100px rgba(0,0,0,.45);
  display: grid; grid-template-columns: 1fr;
  transform: translateY(26px) scale(.965); opacity: 0;
  transition: transform .45s var(--ease-out), opacity .4s var(--ease);
}
.promo.is-open .promo__dialog { transform: none; opacity: 1; }
@media (min-width: 660px) { .promo__dialog { grid-template-columns: 1.05fr 1fr; } }
/* Mobile: show only the form panel */
@media (max-width: 659px) {
  .promo__dialog { max-width: 400px; }
  .promo__aside { display: none; }
}

/* Close */
.promo__close {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(10,22,51,.55); color: #fff; border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(4px);
  transition: background .2s var(--ease), transform .25s var(--ease-out);
}
.promo__close:hover { background: var(--orange); color: #20140a; transform: rotate(90deg); }
.promo__close svg { width: 16px; height: 16px; }

/* Left offer panel */
.promo__aside {
  position: relative; isolation: isolate; overflow: hidden; color: #fff;
  background: linear-gradient(165deg, var(--navy-700), var(--navy));
  padding: clamp(26px, 4vw, 40px);
}
.promo__aside::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(70% 60% at 20% 0%, rgba(31,92,255,.5), transparent 60%),
              radial-gradient(60% 60% at 100% 100%, rgba(255,149,24,.32), transparent 60%);
}
.promo__eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-size: .74rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--orange);
  background: rgba(255,149,24,.14); border: 1px solid rgba(255,149,24,.3);
  padding: 6px 13px; border-radius: 100px; margin-bottom: 18px;
}
.promo__headline { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.5rem, 4.6vw, 2rem); line-height: 1.12; margin-bottom: 12px; }
.promo__headline span { color: var(--orange); }
.promo__text { color: rgba(255,255,255,.72); font-size: .94rem; margin-bottom: 20px; }
.promo__benefits { display: flex; flex-direction: column; gap: 11px; margin-bottom: 24px; }
.promo__benefits li { position: relative; padding-left: 28px; font-size: .92rem; color: rgba(255,255,255,.9); }
.promo__benefits li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 18px; height: 18px; border-radius: 50%;
  background: rgba(255,149,24,.2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff9518' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/11px no-repeat;
}
.promo__countdown { display: flex; align-items: flex-end; gap: 10px; }
.promo__cd-label { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 10px; }
.promo__units { display: flex; gap: 8px; }
.promo__unit { text-align: center; min-width: 52px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); border-radius: 12px; padding: 9px 8px; }
.promo__unit b { display: block; font-family: var(--font-head); font-weight: 800; font-size: 1.4rem; line-height: 1; font-variant-numeric: tabular-nums; }
.promo__unit span { font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.5); }

/* Right form panel */
.promo__panel { padding: clamp(26px, 4vw, 40px); display: flex; flex-direction: column; justify-content: center; }
.promo__panel h3 { font-size: clamp(1.2rem, 3.4vw, 1.5rem); margin-bottom: 6px; }
.promo__panel > p { color: var(--slate); font-size: .93rem; margin-bottom: 20px; }
.promo__form { display: flex; flex-direction: column; gap: 11px; }
.promo__form input {
  width: 100%; padding: 13px 15px; border-radius: 12px; font-size: .95rem; color: var(--ink);
  background: var(--surface); border: 1.5px solid var(--line);
  transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}
.promo__form input::placeholder { color: var(--slate-2); }
.promo__form input:focus { outline: none; border-color: var(--blue); background: #fff; box-shadow: 0 0 0 4px rgba(31,92,255,.12); }
.promo__submit {
  margin-top: 5px; width: 100%; padding: 15px; border-radius: 12px; font-family: var(--font-head);
  font-weight: 700; font-size: .98rem; letter-spacing: .02em; color: #20140a;
  background: var(--orange); box-shadow: var(--shadow-orange);
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease), background .25s var(--ease);
}
.promo__submit:hover { background: var(--orange-600); transform: translateY(-2px); box-shadow: 0 20px 48px rgba(255,149,24,.42); }
.promo__msg { text-align: center; font-size: .88rem; min-height: 1.2em; margin-top: 2px; }
.promo__fine { text-align: center; font-size: .76rem; color: var(--slate-2); margin-top: 12px; }

@media (prefers-reduced-motion: reduce) {
  .promo, .promo__dialog { transition: opacity .2s linear; }
  .promo__dialog { transform: none; }
}
