/* ==========================================================================
   AUTOCRAFT COMPANIES (a division of AutoCraft Studios) — corporate site
   ========================================================================== */

:root {
  --bg: #07090b;
  --bg-soft: #0c0f12;
  --bg-card: #101418;
  --ink: #f2f4f3;
  --ink-dim: rgba(242, 244, 243, 0.62);
  --ink-faint: rgba(242, 244, 243, 0.38);
  --accent: #5eead4;        /* gulf teal */
  --accent-deep: #14b8a6;
  --accent-warm: #fbbf77;   /* florida sunset */
  --line: rgba(242, 244, 243, 0.1);
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1280px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--accent); color: var(--bg); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}

.serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

/* ==========================================================================
   PRELOADER
   ========================================================================== */
.preloader {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.7s var(--ease-out), visibility 0.7s;
}
.preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader__inner { text-align: center; width: min(420px, 80vw); }
.preloader__count {
  font-family: var(--font-display);
  font-size: clamp(64px, 12vw, 120px);
  font-weight: 300;
  letter-spacing: -0.04em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.preloader__label {
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ink-faint); margin: 12px 0 24px;
}
.preloader__bar {
  height: 1px; background: var(--line); position: relative; overflow: hidden;
}
.preloader__bar span {
  position: absolute; inset: 0; width: 0%;
  background: var(--accent);
  transition: width 0.2s linear;
  display: block;
}

/* ==========================================================================
   CURSOR & GRAIN
   ========================================================================== */
.cursor, .cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor {
  width: 6px; height: 6px; background: var(--accent);
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(94, 234, 212, 0.4);
  transition: width 0.25s var(--ease-out), height 0.25s var(--ease-out),
              border-color 0.25s, background 0.25s;
}
.cursor-ring.is-hover {
  width: 64px; height: 64px;
  background: rgba(94, 234, 212, 0.08);
  border-color: rgba(94, 234, 212, 0.7);
}
@media (hover: none), (max-width: 900px) {
  .cursor, .cursor-ring { display: none; }
}

.grain {
  position: fixed; inset: 0; z-index: 998; pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 500; text-decoration: none;
  border-radius: 100px;
  padding: 14px 28px; font-size: 15px;
  letter-spacing: 0.01em;
  transition: transform 0.35s var(--ease-out), background 0.35s, color 0.35s,
              border-color 0.35s, box-shadow 0.35s;
  will-change: transform;
  white-space: nowrap;
}
.btn__arrow { transition: transform 0.35s var(--ease-out); display: inline-block; }
.btn:hover .btn__arrow { transform: translateX(5px); }

.btn--primary {
  background: var(--accent); color: #04211c;
  box-shadow: 0 0 0 rgba(94, 234, 212, 0);
}
.btn--primary:hover {
  background: #8df5e3;
  box-shadow: 0 8px 40px rgba(94, 234, 212, 0.35);
}
.btn--ghost {
  color: var(--ink);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { border-color: rgba(94, 234, 212, 0.6); color: var(--accent); }
.btn--outline {
  color: var(--ink);
  border: 1px solid rgba(242, 244, 243, 0.25);
}
.btn--outline:hover { border-color: var(--accent); color: var(--accent); }

.btn--sm { padding: 10px 22px; font-size: 13.5px; }
.btn--lg { padding: 18px 36px; font-size: 16px; }
.btn--xl { padding: 22px 44px; font-size: 17px; }

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  transition: background 0.4s, border-color 0.4s, transform 0.4s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(9, 12, 14, 0.92);
  border-bottom-color: var(--line);
}
@supports (backdrop-filter: blur(18px)) {
  .nav.scrolled {
    background: rgba(7, 9, 11, 0.72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }
}
.nav.hidden { transform: translateY(-100%); }
.nav__inner {
  max-width: var(--container); margin: 0 auto;
  padding: 18px clamp(20px, 4vw, 56px);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav__logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--ink);
}
.nav__logo-mark {
  width: 34px; height: 34px; display: block;
  filter: drop-shadow(0 0 10px rgba(94, 234, 212, 0.35));
  transition: transform 0.5s var(--ease-out);
}
.nav__logo:hover .nav__logo-mark { transform: rotate(-8deg) scale(1.06); }
.nav__logo-text {
  font-family: var(--font-display); font-weight: 600; font-size: 18px;
  letter-spacing: -0.01em; color: var(--ink);
}
.nav__logo-text em { font-style: normal; color: var(--accent); }
.nav__links { display: flex; gap: 32px; }
.nav__link {
  color: var(--ink-dim); text-decoration: none; font-size: 14px;
  font-family: var(--font-display); font-weight: 400;
  position: relative; transition: color 0.3s;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -5px;
  width: 100%; height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}
.nav__link:hover { color: var(--ink); }
.nav__link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__actions { display: flex; align-items: center; gap: 18px; }
.nav__phone {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink-dim); text-decoration: none; font-size: 13.5px;
  font-family: var(--font-display); transition: color 0.3s;
}
.nav__phone:hover { color: var(--accent); }
.nav__burger {
  display: none; flex-direction: column; gap: 6px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav__burger span {
  width: 26px; height: 2px; background: var(--ink); display: block;
  transition: transform 0.35s var(--ease-out), opacity 0.3s;
}
.nav__burger.open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 890;
  background: rgba(7, 9, 11, 0.97);
  backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.45s var(--ease-out), visibility 0.45s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu__links { display: flex; flex-direction: column; gap: 22px; text-align: center; }
.mobile-menu__links a {
  color: var(--ink); text-decoration: none;
  font-family: var(--font-display); font-size: clamp(26px, 7vw, 38px); font-weight: 500;
}
.mobile-menu__cta { color: var(--accent) !important; }
.mobile-menu__phone { font-size: 17px !important; color: var(--ink-dim) !important; margin-top: 10px; }

@media (max-width: 1080px) {
  .nav__links, .nav__phone { display: none; }
}
@media (max-width: 680px) {
  .nav__actions .btn { display: none; }
  .nav__burger { display: flex; }
}
@media (min-width: 681px) and (max-width: 1080px) {
  .nav__burger { display: flex; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding: 140px 0 100px;
  overflow: hidden;
}
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__gradient {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 75% 20%, rgba(20, 184, 166, 0.13), transparent 60%),
    radial-gradient(ellipse 50% 40% at 15% 85%, rgba(251, 191, 119, 0.07), transparent 60%),
    linear-gradient(to bottom, transparent 55%, var(--bg) 96%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-dim);
  border: 1px solid var(--line); border-radius: 100px;
  padding: 9px 18px; margin-bottom: 36px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(6px);
}
.pulse-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(94, 234, 212, 0.5); }
  50% { box-shadow: 0 0 0 8px rgba(94, 234, 212, 0); }
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(44px, 8.2vw, 118px);
  line-height: 1.02; font-weight: 600; letter-spacing: -0.035em;
  margin-bottom: 36px;
}
.hero__line { display: block; overflow: hidden; }
.hero__line span {
  display: block;
  transform: translateY(110%);
  animation: line-up 1.1s var(--ease-out) forwards;
}
.hero__line:nth-child(1) span { animation-delay: 0.15s; }
.hero__line:nth-child(2) span { animation-delay: 0.28s; }
.hero__line:nth-child(3) span { animation-delay: 0.41s; }
@keyframes line-up { to { transform: translateY(0); } }
.hero__title .serif { font-size: 1.04em; }
.hero__sub {
  max-width: 620px; font-size: clamp(16px, 1.6vw, 19px);
  color: var(--ink-dim); margin-bottom: 44px;
}
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; }
.hero__meta {
  display: flex; gap: clamp(20px, 4vw, 56px); flex-wrap: wrap;
  border-top: 1px solid var(--line); padding-top: 28px;
}
.hero__meta-item {
  font-family: var(--font-display); font-size: 14px; color: var(--ink-faint);
  letter-spacing: 0.06em; text-transform: uppercase;
}
.hero__meta-item strong { color: var(--accent); margin-right: 8px; font-weight: 600; }
.hero__scroll {
  position: absolute; bottom: 32px; right: clamp(20px, 4vw, 56px); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ink-faint);
  writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px; height: 64px; background: var(--line);
  position: relative; overflow: hidden;
}
.hero__scroll-line::after {
  content: ""; position: absolute; left: 0; top: -40%;
  width: 100%; height: 40%; background: var(--accent);
  animation: scroll-drip 1.8s var(--ease-out) infinite;
}
@keyframes scroll-drip {
  to { top: 110%; }
}

/* ==========================================================================
   MARQUEE
   ========================================================================== */
.marquee {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 22px 0; overflow: hidden;
  background: var(--bg-soft);
}
.marquee__track {
  display: flex; align-items: center; gap: 44px;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee__track span {
  font-family: var(--font-display); font-size: 15px; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-dim);
  white-space: nowrap;
}
.marquee__track i { color: var(--accent); font-style: normal; font-size: 12px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ==========================================================================
   SECTION SHARED
   ========================================================================== */
.section-tag { margin-bottom: 24px; }
.section-tag span {
  display: inline-block;
  font-size: 11.5px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(94, 234, 212, 0.25); border-radius: 100px;
  padding: 8px 18px;
}
.section-tag--center { text-align: center; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 600; letter-spacing: -0.03em; line-height: 1.08;
  margin-bottom: 24px;
}
.section-sub { color: var(--ink-dim); max-width: 560px; font-size: 17px; }

/* Reveal animation */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.in { opacity: 1; transform: translateY(0); }

.split-reveal .word {
  display: inline-block; overflow: hidden; vertical-align: top;
}
.split-reveal .word > span {
  display: inline-block; transform: translateY(110%);
  transition: transform 0.8s var(--ease-out);
}
.split-reveal.in .word > span { transform: translateY(0); }

/* ==========================================================================
   MANIFESTO
   ========================================================================== */
.manifesto { padding: clamp(110px, 14vw, 190px) 0 clamp(70px, 9vw, 120px); }
.manifesto__text {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.6vw, 48px);
  font-weight: 500; line-height: 1.28; letter-spacing: -0.02em;
  max-width: 1080px; margin-bottom: 56px;
}
.manifesto__row {
  display: flex; gap: 48px; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap;
}
.manifesto__aside { max-width: 520px; color: var(--ink-dim); }

/* ==========================================================================
   STATS
   ========================================================================== */
.stats { padding: clamp(50px, 7vw, 90px) 0; border-top: 1px solid var(--line); }
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 84px); font-weight: 300;
  letter-spacing: -0.04em; color: var(--accent);
  line-height: 1; margin-bottom: 14px;
  font-variant-numeric: tabular-nums;
}
.stat__label { color: var(--ink-dim); font-size: 14.5px; max-width: 240px; }
@media (max-width: 900px) { .stats__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .stats__grid { grid-template-columns: 1fr; gap: 32px; } }

/* ==========================================================================
   SERVICES — stacking cards
   ========================================================================== */
.services { padding: clamp(110px, 14vw, 180px) 0 0; }
.services__stack { margin-top: clamp(50px, 7vw, 90px); }
.service-card {
  position: sticky;
  top: 90px;
  background: var(--bg-card);
  border-top: 1px solid var(--line);
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -30px 60px rgba(0, 0, 0, 0.45);
}
.service-card:nth-child(2) { background: #11161b; }
.service-card:nth-child(3) { background: #12181e; }
.service-card:nth-child(4) { background: #131a21; }
.service-card__inner {
  display: grid; grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(32px, 5vw, 80px);
  padding-top: clamp(56px, 7vw, 96px);
  padding-bottom: clamp(56px, 7vw, 96px);
  min-height: 70vh;
  align-items: center;
}
.service-card__num {
  font-family: var(--font-display); font-size: 15px; font-weight: 600;
  color: var(--accent); letter-spacing: 0.2em;
  display: inline-block; margin-bottom: 22px;
  padding: 8px 16px; border: 1px solid rgba(94, 234, 212, 0.3); border-radius: 100px;
}
.service-card__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.2vw, 56px); font-weight: 600;
  letter-spacing: -0.03em; line-height: 1.06; margin-bottom: 24px;
}
.service-card__desc { color: var(--ink-dim); max-width: 560px; margin-bottom: 28px; font-size: 16.5px; }
.service-card__list { list-style: none; margin-bottom: 36px; }
.service-card__list li {
  position: relative; padding: 11px 0 11px 30px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-dim); font-size: 15px;
}
.service-card__list li::before {
  content: "✦"; position: absolute; left: 2px; color: var(--accent); font-size: 11px;
  top: 14px;
}
.service-card__visual { display: flex; align-items: center; justify-content: center; }
.service-svg { width: min(380px, 100%); height: auto; }
.svg-node { fill: rgba(242, 244, 243, 0.75); }
.svg-node--core { fill: var(--accent); filter: drop-shadow(0 0 14px rgba(94, 234, 212, 0.55)); }
.svg-link { stroke: rgba(242, 244, 243, 0.18); stroke-width: 1.5; }
.svg-label {
  fill: rgba(242, 244, 243, 0.55); font-family: var(--font-display); font-size: 15px;
  letter-spacing: 0.06em;
}
.svg-block { fill: rgba(242, 244, 243, 0.05); stroke: rgba(242, 244, 243, 0.2); }
.svg-block--accent { fill: rgba(94, 234, 212, 0.12); stroke: var(--accent); }

@media (max-width: 900px) {
  .service-card { position: relative; top: 0; border-radius: 20px; margin-bottom: 18px; }
  .service-card__inner { grid-template-columns: 1fr; min-height: 0; }
  .service-card__visual { order: -1; }
  .service-svg { width: min(260px, 70%); }
}

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.cta-band {
  position: relative;
  padding: clamp(90px, 12vw, 150px) 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 120%, rgba(20, 184, 166, 0.16), transparent 65%),
    var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.cta-band__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.4vw, 56px); font-weight: 600;
  letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 18px;
}
.cta-band__sub { color: var(--ink-dim); max-width: 600px; margin: 0 auto 40px; font-size: 17px; }
.cta-band__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   PROCESS
   ========================================================================== */
.process { padding: clamp(110px, 14vw, 180px) 0; }
.process__timeline { position: relative; margin-top: clamp(50px, 7vw, 80px); padding-left: 36px; }
.process__line {
  position: absolute; left: 17px; top: 0; bottom: 0; width: 2px;
  background: var(--line);
}
.process__line::after {
  content: ""; position: absolute; left: 0; top: 0; width: 100%;
  height: var(--progress, 0%);
  background: linear-gradient(to bottom, var(--accent-deep), var(--accent));
  transition: height 0.1s linear;
}
.process-step {
  position: relative; display: flex; gap: 28px;
  padding: 30px 0;
}
.process-step__marker {
  position: absolute; left: -36px; top: 32px;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--bg); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
  color: var(--accent);
  transform: translateX(-50%);
  z-index: 1;
}
.process-step__body { padding-left: 28px; max-width: 640px; }
.process-step__body h4 {
  font-family: var(--font-display); font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 600; letter-spacing: -0.01em; margin-bottom: 10px;
}
.process-step__body p { color: var(--ink-dim); font-size: 15.5px; }
.process__cta { margin-top: 48px; padding-left: 36px; }

/* ==========================================================================
   COVERAGE
   ========================================================================== */
.coverage {
  padding: clamp(110px, 14vw, 180px) 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.coverage__grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 100px); align-items: center;
}
.coverage__text p { color: var(--ink-dim); max-width: 540px; margin-bottom: 36px; }
.coverage__cities {
  list-style: none; display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 40px; max-width: 560px;
}
.coverage__cities li {
  font-family: var(--font-display); font-size: 13.5px;
  padding: 9px 18px; border: 1px solid var(--line); border-radius: 100px;
  color: var(--ink-dim);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.coverage__cities li:hover {
  border-color: var(--accent); color: var(--accent);
  background: rgba(94, 234, 212, 0.05);
}
.coverage__map { display: flex; justify-content: center; }
.florida-svg { width: min(380px, 90%); height: auto; }
.florida-shape {
  fill: rgba(94, 234, 212, 0.04);
  stroke: rgba(94, 234, 212, 0.35); stroke-width: 1.5;
  stroke-linejoin: round;
}
.map-dot { fill: rgba(242, 244, 243, 0.8); }
.map-dot--hq { fill: var(--accent); filter: drop-shadow(0 0 10px rgba(94, 234, 212, 0.7)); }
.map-pulse {
  fill: none; stroke: var(--accent); stroke-width: 1;
  animation: map-pulse 2.4s var(--ease-out) infinite;
  transform-origin: 150px 208px;
}
@keyframes map-pulse {
  0% { transform: scale(0.5); opacity: 0.9; }
  100% { transform: scale(2.2); opacity: 0; }
}
.map-label {
  fill: var(--ink); font-family: var(--font-display); font-size: 13px; font-weight: 600;
  letter-spacing: 0.04em;
}
.map-label--dim { fill: var(--ink-faint); font-weight: 400; font-size: 12px; }
.map-link {
  stroke: rgba(94, 234, 212, 0.25); stroke-width: 1; stroke-dasharray: 3 5;
}
@media (max-width: 900px) {
  .coverage__grid { grid-template-columns: 1fr; }
  .coverage__map { order: -1; }
}

/* ==========================================================================
   WHY
   ========================================================================== */
.why { padding: clamp(110px, 14vw, 180px) 0; }
.why__grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px; margin-top: clamp(40px, 6vw, 70px);
}
.why-card {
  border: 1px solid var(--line); border-radius: 22px;
  padding: clamp(28px, 4vw, 44px);
  background: var(--bg-card);
  transition: border-color 0.4s, transform 0.4s var(--ease-out), box-shadow 0.4s;
}
.why-card:hover {
  border-color: rgba(94, 234, 212, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}
.why-card__icon { color: var(--accent); font-size: 13px; margin-bottom: 20px; }
.why-card h4 {
  font-family: var(--font-display); font-size: clamp(19px, 2.2vw, 24px);
  font-weight: 600; margin-bottom: 12px; letter-spacing: -0.01em;
}
.why-card p { color: var(--ink-dim); font-size: 15px; }
@media (max-width: 760px) { .why__grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq {
  padding: clamp(110px, 14vw, 180px) 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
}
.faq__grid {
  display: grid; grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(40px, 6vw, 100px); align-items: start;
}
.faq__intro { position: sticky; top: 120px; }
.faq__intro p { color: var(--ink-dim); margin-bottom: 28px; max-width: 320px; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  cursor: pointer; list-style: none;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(16px, 1.9vw, 20px);
  padding: 26px 44px 26px 0;
  position: relative;
  transition: color 0.3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 4px; top: 50%;
  transform: translateY(-50%);
  font-size: 24px; font-weight: 300; color: var(--accent);
  transition: transform 0.35s var(--ease-out);
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item summary:hover { color: var(--accent); }
.faq-item p {
  color: var(--ink-dim); padding: 0 0 26px; max-width: 640px; font-size: 15.5px;
}
@media (max-width: 900px) {
  .faq__grid { grid-template-columns: 1fr; }
  .faq__intro { position: static; }
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact {
  position: relative;
  padding: clamp(130px, 16vw, 220px) 0;
  text-align: center;
  overflow: hidden;
}
.contact__glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 55% at 50% 50%, rgba(20, 184, 166, 0.14), transparent 65%),
    radial-gradient(ellipse 35% 30% at 80% 80%, rgba(251, 191, 119, 0.06), transparent 60%);
}
.contact__inner { position: relative; z-index: 1; }
.contact__title {
  font-family: var(--font-display);
  font-size: clamp(44px, 7.5vw, 104px);
  font-weight: 600; letter-spacing: -0.035em; line-height: 1.04;
  margin-bottom: 28px;
}
.contact__sub {
  color: var(--ink-dim); max-width: 580px; margin: 0 auto 48px; font-size: 17.5px;
}
.contact__actions {
  display: flex; gap: 18px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 72px;
}
.contact__details {
  display: flex; justify-content: center; gap: clamp(32px, 6vw, 90px);
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 44px;
  max-width: 900px; margin: 0 auto;
}
.contact__detail { display: flex; flex-direction: column; gap: 6px; text-align: center; }
.contact__detail-label {
  font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--ink-faint);
}
.contact__detail a, .contact__detail span:not(.contact__detail-label) {
  color: var(--ink); text-decoration: none; font-family: var(--font-display);
  font-size: 15.5px;
}
.contact__detail a:hover { color: var(--accent); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { border-top: 1px solid var(--line); background: var(--bg-soft); }
.footer__inner {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px; padding-top: 64px; padding-bottom: 48px;
}
.footer__logo { display: inline-flex; align-items: center; gap: 12px; }
.footer__logo img { filter: drop-shadow(0 0 12px rgba(94, 234, 212, 0.3)); }
.footer__brand p { color: var(--ink-faint); font-size: 14px; margin-top: 14px; }
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__links a {
  color: var(--ink-dim); text-decoration: none; font-size: 14.5px;
  font-family: var(--font-display); transition: color 0.3s; width: fit-content;
}
.footer__links a:hover { color: var(--accent); }
.footer__cta { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.footer__cta > a:not(.btn) {
  color: var(--ink-dim); text-decoration: none; font-family: var(--font-display);
  font-size: 15px;
}
.footer__cta > a:not(.btn):hover { color: var(--accent); }
.footer__base {
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 24px; padding-bottom: 28px;
  color: var(--ink-faint); font-size: 12.5px; letter-spacing: 0.04em;
}
@media (max-width: 760px) {
  .footer__inner { grid-template-columns: 1fr; }
}

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .split-reveal .word > span { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
