/* ======================================================
   ECOMARIX — Shared Design System
   Premium, modern, and consistent across every page.
   ====================================================== */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@500;600&display=swap');

:root {
  --brand-gold: #f7bc00;
  --brand-gold-deep: #c9920a;
  --brand-charcoal: #111111;
  --brand-charcoal-soft: #1e1a15;
  --brand-paper: #fcfbf8;
  --brand-paper-soft: #f4efe4;
  --brand-glow: rgba(247, 188, 0, 0.14);
  --gold: var(--brand-gold);
  --gold-deep: var(--brand-gold-deep);
  --gold-pale: rgba(247, 188, 0, 0.12);
  --night: #15130d;
  --night-2: #1f1b12;
  --ink: #111111;
  --paper: #fcfbf8;
  --paper-2: #f4efe4;
  --graphite: #504b41;
  --line: rgba(17, 17, 17, 0.08);
  --line-dark: rgba(17, 17, 17, 0.16);
  --white: #ffffff;

  --display: 'Space Grotesk', sans-serif;
  --body: 'Inter', sans-serif;
  --mono: 'JetBrains Mono', monospace;

  --cut: 18px;
  --cut-sm: 10px;
  --container: 1180px;
  --ease: cubic-bezier(.16, .84, .44, 1);
  --radius-xl: 28px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow-soft: 0 18px 45px rgba(17, 17, 17, 0.05);
  --shadow-strong: 0 30px 70px rgba(17, 17, 17, 0.12);
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-y: auto;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes driftGlow {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(20px, -12px, 0) scale(1.04); }
  100% { transform: translate3d(-12px, 10px, 0) scale(0.96); }
}

@keyframes sectionPulse {
  0% { opacity: 0.22; transform: translate3d(0, 0, 0); }
  100% { opacity: 0.36; transform: translate3d(10px, -10px, 0); }
}

@keyframes shimmer {
  0% { transform: translateX(-140%); }
  100% { transform: translateX(180%); }
}
body {
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior-y: auto;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  font-family: var(--body);
  color: #000000;
  line-height: 1.65;
  background: linear-gradient(135deg, #fcfbf8 0%, #f8f2e8 100%);
  background-image:
    radial-gradient(circle at 12% 18%, rgba(247, 188, 0, 0.16) 0%, transparent 24%),
    radial-gradient(circle at 88% 12%, rgba(17, 17, 17, 0.05) 0%, transparent 18%),
    radial-gradient(circle at 80% 88%, rgba(247, 188, 0, 0.08) 0%, transparent 22%);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.3) 45%, transparent 100%);
  mix-blend-mode: screen;
  opacity: 0.4;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--display); margin: 0; line-height: 1.08; letter-spacing: -0.01em; }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }

::selection { background: rgba(247, 188, 0, 0.28); color: var(--ink); }
:focus-visible { outline: 3px solid var(--gold-deep); outline-offset: 3px; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }

.eyebrow {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-deep), transparent);
  display: inline-block;
}

.facet {
  clip-path: polygon(
    var(--cut) 0%, 100% 0%, 100% calc(100% - var(--cut)),
    calc(100% - var(--cut)) 100%, 0% 100%, 0% var(--cut)
  );
}
.facet-sm {
  clip-path: polygon(
    var(--cut-sm) 0%, 100% 0%, 100% calc(100% - var(--cut-sm)),
    calc(100% - var(--cut-sm)) 100%, 0% 100%, 0% var(--cut-sm)
  );
}
.facet-corner { position: relative; }
.facet-corner::before, .facet-corner::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  pointer-events: none;
}
.facet-corner::before { top: -1px; left: -1px; border-top: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.facet-corner::after { bottom: -1px; right: -1px; border-bottom: 2px solid var(--gold); border-right: 2px solid var(--gold); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 16px 28px;
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s ease, border-color .25s ease;
  clip-path: polygon(14px 0%, 100% 0%, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0% 100%, 0% 14px);
  white-space: nowrap;
  box-shadow: 0 10px 28px rgba(17, 17, 17, 0.08);
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.24) 45%, transparent 100%);
  transform: translateX(-140%);
  transition: transform .7s ease;
  z-index: -1;
}
.btn:hover { transform: translateY(-3px); }
.btn:hover::before { transform: translateX(180%); }
.btn-primary { background: var(--brand-gold); color: var(--brand-charcoal); }
.btn-primary:hover { background: var(--brand-gold-deep); color: var(--brand-charcoal); }
.btn-dark { background: var(--brand-charcoal); color: var(--brand-paper); }
.btn-dark:hover { background: var(--brand-charcoal-soft); color: var(--brand-paper); }
.btn-ghost { background: transparent; color: var(--brand-charcoal); border-color: var(--brand-charcoal); padding: 14.5px 26px; box-shadow: none; }
.btn-ghost:hover { background: var(--brand-charcoal); color: var(--brand-paper); }
.btn-ghost-light { background: #00000047; color: var(--paper); border-color: rgba(255,255,255,0.36); padding: 14.5px 26px; box-shadow: none; }
.btn-ghost-light:hover { background: #0c0c0c47; color: var(--brand-charcoal); border-color: var(--paper); }
.btn-arrow { transition: transform .3s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(4px); }
.btn-block { width: 100%; justify-content: center; }

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 36px rgba(18, 140, 126, 0.35);
  z-index: 1200;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 20px 42px rgba(18, 140, 126, 0.42);
}
.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  background: #ffffff;
  transition: background .35s ease, padding .35s ease, box-shadow .35s ease;
}
.nav.scrolled {
  background: #ffffff;
  backdrop-filter: blur(16px);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(17, 17, 17, 0.06);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo img { height: 34px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold-deep);
  transition: width .3s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold-deep); }
.nav-right { display: flex; align-items: center; gap: 22px; }
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 6px; z-index: 1100; }
.nav-burger span { width: 24px; height: 2px; background: var(--ink); transition: all .3s ease; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    inset: 0 0 0 30%;
    background: var(--ink);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
    gap: 26px;
    transform: translateX(100%);
    transition: transform .45s var(--ease);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { color: var(--paper); font-size: 18px; }
  .nav-links a.active { color: var(--gold); }
  .nav-burger { display: flex; }
  .nav-right .btn { padding: 11px 14px; font-size: 11.5px; }
  .nav-right .btn .btn-arrow { display: none; }
}
@media (max-width: 480px) {
  .nav-right .btn { display: none; }
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 128px 0 86px;
  overflow: visible;
  border-bottom: 1px solid rgba(247, 188, 0, 0.16);
  background:
    radial-gradient(circle at top left, rgba(247, 188, 0, 0.24) 0%, transparent 28%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.08) 0%, transparent 22%),
    linear-gradient(125deg, #0f0d0b 0%, #171512 50%, #221d16 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(247, 188, 0, 0.1) 0%, transparent 35%, rgba(255,255,255,0.04) 100%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: -8% -8% auto auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 188, 0, 0.16) 0%, transparent 72%);
  filter: blur(28px);
  pointer-events: none;
  animation: driftGlow 12s ease-in-out infinite alternate;
}
.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 48px;
  align-items: center;
  min-height: calc(100svh - 210px);
}
.hero-copy { max-width: 620px; }
.hero-copy h1 { font-size: clamp(42px, 5.4vw, 72px); font-weight: 700; color: var(--paper); animation: fadeUp .8s ease both; }
.hero-copy .hero-sub, .hero-copy .hero-actions, .hero-copy .hero-metrics { animation: fadeUp .95s ease both; }
.hero-copy .hero-sub { animation-delay: .1s; }
.hero-copy .hero-actions { animation-delay: .2s; }
.hero-copy .hero-metrics { animation-delay: .3s; }
.hero-copy h1 .stat {
  font-family: var(--mono);
  color: var(--brand-gold);
  text-shadow: 0 1px 0 rgba(255,255,255,0.16);
}
.hero-sub {
  margin-top: 22px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
}
.hero-actions { display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap; }
.hero-metrics { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.hero-metric {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(247, 188, 0, 0.22);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}
.hero-media-card {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-media-shell {
  position: relative;
  width: 100%;
  min-height: 520px;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(247, 188, 0, 0.24);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
  background: linear-gradient(135deg, #0f0d0b 0%, #1d180f 100%);
  transform: translateY(24px) scale(0.96);
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
  animation: floatCard 7s ease-in-out infinite;
}
.hero-media-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.04);
}
.hero-media-shell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.08) 0%, rgba(17, 17, 17, 0.7) 100%);
  pointer-events: none;
}
.hero-media-overlay {
  position: absolute;
  inset: auto 24px 24px 24px;
  z-index: 1;
  padding: 24px;
  border-radius: 22px;
  background: rgba(17, 17, 17, 0.8);
  backdrop-filter: blur(14px);
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.hero-overlay-kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.hero-media-overlay strong {
  display: block;
  font-size: 20px;
  line-height: 1.25;
  margin-bottom: 12px;
}
.hero-panel-list { display: grid; gap: 10px; }
.hero-panel-list li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.55;
}
.hero-panel-list li::before {
  content: '•';
  color: var(--gold);
  font-size: 16px;
  margin-top: 1px;
}
.hero-floating-badges {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.badge-chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--brand-charcoal);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 10px 26px rgba(17, 17, 17, 0.1);
}
.hero-scroll-hint {
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--graphite);
}
.hero[data-progress="0"] .hero-media-shell { transform: translateY(24px) scale(0.96); }
.hero[data-progress="1"] .hero-media-shell { transform: translateY(0) scale(1); }
.hero[data-progress="0"] .hero-copy { transform: translateY(24px); opacity: 0.92; }
.hero[data-progress="1"] .hero-copy { transform: translateY(0); opacity: 1; }
.hero-copy, .hero-media-shell { transition: transform 0.6s var(--ease), opacity 0.6s var(--ease); }

.visual-showcase {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(248,244,235,1) 100%);
  overflow: hidden;
}
.visual-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 25%, rgba(247, 188, 0, 0.16) 0%, transparent 22%),
    radial-gradient(circle at 85% 35%, rgba(17, 17, 17, 0.08) 0%, transparent 20%);
  pointer-events: none;
}
.showcase-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }
.showcase-copy h2 { font-size: clamp(34px, 4vw, 48px); margin-bottom: 22px; color: var(--brand-charcoal); }
.showcase-copy p { color: var(--graphite); font-size: 17px; margin-bottom: 28px; max-width: 620px; }
.showcase-features { display: grid; gap: 18px; margin-bottom: 36px; }
.showcase-features div { display: flex; gap: 16px; align-items: flex-start; }
.showcase-features span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--brand-charcoal);
  color: var(--brand-paper);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  clip-path: polygon(8px 0%, 100% 0%, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0% 100%, 0% 8px);
}
.showcase-features p { margin: 0; color: var(--graphite); line-height: 1.6; }
.showcase-panel { position: relative; }
.showcase-frame {
  position: relative;
  min-height: 400px;
  background: var(--brand-charcoal);
  border-radius: 28px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}
.showcase-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 20%, rgba(247, 188, 0, 0.2) 0%, transparent 35%);
  pointer-events: none;
}
.showcase-frame img { max-width: 70%; z-index: 1; filter: drop-shadow(0 12px 30px rgba(0,0,0,.25)); }
.showcase-badge {
  position: absolute;
  bottom: 22px;
  left: 22px;
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  background: rgba(255,255,255,0.92);
  color: var(--brand-charcoal);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  clip-path: polygon(8px 0%, 100% 0%, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0% 100%, 0% 8px);
}
@keyframes showcaseRise { 0% { transform: translateY(20px); opacity: 0; } 100% { transform: translateY(0); opacity: 1; } }
@keyframes fadeUp { 0% { opacity: 0; transform: translateY(18px); } 100% { opacity: 1; transform: translateY(0); } }
.showcase-copy, .showcase-panel { animation: showcaseRise .9s ease both; }

.about-spotlight {
  padding: 110px 0 90px;
}
.about-spotlight-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 42px;
  align-items: center;
}
.about-spotlight-copy h2 {
  font-size: clamp(32px, 3.6vw, 44px);
  margin-bottom: 20px;
  color: var(--brand-charcoal);
}
.about-spotlight-copy > p {
  color: var(--graphite);
  font-size: 17px;
  max-width: 620px;
  margin-bottom: 10px;
}
.about-spotlight-points {
  display: grid;
  gap: 16px;
  margin: 28px 0 30px;
}
.about-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-soft);
}
.about-point span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand-charcoal);
  color: var(--brand-paper);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.about-point strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
  color: var(--brand-charcoal);
}
.about-point p {
  color: var(--graphite);
  font-size: 14.5px;
  line-height: 1.6;
}
.about-spotlight-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.about-spotlight-media {
  display: grid;
  gap: 16px;
}
.about-media-card {
  position: relative;
  min-height: 420px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(247, 188, 0, 0.16);
}
.about-media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-media-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.06) 0%, rgba(17, 17, 17, 0.62) 100%);
  pointer-events: none;
}
.about-media-badge {
  position: absolute;
  z-index: 1;
  left: 22px;
  bottom: 22px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--brand-charcoal);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 26px rgba(17, 17, 17, 0.1);
}
.about-media-side {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.about-stat-card {
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(247, 188, 0, 0.16), rgba(255, 255, 255, 0.86));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.about-stat-card strong {
  display: block;
  font-size: 28px;
  color: var(--brand-charcoal);
  margin-bottom: 6px;
}
.about-stat-card span {
  color: var(--graphite);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--mono);
}

@media (max-width: 900px) {
  .about-spotlight-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .about-media-side {
    grid-template-columns: 1fr;
  }
  .about-spotlight-actions {
    flex-direction: column;
  }
}

.case-study-hero {
  padding-top: 150px;
  padding-bottom: 70px;
  background: linear-gradient(135deg, #111111 0%, #1e180e 60%, #0f0d09 100%);
  color: var(--paper);
}
.case-study-hero .page-intro {
  color: rgba(255,255,255,0.78);
  font-size: 18px;
  max-width: 690px;
  margin-top: 18px;
}
.case-study-overview {
  padding: 70px 0 30px;
}
.case-study-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: start;
}
.case-study-card, .case-study-metrics {
  background: rgba(255,255,255,0.84);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}
.case-study-card {
  padding: 28px;
}
.case-study-card h2, .case-study-card h3 {
  margin-bottom: 12px;
  color: var(--brand-charcoal);
}
.case-study-card p {
  color: var(--graphite);
  font-size: 16px;
}
.case-study-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 18px;
}
.metric-pill {
  padding: 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(247,188,0,0.16), rgba(255,255,255,0.92));
  border: 1px solid rgba(247,188,0,0.2);
}
.metric-pill strong {
  display: block;
  font-size: 28px;
  color: var(--brand-charcoal);
  margin-bottom: 4px;
}
.metric-pill span {
  color: var(--graphite);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--mono);
}
.case-study-section {
  padding: 70px 0;
}
.case-study-layout {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 32px;
  align-items: center;
}
.case-study-layout h2, .case-study-timeline h2, .section-head h2 {
  font-size: clamp(28px, 3.2vw, 38px);
  margin-bottom: 16px;
  color: var(--brand-charcoal);
}
.case-study-layout p, .case-study-timeline p, .section-head p {
  color: var(--graphite);
  font-size: 16px;
}
.results-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}
.results-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--graphite);
  font-size: 15px;
}
.results-list li::before {
  content: '→';
  color: var(--gold-deep);
  font-weight: 700;
}
.case-study-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-strong);
}
.alt-section {
  background: rgba(255,255,255,0.5);
}
.case-study-results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}
.case-study-timeline {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}
.timeline-list {
  display: grid;
  gap: 16px;
}
.timeline-item {
  display: flex;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.timeline-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-charcoal);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.timeline-item h3 {
  margin-bottom: 6px;
  color: var(--brand-charcoal);
}
.timeline-item p {
  font-size: 15px;
}
@media (max-width: 900px) {
  .case-study-grid,
  .case-study-layout,
  .case-study-timeline,
  .case-study-results-grid {
    grid-template-columns: 1fr;
  }
  .case-study-image img {
    height: 320px;
  }
}
@media (max-width: 600px) {
  .case-study-metrics {
    grid-template-columns: 1fr;
  }
  .case-study-card, .case-study-metrics, .timeline-item {
    padding: 18px;
  }
}

.crate {
  position: absolute;
  background: var(--brand-gold);
  clip-path: polygon(16px 0%, 100% 0%, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0% 100%, 0% 16px);
  box-shadow: 0 30px 60px -20px rgba(13,13,13,.35);
}
.crate.c1 { width: 230px; height: 230px; top: 10px; right: 40px; background: linear-gradient(135deg, var(--brand-charcoal) 0%, #2a2a2a 100%); animation: float1 7s ease-in-out infinite; }
.crate.c2 { width: 170px; height: 170px; bottom: 60px; right: 170px; background: linear-gradient(135deg, var(--brand-gold) 0%, rgba(247,188,0,0.9) 100%); animation: float2 8s ease-in-out infinite; }
.crate.c3 { width: 120px; height: 120px; bottom: 0; right: 0; background: linear-gradient(135deg, var(--brand-paper-soft) 0%, #fff9e2 100%); border: 1.5px solid var(--line); animation: float1 6s ease-in-out infinite reverse; }
.crate .crate-label { position: absolute; bottom: 18px; left: 18px; font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.c1 .crate-label { color: var(--gold); }
.c2 .crate-label { color: var(--white); }
@keyframes float1 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
@keyframes float2 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(14px); } }

@media (max-width: 980px) {
  .hero { padding: 140px 0 80px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { height: 300px; order: -1; }
}

.services-animated-section {
  isolation: isolate;
}
.services-animated-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(247, 188, 0, 0.18) 0%, transparent 30%),
    radial-gradient(circle at 85% 10%, rgba(17, 17, 17, 0.22) 0%, transparent 24%),
    linear-gradient(135deg, #12110d 0%, #1b1712 45%, #0e0d0a 100%);
  z-index: 0;
}
.services-animated-bg::before,
.services-animated-bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}
.services-animated-bg::before {
  width: 420px;
  height: 420px;
  left: -90px;
  top: -140px;
  background: radial-gradient(circle, rgba(247, 188, 0, 0.34) 0%, rgba(247, 188, 0, 0.08) 42%, transparent 70%);
  animation: servicesPulse 10s ease-in-out infinite alternate;
}
.services-animated-bg::after {
  width: 480px;
  height: 480px;
  right: -120px;
  bottom: -160px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.02) 44%, transparent 72%);
  animation: servicesPulse 14s ease-in-out infinite alternate-reverse;
}
.services-animated-svg {
  position: absolute;
  inset: -8% -10%;
  width: 120%;
  height: 120%;
  opacity: 0.9;
  transform: translate3d(0, 0, 0);
  animation: servicesFlow 16s ease-in-out infinite alternate;
}
.services-animated-svg path {
  stroke: rgba(247, 188, 0, 0.42);
  stroke-width: 1.6;
  stroke-linecap: round;
  fill: none;
  stroke-dasharray: 700;
  stroke-dashoffset: 1400;
  animation: servicesDash 8s linear infinite;
}
.services-animated-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.75), transparent);
  opacity: 0.7;
}

@keyframes servicesPulse {
  0% { transform: scale(0.95) translate3d(0, 0, 0); }
  100% { transform: scale(1.08) translate3d(10px, -12px, 0); }
}
@keyframes servicesFlow {
  0% { transform: translate3d(-2%, 0, 0) scale(1); }
  100% { transform: translate3d(2%, 2%, 0) scale(1.04); }
}
@keyframes servicesDash {
  to { stroke-dashoffset: 0; }
}

section {
  padding: 110px 0;
  position: relative;
  background-image: linear-gradient(135deg, rgba(247,188,0,0.08) 0%, transparent 50%), linear-gradient(45deg, rgba(17,17,17,0.03) 0%, transparent 50%);
  isolation: isolate;
  color: var(--ink);
}
section h2,
section h3,
section h4,
section p,
section li {
  color: inherit;
}
section:nth-child(even) {
  background-image: linear-gradient(135deg, rgba(247,188,0,0.04) 0%, transparent 50%), linear-gradient(45deg, rgba(17,17,17,0.03) 0%, transparent 50%);
  color: var(--ink);
}
section::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .14;
  background-image: radial-gradient(circle at 25% 20%, rgba(247,188,0,0.10) 0%, transparent 20%), radial-gradient(circle at 75% 80%, rgba(17,17,17,0.06) 0%, transparent 18%);
  pointer-events: none;
  animation: sectionPulse 10s ease-in-out infinite alternate;
}
section::after {
  content: '';
  position: absolute;
  inset: auto -8% -14% auto;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(247,188,0,0.12) 0%, transparent 70%);
  filter: blur(28px);
  pointer-events: none;
  z-index: -1;
  animation: driftGlow 14s ease-in-out infinite alternate;
}
section:nth-child(even)::before {
  background-image: radial-gradient(circle at 22% 78%, rgba(247,188,0,0.08) 0%, transparent 20%), radial-gradient(circle at 78% 24%, rgba(17,17,17,0.05) 0%, transparent 18%);
}
section .container { position: relative; z-index: 1; }
.section-dark::before { opacity: .08; background-image: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.08) 0%, transparent 18%), radial-gradient(circle at 80% 85%, rgba(255,255,255,0.05) 0%, transparent 20%); }
.stats-band::before { opacity: .22; }
.cta-band::before { opacity: .14; }
.logo-strip { background: linear-gradient(90deg, rgba(255,255,255,.08), rgba(255,255,255,.02)); }
.logo-strip-track span { color: var(--ink); opacity: .72; }
.logo-strip-track span:hover { opacity: 1; color: var(--brand-gold); }
.section-head { max-width: 680px; margin-bottom: 64px; position: relative; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(30px, 3.6vw, 44px); font-weight: 700; color: var(--ink); }
.section-head::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -18px;
  width: 72px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-gold), rgba(247,188,0,0.4));
}
.section-head.center::after { left: 50%; transform: translateX(-50%); }
.stats-band .section-head h2 { color: #fcfbf8; }
.stats-band .section-head .eyebrow { color: var(--brand-gold); }
.stats-band .section-head .eyebrow::before { background: linear-gradient(90deg, var(--brand-gold), transparent); }

.divider-cut {
  height: 46px;
  background: var(--brand-charcoal);
  clip-path: polygon(0 100%, 4% 0, 8% 100%, 12% 0, 16% 100%, 20% 0, 24% 100%, 28% 0, 32% 100%, 36% 0, 40% 100%, 44% 0, 48% 100%, 52% 0, 56% 100%, 60% 0, 64% 100%, 68% 0, 72% 100%, 76% 0, 80% 100%, 84% 0, 88% 100%, 92% 0, 96% 100%, 100% 0, 100% 100%, 0 100%);
}

.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1.5px solid var(--line);
  padding: 36px 32px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s ease, background .4s ease;
  background-image: linear-gradient(135deg, rgba(247,188,0,0.04) 0%, transparent 100%), linear-gradient(45deg, rgba(17,17,17,0.02) 0%, transparent 100%);
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
}
.card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 30px 60px -15px rgba(247,188,0,0.15), 0 0 40px rgba(17,17,17,0.08);
  border-color: var(--brand-gold);
  background-image: linear-gradient(135deg, rgba(247,188,0,0.06) 0%, transparent 100%), linear-gradient(45deg, rgba(17,17,17,0.03) 0%, transparent 100%);
}
.card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(247,188,0,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.card-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-charcoal) 0%, #1a1a1a 100%);
  color: var(--brand-gold);
  clip-path: polygon(8px 0%, 100% 0%, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0% 100%, 0% 8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: all .3s ease;
  position: relative;
}
.card:hover .card-icon {
  background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-charcoal) 100%);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.22);
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 19px; margin-bottom: 10px; font-weight: 700; position: relative; z-index: 1; }
.card p { color: var(--graphite); font-size: 15px; position: relative; z-index: 1; }
.card .num { font-family: var(--mono); font-size: 13px; color: var(--gold-deep); display: block; margin-bottom: 14px; letter-spacing: .05em; }

@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.stats-band {
  background: linear-gradient(135deg, #111111 0%, #1a1712 45%, #0d0c0a 100%);
  color: #f8f3e8;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.stats-band .section-head h2,
.stats-band .section-head p,
.stats-band .section-head .eyebrow,
.stats-band .stat-block span,
.stats-band .stats-hero p,
.stats-band .stats-hero h2,
.stats-band .stats-hero-pill {
  color: inherit;
}

.services-animated-section .section-head .eyebrow,
.services-animated-section .section-head h2,
.services-animated-section .section-head p {
  color: #ffffff;
}

.services-animated-section .card h3,
.services-animated-section .card p,
.services-animated-section .card .num {
  color: #000000;
}
.stats-band .stats-hero h2 {
  color: #000000;
}
.stats-band .stats-hero p {
  color: rgba(0, 0, 0, 0.76);
}
.stats-band .stat-block span {
  color: rgba(0, 0, 0, 0.82);
}
.stats-band .stats-hero-pill {
  color: var(--brand-gold);
}
.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 10% 15%, rgba(247,188,0,0.16) 0%, transparent 22%), radial-gradient(circle at 92% 80%, rgba(17,17,17,0.12) 0%, transparent 18%);
  pointer-events: none;
}
.stats-band .container { position: relative; z-index: 1; }
.stats-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 18px;
  margin-bottom: 42px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(247, 188, 0, 0.22);
}
.stats-hero-copy {
  max-width: 760px;
}
.stats-hero h2 {
  font-size: clamp(30px, 3.2vw, 44px);
  color: #fcfbf8;
  margin-bottom: 14px;
  line-height: 1.12;
}
.stats-hero p {
  color: rgba(252, 251, 248, 0.76);
  font-size: 17px;
  max-width: 620px;
  margin: 0 auto;
}
.stats-hero-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(247, 188, 0, 0.24);
  background: rgba(247, 188, 0, 0.12);
  color: var(--brand-gold);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  text-align: center;
}
.stat-block {
  padding: 30px 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(247, 188, 0, 0.12), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(247, 188, 0, 0.18);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}
.stat-block b {
  display: block;
  font-size: clamp(34px, 3vw, 46px);
  font-family: var(--display);
  color: var(--brand-gold);
  margin-bottom: 10px;
}
.stat-block span {
  color: rgba(252, 251, 248, 0.82);
  font-size: 15px;
  letter-spacing: 0.02em;
}
@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}
@media (max-width: 760px) {
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 20px;
  }
}
@media (max-width: 640px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

.logo-strip { padding: 50px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.logo-strip-track { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 30px; }
.logo-strip-track span { font-family: var(--display); font-weight: 700; font-size: 18px; color: var(--graphite); opacity: .55; transition: opacity .3s ease; }
.logo-strip-track span:hover { opacity: 1; color: var(--ink); }

.t-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
  border-radius: 24px;
  box-shadow: 0 15px 35px rgba(17,17,17,0.04);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s ease;
}
.t-card:hover { transform: translateY(-7px); box-shadow: 0 20px 45px rgba(17,17,17,0.07); border-color: rgba(247,188,0,0.35); }
.t-quote { font-size: 15.5px; color: var(--graphite); flex-grow: 1; }
.t-person { display: flex; align-items: center; gap: 14px; }
.t-avatar {
  width: 46px;
  height: 46px;
  flex: none;
  background: var(--brand-gold);
  color: var(--brand-charcoal);
  font-family: var(--mono);
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(7px 0%, 100% 0%, 100% calc(100% - 7px), calc(100% - 7px) 100%, 0% 100%, 0% 7px);
}
.t-name { font-weight: 700; font-size: 14.5px; }
.t-role { font-size: 12.5px; color: var(--graphite); font-family: var(--mono); }
.stars { color: var(--gold-deep); font-size: 13px; letter-spacing: 2px; }

.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 42px 34px;
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 26px;
  box-shadow: 0 16px 36px rgba(17,17,17,0.04);
}
.price-card.featured { background: linear-gradient(145deg, #15130d 0%, #111111 100%); color: var(--paper); border-color: var(--brand-charcoal); transform: scale(1.04); }
.price-card.featured .price-card-foot, .price-card.featured p { color: #D8C8A0; }
.price-tag {
  position: absolute;
  top: 0;
  right: 24px;
  transform: translateY(-50%);
  background: var(--brand-gold);
  color: var(--brand-charcoal);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 7px 14px;
  font-weight: 700;
  clip-path: polygon(6px 0%, 100% 0%, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0% 100%, 0% 6px);
}
.price-name { font-family: var(--mono); text-transform: uppercase; letter-spacing: .1em; font-size: 13px; color: var(--brand-gold-deep); margin-bottom: 14px; }
.price-card.featured .price-name { color: var(--brand-gold); }
.price-amount { font-family: var(--display); font-size: 46px; font-weight: 700; margin-bottom: 4px; }
.price-period { font-size: 13px; color: var(--graphite); margin-bottom: 28px; display: block; }
.price-feats { display: flex; flex-direction: column; gap: 13px; margin-bottom: 32px; flex-grow: 1; }
.price-feats li { display: flex; gap: 10px; font-size: 14.5px; align-items: flex-start; }
.price-feats li svg { flex: none; margin-top: 3px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--graphite); }
.field input, .field select, .field textarea {
  border: 1.5px solid var(--line);
  background: var(--white);
  padding: 14px 16px;
  font-family: var(--body);
  font-size: 15px;
  color: var(--ink);
  transition: border-color .25s ease;
  border-radius: 16px;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold-deep); outline: none; box-shadow: 0 0 0 3px rgba(201,146,10,.12); }
.field textarea { resize: vertical; min-height: 120px; }
.file-field { border: 1.5px dashed var(--line); padding: 16px; text-align: center; font-size: 13.5px; color: var(--graphite); font-family: var(--mono); cursor: pointer; transition: border-color .25s ease, background .25s ease; border-radius: 16px; }
.file-field:hover { border-color: var(--gold-deep); background: var(--gold-pale); }
@media (max-width:680px) { .form-grid { grid-template-columns: 1fr; } }

.cta-band {
  background: linear-gradient(135deg, #111111 0%, #15130d 100%);
  color: #f8f3e8;
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band h2,
.cta-band p,
.cta-band .eyebrow {
  color: inherit;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image: radial-gradient(circle at 20% 20%, rgba(247,188,0,0.14) 0%, transparent 20%), radial-gradient(circle at 82% 25%, rgba(17,17,17,0.08) 0%, transparent 18%);
  pointer-events: none;
}
.cta-band h2 { font-size: clamp(28px, 4vw, 42px); max-width: 680px; margin: 0 auto 18px; }
.cta-band p { color: #000000; max-width: 520px; margin: 0 auto 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

footer { background: linear-gradient(135deg, #15130d 0%, #111111 100%); color: #C9C4B5; padding: 80px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-logo img { height: 32px; margin-bottom: 18px; }
.footer-grid p { font-size: 14px; line-height: 1.7; max-width: 300px; }
.footer-col h4 { font-family: var(--mono); color: var(--paper); font-size: 13px; text-transform: uppercase; letter-spacing: .07em; margin-bottom: 20px; }
.footer-col a { color: #C9C4B5; font-size: 14.5px; transition: color .25s ease; }
.footer-col a:hover { color: var(--brand-gold); }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; flex-wrap: wrap; gap: 14px; font-size: 13px; }
.footer-bottom a { color: #8A8470; }
.footer-bottom a:hover { color: var(--brand-gold); }
.social-row { display: flex; gap: 12px; }
.social-row a { width: 36px; height: 36px; border: 1px solid var(--line-dark); display: flex; align-items: center; justify-content: center; transition: all .25s ease; border-radius: 999px; }
.social-row a:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
@media (max-width:900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width:560px) { .footer-grid { grid-template-columns: 1fr; } }

.page-header { padding: 160px 0 70px; background: var(--paper); position: relative; }
.page-header::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at top right, rgba(247,188,0,0.12), transparent 40%); pointer-events: none; }
.page-header h1 { font-size: clamp(34px, 4.6vw, 56px); }
.breadcrumb { font-family: var(--mono); font-size: 12.5px; text-transform: uppercase; letter-spacing: .07em; color: var(--graphite); margin-bottom: 18px; }
.breadcrumb a { color: var(--gold-deep); }

.reveal { opacity: 0; transform: translateY(28px) scale(0.98); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0) scale(1); }
.reveal-stagger > * { transition-delay: calc(var(--i, 0) * 90ms); }

.kicker-list { display: flex; flex-direction: column; gap: 0; }
.kicker-list li { display: flex; align-items: center; gap: 20px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.kicker-list li b { font-family: var(--mono); color: var(--gold-deep); font-size: 14px; width: 34px; flex: none; }
.kicker-list li div h4 { font-size: 17px; margin-bottom: 4px; }
.kicker-list li div p { color: var(--graphite); font-size: 14.5px; }

.policy-body h2 { font-size: 22px; margin: 42px 0 14px; }
.policy-body h2:first-child { margin-top: 0; }
.policy-body p, .policy-body li { color: var(--graphite); font-size: 15.5px; line-height: 1.8; margin-bottom: 14px; }
.policy-body ul { list-style: disc; padding-left: 22px; }
.policy-body strong { color: var(--ink); }
.policy-updated { font-family: var(--mono); font-size: 13px; color: var(--gold-deep); margin-bottom: 40px; display: block; }

.num {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
}

.nav-links a.active::after { width: 100%; }
.card-icon.facet { display: flex; align-items: center; justify-content: center; color: var(--gold); }

@media (max-width: 900px) { .grid-3.pricing-grid { grid-template-columns: 1fr; } .price-card.featured { transform: none; } }
@media (max-width: 600px) { .hero { padding: 130px 0 70px; } .hero-cta { flex-direction: column; } .trust-strip { gap: 22px; } .cta-actions { flex-direction: column; align-items: center; } }
@media (max-width: 480px) { .stats-grid { grid-template-columns: 1fr 1fr; row-gap: 50px; } }
@media (max-width: 480px) { .footer-bottom { flex-direction: column; text-align: center; gap: 10px; } }
@media (max-width: 600px) { .page-header { padding: 140px 0 50px; } }
@media (max-width: 600px) { .kicker-list li { flex-direction: column; gap: 8px; } .kicker-list li b { width: auto; } }
.grid .t-card { height: 100%; }
@media (max-width: 640px) { .logo-strip-track { justify-content: center; } }
@media (max-width: 480px) { .hero-art { display: none; } }
.field.full { grid-column: 1 / -1; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--paper-2); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 0; }
@media print { .nav, footer, .cta-band, .btn { display: none; } .page-header { padding: 20px 0; } }
