/* ═══════════════════════════════════════════
   DESIGN TOKENS
   ═══════════════════════════════════════════ */
:root {
  --navy: #0B1A2B;
  --navy-deep: #060F1A;
  --navy-mid: #112240;
  --navy-light: #1B3A5C;
  --gold: #C6943A;
  --gold-light: #DFBA6E;
  --gold-pale: #F5E6C8;
  --cream: #FAF7F2;
  --warm-white: #F0EDE6;
  --text-primary: #E8E4DC;
  --text-secondary: #8B9BB0;
  --text-muted: #5A6A80;
  --border-subtle: rgba(198,148,58,0.12);
  --border-light: rgba(255,255,255,0.06);
  --glass: rgba(11,26,43,0.7);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

/* ═══════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--navy-deep);
}

body {
  font-family: var(--font-body);
  background: var(--navy-deep);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--gold);
  color: var(--navy-deep);
}

img { display: block; max-width: 100%; }

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover { color: var(--gold-light); }

/* ═══════════════════════════════════════════
   SCROLL REVEAL SYSTEM
   ═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ═══════════════════════════════════════════
   NOISE TEXTURE OVERLAY
   ═══════════════════════════════════════════ */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(20px);
  background: rgba(6,15,26,0.6);
  border-bottom: 1px solid var(--border-light);
  transition: all 0.4s ease;
}
.nav.scrolled {
  padding: 0.8rem 3rem;
  background: rgba(6,15,26,0.92);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 150px;
}
.nav-logo-icon {
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--gold);
}
.nav-logo-text {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-primary);
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out-expo);
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy-deep);
  background: var(--gold);
  padding: 0.6rem 1.6rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.mobile-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}

/* ═══════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 8rem 3rem 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(198,148,58,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(27,58,92,0.3) 0%, transparent 60%),
    var(--navy-deep);
}

.hero-grid-line {
  position: absolute;
  background: var(--border-light);
}
.hero-grid-line.vertical {
  width: 1px;
  top: 0;
  bottom: 0;
}
.hero-grid-line.horizontal {
  height: 1px;
  left: 0;
  right: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-left { padding-right: 2rem; }

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  line-height: 1.08;
  color: var(--cream);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.hero-subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--gold);
  color: var(--navy-deep);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  border: none;
  cursor: pointer;
  transition: all 0.35s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-light);
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease-out-expo);
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span { position: relative; z-index: 1; }
.btn-primary .arrow { position: relative; z-index: 1; transition: transform 0.3s ease; }
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-outline {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 1rem 1.5rem;
  border: 1px solid var(--border-subtle);
  background: transparent;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.3s ease;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Hero Before/After */
.hero-right { position: relative; }

.hero-showcase {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.4),
    0 0 0 1px var(--border-subtle);
}
.hero-showcase-inner {
  position: relative;
  width: 200%;
  height: 100%;
  display: flex;
}
.hero-showcase img {
  width: 50%;
  height: 100%;
  object-fit: cover;
}

.showcase-slider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--gold);
  z-index: 10;
  cursor: ew-resize;
  transition: left 0.05s linear;
}
.showcase-slider::before {
  content: '⟨  ⟩';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  letter-spacing: 3px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.showcase-clip {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.showcase-clip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.showcase-clip-after {
  clip-path: inset(0 0 0 50%);
}

.showcase-label {
  position: absolute;
  bottom: 1rem;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  backdrop-filter: blur(10px);
  z-index: 5;
}
.showcase-label-before {
  left: 1rem;
  background: rgba(11,26,43,0.85);
  color: var(--text-primary);
}
.showcase-label-after {
  right: 1rem;
  background: rgba(198,148,58,0.9);
  color: var(--navy-deep);
}

.hero-trust {
  margin-top: 1.5rem;
  display: flex;
  gap: 2rem;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.hero-trust span::before {
  content: '●';
  margin-right: 0.4rem;
  color: var(--gold);
  font-size: 0.5rem;
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 5;
}
.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-lr;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ═══════════════════════════════════════════
   SECTION SHARED STYLES
   ═══════════════════════════════════════════ */
section {
  padding: 7rem 3rem;
  position: relative;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.section-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 1rem;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 3.5rem;
  line-height: 1.7;
}

.divider {
  width: 100%;
  height: 1px;
  background: var(--border-light);
  margin: 0;
}

/* ═══════════════════════════════════════════
   PROBLEM SECTION
   ═══════════════════════════════════════════ */
.problem {
  background:
    radial-gradient(ellipse 50% 50% at 80% 20%, rgba(198,148,58,0.04) 0%, transparent 70%),
    var(--navy);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 1rem;
}

.problem-left {}

.problem-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.problem-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1.25rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border-light);
  align-items: start;
}
.problem-step:first-child { padding-top: 0; }
.problem-step:last-child { border-bottom: none; }

.problem-step-num {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.problem-step h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.4rem;
}
.problem-step p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* Problem right — comparison cards */
.problem-comparison {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.comparison-card {
  padding: 2rem;
  border: 1px solid var(--border-light);
  background: rgba(255,255,255,0.015);
  position: relative;
  transition: all 0.4s ease;
}
.comparison-card:hover {
  background: rgba(255,255,255,0.03);
  border-color: var(--border-subtle);
}
.comparison-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.comparison-card h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cream);
}
.comparison-badge {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
}
.badge-fail { background: rgba(196,77,63,0.15); color: #E8756A; }
.badge-pass { background: rgba(61,139,94,0.15); color: #6BCB91; }

.comparison-items {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.comparison-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.comparison-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  font-weight: 700;
  margin-top: 2px;
}
.icon-fail { background: rgba(196,77,63,0.15); color: #E8756A; }
.icon-pass { background: rgba(61,139,94,0.15); color: #6BCB91; }

/* ═══════════════════════════════════════════
   PROCESS SECTION
   ═══════════════════════════════════════════ */
.process {
  background: var(--navy-deep);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 1rem;
  position: relative;
}
.process-timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), var(--gold), transparent);
  opacity: 0.3;
}

.process-step {
  text-align: center;
  padding: 0 1rem;
  position: relative;
}
.process-step-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  background: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gold);
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}
.process-step:hover .process-step-dot {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(198,148,58,0.25);
}
.process-step.highlight .process-step-dot {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
  box-shadow: 0 0 40px rgba(198,148,58,0.2);
}
.process-step h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.process-step p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.process-callout {
  margin-top: 3.5rem;
  padding: 1.75rem 2.5rem;
  background: rgba(198,148,58,0.06);
  border: 1px solid var(--border-subtle);
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.process-callout strong {
  color: var(--gold);
  font-weight: 500;
}

/* Protection grid */
.protection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 3rem;
  background: var(--border-light);
  border: 1px solid var(--border-light);
}
.protection-item {
  padding: 1.75rem 1.5rem;
  background: var(--navy-deep);
  transition: background 0.3s ease;
}
.protection-item:hover {
  background: rgba(255,255,255,0.015);
}
.protection-item h5 {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.protection-item h5::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 1px;
  flex-shrink: 0;
}
.protection-item p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ═══════════════════════════════════════════
   SOLUTION SECTION
   ═══════════════════════════════════════════ */
.solution {
  background: var(--navy);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.solution-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
}
.solution-card {
  padding: 2.5rem 2rem;
  background: var(--navy);
  transition: all 0.4s ease;
  position: relative;
}
.solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out-expo);
}
.solution-card:hover::before { transform: scaleX(1); }
.solution-card:hover { background: rgba(255,255,255,0.02); }

.solution-card-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 1.25rem;
}
.solution-card h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.75rem;
}
.solution-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.solution-pathway {
  margin-top: 3rem;
  padding: 2rem;
  border: 1px solid var(--border-light);
  background: rgba(255,255,255,0.01);
}
.solution-pathway h4 {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  text-align: center;
}
.pathway-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.pathway-node {
  font-size: 0.8rem;
  color: var(--text-secondary);
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-light);
  background: var(--navy);
  white-space: nowrap;
}
.pathway-arrow {
  color: var(--gold);
  font-size: 0.9rem;
  padding: 0 0.5rem;
}

/* ═══════════════════════════════════════════
   SAFETY SECTION
   ═══════════════════════════════════════════ */
.safety {
  background: var(--navy-deep);
}

.safety-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
}
.safety-item {
  padding: 2.25rem 2rem;
  background: var(--navy-deep);
  transition: background 0.3s ease;
}
.safety-item:hover { background: rgba(255,255,255,0.015); }
.safety-item h4 {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.safety-icon {
  width: 24px;
  height: 24px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: var(--gold);
  flex-shrink: 0;
}
.safety-item p {
  font-size: 0.83rem;
  color: var(--text-secondary);
  line-height: 1.6;
  padding-left: calc(24px + 0.6rem);
}

.safety-avoid {
  margin-top: 3rem;
  padding: 2rem;
  border: 1px solid rgba(196,77,63,0.2);
  background: rgba(196,77,63,0.03);
}
.safety-avoid h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #E8756A;
  margin-bottom: 1.25rem;
}
.safety-avoid-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.safety-avoid-item h5 {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.25rem;
}
.safety-avoid-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════
   EVIDENCE / GALLERY SECTION
   ═══════════════════════════════════════════ */
.evidence {
  background: var(--navy);
  border-top: 1px solid var(--border-light);
}

.evidence-cases {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.evidence-case {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: start;
}
.evidence-case:nth-child(even) {
  grid-template-columns: 0.8fr 1.2fr;
}
.evidence-case:nth-child(even) .evidence-images { order: 2; }
.evidence-case:nth-child(even) .evidence-details { order: 1; }

.evidence-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  position: relative;
  overflow: hidden;
}
.evidence-images img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}
.evidence-images:hover img {
  transform: scale(1.02);
}
.evidence-img-label {
  position: absolute;
  bottom: 0.75rem;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  backdrop-filter: blur(8px);
}
.evidence-img-label.left { left: 0.75rem; background: rgba(11,26,43,0.8); color: var(--text-primary); }
.evidence-img-label.right { right: 0.75rem; background: rgba(198,148,58,0.85); color: var(--navy-deep); }

.evidence-details { padding-top: 1rem; }

.evidence-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.evidence-meta-item {}
.evidence-meta-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}
.evidence-meta-value {
  font-size: 0.85rem;
  color: var(--text-primary);
  line-height: 1.5;
}

.evidence-result {
  padding: 1.25rem 1.5rem;
  background: rgba(61,139,94,0.06);
  border-left: 2px solid #6BCB91;
  margin-bottom: 1.5rem;
}
.evidence-result p {
  font-size: 0.85rem;
  color: #6BCB91;
  font-weight: 500;
}

.evidence-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ═══════════════════════════════════════════
   WHY US SECTION
   ═══════════════════════════════════════════ */
.why {
  background: var(--navy-deep);
  border-top: 1px solid var(--border-light);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border-light);
}
.why-card {
  padding: 2.5rem 2.25rem;
  border: 1px solid var(--border-light);
  margin: -1px;
  position: relative;
  transition: all 0.4s ease;
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 2.25rem;
  right: 2.25rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.5s var(--ease-out-expo);
}
.why-card:hover::after { transform: scaleX(1); }
.why-card:hover { background: rgba(255,255,255,0.015); }

.why-card h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.75rem;
}
.why-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   COST SECTION
   ═══════════════════════════════════════════ */
.cost-banner {
  background: var(--navy);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 5rem 3rem;
}
.cost-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.cost-left {}
.cost-left h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.cost-left p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.cost-right {
  text-align: center;
  padding: 3rem 2rem;
  border: 1px solid var(--border-subtle);
  background: rgba(198,148,58,0.03);
}
.cost-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.cost-amount {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.cost-unit {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.cost-note {
  font-size: 0.85rem;
  color: var(--gold-light);
  font-style: italic;
}
.cost-source {
  margin-top: 0.75rem;
  font-size: 0.65rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════ */
.cta {
  padding: 8rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 50% at 50% 50%, rgba(198,148,58,0.06) 0%, transparent 70%),
    var(--navy-deep);
}
.cta-container {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.cta-eyebrow {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.cta h2 em {
  font-style: italic;
  color: var(--gold);
}
.cta-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
}
.cta-contact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border-light);
}
.cta-contact-item {}
.cta-contact-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}
.cta-contact-value {
  font-size: 0.95rem;
  color: var(--text-primary);
}
.cta-contact-value.phone {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold);
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  padding: 2rem 3rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 3rem; }
  .hero-left { padding-right: 0; }
  .problem-grid { grid-template-columns: 1fr; gap: 3rem; }
  .process-timeline { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .process-timeline::before { display: none; }
  .process-step:nth-child(n+4) { margin-top: 0.5rem; }
  .solution-cards { grid-template-columns: 1fr; }
  .evidence-case,
  .evidence-case:nth-child(even) { grid-template-columns: 1fr; }
  .evidence-case:nth-child(even) .evidence-images { order: 0; }
  .evidence-case:nth-child(even) .evidence-details { order: 0; }
  .cost-inner { grid-template-columns: 1fr; }
  .safety-avoid-items { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .mobile-toggle { display: flex; }
  section { padding: 4.5rem 1.5rem; }
  .hero { padding: 7rem 1.5rem 3rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-trust { flex-direction: column; gap: 0.5rem; }
  .process-timeline { grid-template-columns: 1fr 1fr; }
  .protection-grid { grid-template-columns: 1fr 1fr; }
  .safety-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-contact { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer { flex-direction: column; gap: 0.5rem; text-align: center; }
  .pathway-flow { flex-wrap: wrap; gap: 0.25rem; }
}

@media (max-width: 480px) {
  .process-timeline { grid-template-columns: 1fr; }
  .protection-grid { grid-template-columns: 1fr; }
  .evidence-images { grid-template-columns: 1fr; }
}
