/* ============================================================
   SignalMatrix AI — Product vertical page
   Built from the Product.dc.html design export. Foundations
   (colors, type, spacing tokens) come from colors-and-type.css —
   this file only adds page-specific layout and components.

   Accent: Amber/Gold (--amber) is used for all eyebrows, glow
   borders, step indicators, and hover states on this page.
   Pillar colors (green/cyan/purple) appear ONLY in the Pillar
   Cards ("Our Solutions") section — everywhere else uses amber.
   ============================================================ */

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

html { scroll-behavior: smooth; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--navy-900);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
input, textarea, select { font-family: inherit; }
ul, ol { margin: 0; }
i[data-lucide] { display: inline-flex; }
::selection { background: rgba(245,181,68,0.25); }
input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.34); }
select option { background: var(--navy-800); color: #fff; }

@keyframes smGlowPulse { 0%, 100% { opacity: 0.55; } 50% { opacity: 0.85; } }
@keyframes diagram-flow { to { stroke-dashoffset: 0; } }

.shell {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
}
.shell--narrow { max-width: 880px; }

/* ---- shared eyebrow ---- */
.eyebrow {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.eyebrow__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
}
.eyebrow__rule { width: 48px; height: 2px; background: var(--amber); }

/* ---- shared section ---- */
.section { padding: 96px 0; }
.section--alt {
  background: rgba(18, 24, 41, 0.4);
  border-top: 1px solid var(--stroke-3);
  border-bottom: 1px solid var(--stroke-3);
}

.section__heading {
  font-size: 40px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin: 0 0 48px;
  text-wrap: balance;
}
.section__heading--narrow { max-width: 760px; }
.section__heading--wide { max-width: 820px; }

/* ---- buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 16px;
  font-weight: 600;
  padding: 15px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: filter 200ms var(--ease-out), transform 200ms var(--ease-out), border-color 200ms var(--ease-out), color 200ms var(--ease-out), background 200ms var(--ease-out);
  white-space: nowrap;
}
.btn i[data-lucide] { width: 17px; height: 17px; }
.btn--primary { background: var(--brand-green); color: #001F11; }
.btn--primary:hover { filter: brightness(1.10); transform: translateY(-2px); }
.btn--secondary {
  background: transparent;
  color: var(--fg);
  border: 1.5px solid var(--stroke-2);
}
.btn--secondary:hover { border-color: var(--amber); color: var(--amber); }
.btn--block { width: 100%; }
.btn--lg { padding: 15px 26px; }
.btn--nav { padding: 11px 18px; font-size: 14px; }
.btn--nav i[data-lucide] { width: 15px; height: 15px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 15, 30, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--stroke-3);
}
.nav__row {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo { display: flex; align-items: center; flex-shrink: 0; }
.nav__logo img { display: block; height: 28px; width: auto; }
.nav__right { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.nav__links { list-style: none; padding: 0; margin: 0; display: flex; align-items: center; gap: 30px; }
.nav__link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}
.nav__link i[data-lucide] { width: 14px; height: 14px; }
.nav__link:hover { color: #fff; }
.nav__link--trigger { cursor: pointer; }

.nav__item { position: relative; height: 72px; display: flex; align-items: center; }
.nav__dropdown {
  position: absolute; top: 62px; left: 50%; transform: translateX(-50%);
  width: 230px;
  background: var(--navy-800);
  border: 1px solid var(--stroke-2);
  border-radius: 12px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 0 32px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-4px);
  transition: opacity 150ms var(--ease-out), transform 150ms var(--ease-out), visibility 150ms;
}
.nav__item:hover .nav__dropdown,
.nav__item.is-open .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown-link {
  display: flex; align-items: center;
  padding: 10px 12px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px; font-weight: 500;
}
.nav__dropdown-link:hover { background: rgba(255, 255, 255, 0.06); color: #fff; }
.nav__dropdown-link--active {
  color: var(--amber);
  font-weight: 600;
  background: var(--amber-tint);
}
.nav__dropdown-link--active:hover { background: var(--amber-tint); color: var(--amber); }
.nav__dropdown-dot {
  margin-left: auto; width: 6px; height: 6px; border-radius: 99px;
  background: var(--amber); box-shadow: 0 0 8px var(--amber);
}

.nav__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: none;
  border: 1px solid var(--stroke-2);
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  flex: none;
}
.nav__toggle-icon { width: 20px; height: 20px; }
.nav__toggle-icon--close { display: none; }
.nav__toggle[aria-expanded="true"] .nav__toggle-icon--open { display: none; }
.nav__toggle[aria-expanded="true"] .nav__toggle-icon--close { display: block; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; }
.page-grain::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
  z-index: 0;
}
.hero__glow {
  position: absolute; top: -180px; right: -120px;
  width: 680px; height: 680px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 181, 68, 0.20) 0%, rgba(245, 181, 68, 0.06) 38%, transparent 68%);
  filter: blur(10px);
  pointer-events: none;
  animation: smGlowPulse 6s ease-in-out infinite;
  z-index: 0;
}
.hero__glow-2 {
  position: absolute; bottom: -260px; left: -160px;
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.08) 0%, transparent 66%);
  pointer-events: none;
  z-index: 0;
}
.hero__grid {
  position: relative; z-index: 1;
  padding-top: 56px;
  padding-bottom: 72px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 48px;
  align-items: center;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0;
  color: var(--fg);
  text-wrap: balance;
}
.accent-text { color: var(--brand-green); }
.hero__subhead {
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--fg-mute);
  margin: 28px 0 0;
  max-width: 680px;
  text-wrap: pretty;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; }
.hero__diagram {
  width: 100%;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__diagram svg { width: 100%; max-width: 680px; height: auto; display: block; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  border-top: 1px solid var(--stroke-3);
  border-bottom: 1px solid var(--stroke-3);
  background: rgba(18, 24, 41, 0.4);
  overflow: hidden;
}
.trust-bar__marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.trust-bar__track {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  width: max-content;
  padding: 22px 0;
  animation: trust-bar-scroll 30s linear infinite;
  will-change: transform;
}
.trust-bar__marquee:hover .trust-bar__track { animation-play-state: paused; }
@keyframes trust-bar-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(var(--marquee-distance, -50%)); }
}
@media (prefers-reduced-motion: reduce) {
  .trust-bar__track { animation: none; }
}
.trust-bar__item {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0 14px;
  font-size: 13px; font-weight: 500;
  color: var(--fg-dim);
  white-space: nowrap;
  letter-spacing: 0.01em;
  flex-shrink: 0;
}
.trust-bar__item i[data-lucide] { width: 15px; height: 15px; color: var(--amber); flex-shrink: 0; }

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.problem-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.problem-card {
  background: var(--navy-800);
  border: 1.5px solid rgba(245, 181, 68, 0.45);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 0 32px rgba(245, 181, 68, 0.12);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.problem-card__stat {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--amber);
}
.problem-card__line { font-size: 16px; line-height: 1.5; color: var(--fg); margin: 0; }
.problem-card__source {
  font-size: 12px; line-height: 1.5; color: var(--fg-dim);
  margin-top: auto; padding-top: 8px;
  font-family: var(--font-mono);
}

/* ============================================================
   SPECIALTY CARDS
   ============================================================ */
.specialty-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.specialty-card {
  background: var(--navy-800);
  border: 1px solid var(--stroke-1);
  border-radius: 12px;
  padding: 30px;
  display: flex; flex-direction: column; gap: 16px;
  transition: border-color 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
}
.specialty-card:hover { border-color: rgba(245, 181, 68, 0.5); box-shadow: 0 0 32px rgba(245, 181, 68, 0.14); }
.specialty-card__icon {
  width: 46px; height: 46px; border-radius: 10px;
  background: var(--amber-tint);
  display: flex; align-items: center; justify-content: center;
}
.specialty-card__icon i[data-lucide] { width: 22px; height: 22px; color: var(--amber); }
.specialty-card__title { font-size: 19px; font-weight: 700; letter-spacing: -0.01em; color: var(--fg); margin: 0; }
.specialty-card__body { font-size: 14px; line-height: 1.55; color: var(--fg-mute); margin: 0; }

/* ============================================================
   PROCESS (How It Works)
   ============================================================ */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.process-step { display: flex; flex-direction: column; gap: 16px; }
.process-step__top { display: flex; align-items: center; gap: 14px; }
.process-step__num {
  width: 46px; height: 46px; border-radius: 10px;
  border: 1.5px solid rgba(245, 181, 68, 0.5);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 18px; font-weight: 800;
  color: var(--amber);
  flex-shrink: 0;
}
.process-step__rule { flex: 1; height: 1px; background: linear-gradient(90deg, rgba(245, 181, 68, 0.4), transparent); }
.process-step__title { font-size: 18px; font-weight: 700; letter-spacing: -0.01em; color: var(--fg); margin: 0; }
.process-step__body { font-size: 14px; line-height: 1.55; color: var(--fg-mute); margin: 0; }
.process-cta { margin-top: 48px; }

/* ============================================================
   PILLAR CARDS (Our Solutions) — pillar colors live here only
   ============================================================ */
.pillar-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.pillar-card {
  background: var(--navy-800);
  border-radius: 12px;
  padding: 32px;
  display: flex; flex-direction: column; gap: 16px;
}
.pillar-card--aeo { border: 1.5px solid var(--pillar-aeo); box-shadow: 0 0 32px var(--pillar-aeo-glow); }
.pillar-card--automation { border: 1.5px solid var(--pillar-automation); box-shadow: 0 0 32px var(--pillar-automation-glow); }
.pillar-card--crm { border: 1.5px solid var(--pillar-crm); box-shadow: 0 0 32px var(--pillar-crm-glow); }
.pillar-card__icon { width: 46px; height: 46px; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.pillar-card--aeo .pillar-card__icon { background: var(--pillar-aeo-tint); }
.pillar-card--automation .pillar-card__icon { background: var(--pillar-automation-tint); }
.pillar-card--crm .pillar-card__icon { background: var(--pillar-crm-tint); }
.pillar-card--aeo .pillar-card__icon i { color: var(--pillar-aeo); }
.pillar-card--automation .pillar-card__icon i { color: var(--pillar-automation); }
.pillar-card--crm .pillar-card__icon i { color: var(--pillar-crm); }
.pillar-card__icon i[data-lucide] { width: 22px; height: 22px; }
.pillar-card__title { font-size: 21px; font-weight: 700; letter-spacing: -0.01em; color: var(--fg); margin: 0; }
.pillar-card__body { font-size: 15px; line-height: 1.55; color: var(--fg-mute); margin: 0; }
.pillar-card__link { display: inline-flex; align-items: center; gap: 7px; margin-top: auto; padding-top: 8px; font-size: 14px; font-weight: 600; }
.pillar-card--aeo .pillar-card__link { color: var(--pillar-aeo); }
.pillar-card--automation .pillar-card__link { color: var(--pillar-automation); }
.pillar-card--crm .pillar-card__link { color: var(--pillar-crm); }

/* ============================================================
   PROMISE CARDS
   ============================================================ */
.promise-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.promise-card {
  background: var(--navy-800);
  border: 1px solid var(--stroke-1);
  border-radius: 12px;
  padding: 32px;
  display: flex; flex-direction: column; gap: 16px;
}
.promise-card__icon {
  width: 46px; height: 46px; border-radius: 10px;
  background: var(--amber-tint);
  display: flex; align-items: center; justify-content: center;
}
.promise-card__icon i[data-lucide] { width: 22px; height: 22px; color: var(--amber); }
.promise-card__title { font-size: 20px; font-weight: 700; letter-spacing: -0.01em; color: var(--fg); margin: 0; }
.promise-card__body { font-size: 15px; line-height: 1.55; color: var(--fg-mute); margin: 0; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--navy-800); border: 1px solid var(--stroke-1); border-radius: 12px; overflow: hidden; }
.faq-item__question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 26px;
  cursor: pointer;
  text-align: left;
}
.faq-item__q { font-size: 17px; font-weight: 600; color: var(--fg); letter-spacing: -0.01em; }
.faq-item__icon { display: inline-flex; flex-shrink: 0; color: var(--amber); }
.faq-item__icon i[data-lucide] { width: 20px; height: 20px; }
.faq-item__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 250ms var(--ease-out);
}
.faq-item__answer > p {
  overflow: hidden; min-height: 0;
  padding: 0 26px 0;
  font-size: 15px; line-height: 1.6; color: var(--fg-mute); margin: 0;
  max-width: 720px;
}
.faq-item.is-open .faq-item__answer { grid-template-rows: 1fr; }
.faq-item.is-open .faq-item__answer > p { padding-bottom: 24px; }

/* ============================================================
   PRICING
   ============================================================ */
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; align-items: stretch; }
.price-card {
  background: var(--navy-800);
  border: 1px solid var(--stroke-1);
  border-radius: 12px;
  padding: 30px;
  display: flex; flex-direction: column; gap: 18px;
}
.price-card--featured {
  border: 1.5px solid var(--brand-green);
  box-shadow: 0 0 32px rgba(0, 255, 136, 0.18);
  position: relative;
}
.price-card__badge {
  position: absolute; top: -12px; left: 30px;
  background: var(--brand-green); color: #001F11;
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 4px;
}
.price-card__tier { font-size: 13px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--fg-dim); }
.price-card__tier--accent { color: var(--brand-green); }
.price-card__amount {
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: 40px; font-weight: 800; letter-spacing: -0.03em;
  color: var(--fg);
}
.price-card__amount span { font-size: 15px; font-weight: 500; color: var(--fg-dim); letter-spacing: 0; }
.price-card__scope { margin-top: 6px; font-size: 13px; font-weight: 600; color: var(--amber); }
.price-card__scope--accent { color: var(--brand-green); }
.price-card__divider { height: 1px; background: var(--stroke-1); }
.price-card__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.price-card__list li { display: flex; gap: 9px; font-size: 14px; color: var(--fg-mute); line-height: 1.4; }
.price-card__list i[data-lucide] { width: 16px; height: 16px; color: var(--amber); flex-shrink: 0; margin-top: 2px; }
.price-card__list--accent i[data-lucide] { color: var(--brand-green); }
.price-card .btn { margin-top: auto; }
.price-footnote { font-size: 13px; color: var(--fg-dim); margin: 28px 0 0; }

/* ============================================================
   FREE AUDIT BANNER
   ============================================================ */
.section--audit { padding: 0 0 96px; }
.audit-card {
  position: relative; overflow: hidden;
  border-radius: 16px;
  border: 1.5px solid rgba(245, 181, 68, 0.45);
  background: var(--navy-800);
  box-shadow: 0 0 48px rgba(245, 181, 68, 0.16);
  padding: 64px 56px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.audit-card__glow {
  position: absolute; top: -140px; right: -80px;
  width: 440px; height: 440px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 181, 68, 0.22) 0%, transparent 68%);
  pointer-events: none;
}
.audit-card__left { position: relative; max-width: 640px; }
.audit-card__heading { font-size: 36px; line-height: 1.15; font-weight: 700; letter-spacing: -0.02em; margin: 0; color: var(--fg); text-wrap: balance; }
.audit-card__body { font-size: 17px; line-height: 1.55; color: var(--fg-mute); margin: 16px 0 0; }
.audit-card__right { position: relative; display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.audit-card__phone { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--fg-dim); }
.audit-card__phone i[data-lucide] { width: 15px; height: 15px; color: var(--amber); }
.audit-card__phone a { color: var(--fg); font-weight: 600; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 48px; align-items: start; }
.contact-form { background: var(--navy-800); border: 1px solid var(--stroke-1); border-radius: 12px; padding: 36px; }
.contact-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; font-size: 13px; font-weight: 600; color: var(--fg-mute); }
.field--full { grid-column: 1 / -1; }
.field input, .field select, .field textarea {
  background: var(--navy-600);
  border: 1px solid var(--stroke-2);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--fg);
  font-size: 15px;
  font-family: inherit;
  outline: none;
}
.field select { appearance: none; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--amber); }
.contact-form__submit { margin-top: 6px; }
.contact-form__success { display: none; flex-direction: column; align-items: center; text-align: center; gap: 16px; padding: 40px 0; }
.contact-form__success.is-visible { display: flex; }
.contact-form.is-submitted .contact-form__form { display: none; }
.contact-form__success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(0, 255, 136, 0.12);
  display: flex; align-items: center; justify-content: center;
}
.contact-form__success-icon i[data-lucide] { width: 30px; height: 30px; color: var(--brand-green); }
.contact-form__success h3 { font-size: 24px; font-weight: 700; color: var(--fg); margin: 0; }
.contact-form__success p { font-size: 15px; color: var(--fg-mute); margin: 0; max-width: 360px; }

.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-info__card {
  display: flex; align-items: center; gap: 16px;
  background: var(--navy-800);
  border: 1px solid var(--stroke-1);
  border-radius: 12px;
  padding: 22px 24px;
}
.contact-info__icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--amber-tint);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info__icon i[data-lucide] { width: 20px; height: 20px; color: var(--amber); }
.contact-info__label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--fg-dim); font-weight: 600; }
.contact-info__value { font-size: 16px; color: var(--fg); font-weight: 600; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: linear-gradient(180deg, rgba(0, 255, 136, 0.08) 0%, var(--navy-900) 120px);
}
.footer .shell { padding-top: 72px; padding-bottom: 36px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.6fr; gap: 40px; }
.footer__logo { font-family: var(--font-display); font-size: 18px; font-weight: 800; color: var(--fg); letter-spacing: -0.01em; }
.footer__logo-accent { color: var(--brand-green); }
.footer__tagline { font-size: 14px; line-height: 1.6; color: var(--fg-mute); margin: 16px 0 0; max-width: 280px; }
.footer__contact { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.footer__contact a { font-size: 13px; color: var(--fg-mute); font-family: var(--font-mono); }
.footer__contact a:hover { color: var(--fg); }
.footer__social { display: flex; gap: 10px; margin-top: 20px; }
.footer__social-link {
  width: 36px; height: 36px; border-radius: 8px;
  border: 1px solid var(--stroke-2);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 200ms;
}
.footer__social-link:hover { border-color: rgba(255, 255, 255, 0.3); }
.footer__social-link i[data-lucide] { width: 16px; height: 16px; color: var(--fg-mute); }
.footer__x { color: var(--fg-mute); font-size: 16px; font-weight: 700; line-height: 1; }

.footer__col-title { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brand-green); margin-bottom: 16px; }
.footer__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.footer__list a { color: var(--fg-mute); font-size: 14px; }
.footer__list a:hover { color: var(--fg); }
.footer__list a.is-active { color: var(--amber); font-weight: 600; }

.footer__cta-title { font-size: 18px; font-weight: 700; color: var(--fg); margin-bottom: 12px; }
.footer__cta-body { font-size: 14px; line-height: 1.6; color: var(--fg-mute); margin: 0 0 20px; }
.footer__cta-btn { padding: 13px 22px; font-size: 14px; }

.footer__bottom {
  margin-top: 48px; padding-top: 24px;
  border-top: 1px solid var(--stroke-3);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer__badges { display: flex; gap: 16px; flex-wrap: wrap; }
.footer__badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; color: var(--fg-mute);
  border: 1px solid var(--stroke-2);
  border-radius: 99px;
  padding: 6px 14px;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.footer__badge i[data-lucide] { width: 13px; height: 13px; color: var(--brand-green); flex-shrink: 0; }
.footer__legal { font-size: 12px; color: rgba(255, 255, 255, 0.45); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.footer__legal-sep { color: rgba(255, 255, 255, 0.25); }
.footer__legal a { color: var(--fg-mute); }
.footer__legal a:hover { color: var(--fg); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .nav__toggle { display: inline-flex; }
  .nav__right {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    background: var(--navy-900, #0A0F1E);
    border-bottom: 1px solid var(--stroke-1);
    padding: 20px 24px 28px;
    max-height: calc(100vh - 100%);
    overflow-y: auto;
    margin-left: 0;
  }
  .nav__right.is-open { display: flex; }
  .nav__links { display: flex; flex-direction: column; align-items: stretch; gap: 4px; width: 100%; }
  .nav__link { width: 100%; justify-content: space-between; padding: 12px 4px; }
  .nav__item { width: 100%; height: auto; flex-wrap: wrap; }
  .nav__dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    width: 100%;
    flex: 1 1 100%;
    background: transparent;
    border: 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    padding: 0 0 0 12px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 200ms ease;
  }
  .nav__item:hover .nav__dropdown,
  .nav__item.is-open .nav__dropdown {
    transform: none;
    max-height: 300px;
    padding: 4px 0 8px 12px;
  }
  .btn--nav { width: 100%; justify-content: center; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px 40px; }
  .footer__brand, .footer__cta-col { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .nav__row { gap: 12px; }
  .nav__logo img { height: 28px; }
  .btn--nav { padding: 9px 12px; font-size: 12.5px; gap: 6px; }
  .btn--nav i[data-lucide] { width: 13px; height: 13px; }
}

@media (max-width: 680px) {
  .hero__grid { padding-top: 28px; padding-bottom: 40px; gap: 8px; }
  .hero__title { font-size: clamp(28px, 7vw, 38px); }
  .hero__diagram { min-height: 0; margin-top: -32px; }
  .section { padding: 64px 0; }
  .section__heading { font-size: 30px; }
  .audit-card { padding: 40px 28px; }
  .audit-card__left { max-width: 100%; }
  .contact-form__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
}
