/* ═══════════════════════════════════════════════════
   JALO LINKS — style.css
   Production-ready. No build step required.
═══════════════════════════════════════════════════ */

/* ── TOKENS ──────────────────────────────────────── */
:root {
  --fire:      #c01a0e;
  --fire-dk:   #8a0f07;
  --fire-lt:   #e03020;
  --gold-hi:   #f5c832;
  --gold:      #c8821a;
  --gold-dk:   #8a5010;
  --char:      #141210;
  --char-2:    #1e1a16;
  --char-3:    #2e2820;
  --char-4:    #4a4038;
  --char-lt:   #6e5e50;
  --cream:     #f5ede0;
  --paper:     #faf6f0;
  --line:      rgba(200,130,26,0.18);
  --line-red:  rgba(192,26,14,0.25);

  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Barlow', sans-serif;
  --cond:  'Barlow Condensed', sans-serif;
  --mono:  'Courier Prime', monospace;
}

/* ── RESET ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--char);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

/* ── LAYOUT HELPERS ──────────────────────────────── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 2rem; }
.section    { padding: 6rem 0; border-bottom: 1px solid rgba(245,237,224,0.06); }
.section-sm { padding: 4rem 0; }

/* ── TYPOGRAPHY ──────────────────────────────────── */
.eyebrow {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before { content: '//'; opacity: 0.5; }

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 0.4rem;
}
.section-title em { font-style: italic; color: var(--gold-hi); }

.section-rule {
  width: 50px; height: 3px;
  background: linear-gradient(90deg, var(--fire), var(--gold));
  margin: 1.5rem 0 2.5rem;
}

.lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: rgba(245,237,224,0.8);
  line-height: 1.75;
  max-width: 700px;
  margin-bottom: 2rem;
}

p {
  color: rgba(245,237,224,0.6);
  line-height: 1.85;
  margin-bottom: 1.2rem;
  max-width: 680px;
}
p strong { color: var(--cream); font-weight: 600; }

/* light sections */
.s-cream { background: var(--paper); }
.s-cream .eyebrow { color: var(--gold-dk); }
.s-cream .section-title { color: var(--char); }
.s-cream .section-title em { color: var(--gold); }
.s-cream p { color: var(--char-4); }
.s-cream p strong { color: var(--char); }
.s-cream .lead { color: var(--char-3); }

.s-mid { background: var(--char-2); }

/* ═══════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(20,18,16,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,130,26,0.15);
  transition: box-shadow 0.3s;
}
#navbar.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.4); }

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.nav-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-brand-name {
  font-family: var(--cond);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 4px;
  color: var(--gold-hi);
  text-transform: uppercase;
}
.nav-brand-sub {
  font-family: var(--mono);
  font-size: 0.45rem;
  letter-spacing: 1.5px;
  color: rgba(245,237,224,0.3);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--cond);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245,237,224,0.55);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-hi); }

.nav-cta {
  font-family: var(--cond);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.55rem 1.4rem;
  background: var(--fire);
  color: var(--cream) !important;
  border: none;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--fire-lt) !important; transform: translateY(-1px); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--char-2);
  border-top: 1px solid var(--line);
  padding: 1.5rem 2rem;
  gap: 1rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--cond);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245,237,224,0.6);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(245,237,224,0.06);
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--gold-hi); }
.nav-mobile .nav-cta-mob {
  margin-top: 0.5rem;
  display: inline-block;
  background: var(--fire);
  color: var(--cream);
  text-align: center;
  padding: 0.8rem;
  border-bottom: none;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* ═══════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  background: var(--char);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 68px;
}

.hero-bg-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192,26,14,0.14) 0%, rgba(200,130,26,0.06) 40%, transparent 70%);
  pointer-events: none;
}
.hero-bg-lines {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 80px, rgba(200,130,26,0.03) 80px, rgba(200,130,26,0.03) 81px),
    repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(200,130,26,0.02) 80px, rgba(200,130,26,0.02) 81px);
  pointer-events: none;
}
.hero-accent-bar {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--fire) 0%, var(--gold) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--fire-lt);
  border: 1px solid var(--line-red);
  padding: 4px 12px;
  margin-bottom: 2rem;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--fire-lt);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.7); }
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 0.3rem;
}
.hero-headline em { font-style: italic; color: var(--gold-hi); display: block; }

.hero-rule {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--fire), var(--gold));
  margin: 2rem 0;
}

.hero-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: rgba(245,237,224,0.7);
  line-height: 1.7;
  max-width: 520px;
  border-left: 2px solid var(--gold);
  padding-left: 1.2rem;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--cond);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  background: var(--fire);
  color: var(--cream);
  border: 2px solid var(--fire);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--fire-lt);
  border-color: var(--fire-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(192,26,14,0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--cond);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--line);
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold-hi);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(245,237,224,0.08);
  flex-wrap: wrap;
}
.hero-stat {}
.hero-stat-num {
  font-family: var(--cond);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold-hi);
  line-height: 1;
}
.hero-stat-lbl {
  font-family: var(--mono);
  font-size: 0.52rem;
  letter-spacing: 1.5px;
  color: rgba(245,237,224,0.3);
  text-transform: uppercase;
  margin-top: 3px;
  line-height: 1.4;
}

/* Hero logo */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-logo-wrap {
  position: relative;
  width: 420px;
  max-width: 100%;
}
.hero-logo-ring {
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  border: 1px solid rgba(200,130,26,0.12);
  animation: ring-spin 20s linear infinite;
}
.hero-logo-ring-2 {
  position: absolute;
  inset: -60px;
  border-radius: 50%;
  border: 1px solid rgba(192,26,14,0.08);
  animation: ring-spin 30s linear infinite reverse;
}
@keyframes ring-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.hero-logo-img {
  width: 100%;
  filter: drop-shadow(0 0 50px rgba(192,26,14,0.45)) drop-shadow(0 0 100px rgba(200,130,26,0.2));
  animation: logo-float 5s ease-in-out infinite;
  position: relative;
  z-index: 1;
}
@keyframes logo-float {
  0%,100% { transform: translateY(0); filter: drop-shadow(0 0 50px rgba(192,26,14,0.45)) drop-shadow(0 0 100px rgba(200,130,26,0.2)); }
  50%     { transform: translateY(-12px); filter: drop-shadow(0 0 70px rgba(192,26,14,0.6)) drop-shadow(0 0 120px rgba(200,130,26,0.3)); }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
}

/* ═══════════════════════════════════════════════════
   TICKER / MARQUEE
═══════════════════════════════════════════════════ */
.ticker {
  background: var(--fire-dk);
  border-top: 1px solid var(--line-red);
  border-bottom: 1px solid var(--line-red);
  padding: 0.75rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  animation: ticker-scroll 30s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  font-family: var(--cond);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245,237,224,0.75);
  padding: 0 2.5rem;
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
}
.ticker-item::after {
  content: '◆';
  color: var(--gold);
  font-size: 0.5rem;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════
   WHAT WE DO
═══════════════════════════════════════════════════ */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(245,237,224,0.06);
  border: 1px solid rgba(245,237,224,0.06);
  margin-top: 3rem;
}
@media (max-width: 768px) { .pillar-grid { grid-template-columns: 1fr; } }

.pillar-card {
  background: var(--char);
  padding: 2.5rem 2rem;
  position: relative;
  transition: background 0.3s;
}
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--fire), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.pillar-card:hover::before { transform: scaleX(1); }
.pillar-card:hover { background: var(--char-2); }

.pillar-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}
.pillar-num {
  font-family: var(--cond);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(200,130,26,0.12);
  line-height: 1;
  position: absolute;
  top: 1.5rem; right: 1.5rem;
}
.pillar-title {
  font-family: var(--cond);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.8rem;
}
.pillar-card p { font-size: 0.9rem; margin: 0; line-height: 1.65; max-width: none; }

/* ═══════════════════════════════════════════════════
   WHO WE DO IT FOR — PERSONAS
═══════════════════════════════════════════════════ */
.persona-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (max-width: 900px) { .persona-grid { grid-template-columns: 1fr; } }

.persona-card {
  border: 1px solid rgba(245,237,224,0.07);
  border-top: 3px solid var(--fire);
  background: var(--char-2);
  padding: 2rem;
  transition: border-top-color 0.3s, transform 0.3s;
}
.persona-card:hover { border-top-color: var(--gold); transform: translateY(-4px); }
.persona-card:nth-child(even) { border-top-color: var(--gold); }
.persona-card:nth-child(even):hover { border-top-color: var(--fire); }

.persona-num {
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 2px;
  color: var(--fire-lt);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.persona-card:nth-child(even) .persona-num { color: var(--gold); }

.persona-who {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.35;
  margin-bottom: 1rem;
}
.persona-card p { font-size: 0.85rem; line-height: 1.65; max-width: none; }

/* ═══════════════════════════════════════════════════
   BELIEF — FULL WIDTH DARK
═══════════════════════════════════════════════════ */
.belief-section {
  background: var(--char);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
  border-top: 3px solid var(--fire);
  border-bottom: 3px solid var(--fire);
}
.belief-section::before {
  content: '"';
  position: absolute;
  top: -4rem; left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: 30rem;
  color: rgba(200,130,26,0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.belief-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; padding: 0 2rem; }
.belief-text {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.25;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.belief-text em { color: var(--gold-hi); font-style: italic; }
.belief-sub {
  font-family: var(--sans);
  font-size: 1rem;
  color: rgba(245,237,224,0.5);
  line-height: 1.8;
  font-weight: 300;
  max-width: 580px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════
   HOW IT WORKS — PROCESS
═══════════════════════════════════════════════════ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 3.5rem;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, var(--fire), var(--gold));
}
@media (max-width: 900px) {
  .process-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .process-grid::before { display: none; }
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
  position: relative;
}
.proc-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--fire-dk), var(--fire));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--cond);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--cream);
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--char), 0 0 0 5px rgba(192,26,14,0.3);
  transition: box-shadow 0.3s, transform 0.3s;
}
.process-step:hover .proc-circle {
  box-shadow: 0 0 0 4px var(--char), 0 0 0 6px var(--gold);
  transform: scale(1.1);
}
.proc-title {
  font-family: var(--cond);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.process-step p { font-size: 0.82rem; line-height: 1.55; max-width: 180px; margin: 0 auto; }

/* ═══════════════════════════════════════════════════
   SERVICES GRID
═══════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(245,237,224,0.06);
  border: 1px solid rgba(245,237,224,0.06);
  margin-top: 3rem;
}
@media (max-width: 768px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--char-2);
  padding: 2.5rem 2rem;
  transition: background 0.3s;
}
.service-card:hover { background: var(--char-3); }

.svc-number {
  font-family: var(--cond);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--fire-lt);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.svc-title {
  font-family: var(--cond);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.8rem;
  line-height: 1.25;
}
.svc-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.52rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 2px 8px;
  border: 1px solid var(--line);
  color: var(--gold);
  margin-top: 1rem;
}
.service-card p { font-size: 0.88rem; margin: 0; line-height: 1.65; max-width: none; }

/* ═══════════════════════════════════════════════════
   DIFFERENTIATION — WHY US
═══════════════════════════════════════════════════ */
.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 1rem;
}
@media (max-width: 900px) { .diff-grid { grid-template-columns: 1fr; } }

.diff-points { margin-top: 2rem; }
.diff-point {
  display: flex;
  gap: 1.2rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(200,130,26,0.1);
  align-items: flex-start;
}
.diff-point:first-child { border-top: 1px solid rgba(200,130,26,0.1); }
.diff-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(192,26,14,0.15);
  border: 1px solid rgba(192,26,14,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.diff-text {}
.diff-title {
  font-family: var(--cond);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.3rem;
}
.diff-point p { font-size: 0.88rem; margin: 0; max-width: none; line-height: 1.6; }

/* Competitor comparison */
.compare-box {
  background: var(--char-2);
  border: 1px solid rgba(245,237,224,0.07);
  padding: 2rem;
}
.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(245,237,224,0.06);
  margin-bottom: 1px;
}
.compare-cell {
  padding: 0.9rem 1.2rem;
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(245,237,224,0.7);
}
.compare-cell.no   { background: rgba(192,26,14,0.06); }
.compare-cell.yes  { background: rgba(74,103,65,0.1); }
.compare-cell.no::before  { content: '✕  '; color: var(--fire-lt); font-weight: 700; }
.compare-cell.yes::before { content: '✓  '; color: #5aaa50; font-weight: 700; }
.compare-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(245,237,224,0.06);
  margin-bottom: 1px;
}
.compare-header-cell {
  background: rgba(245,237,224,0.04);
  padding: 0.7rem 1.2rem;
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.compare-header-cell.them { color: var(--fire-lt); }
.compare-header-cell.us   { color: var(--gold); }

/* ═══════════════════════════════════════════════════
   STATS BAND
═══════════════════════════════════════════════════ */
.stats-band {
  background: var(--char-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 4rem 0;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(245,237,224,0.06);
  border: 1px solid rgba(245,237,224,0.06);
}
@media (max-width: 700px) { .stats-row { grid-template-columns: repeat(2,1fr); } }
.stat-cell {
  background: var(--char-2);
  padding: 2.5rem 1.5rem;
  text-align: center;
}
.stat-num {
  font-family: var(--cond);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold-hi);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-lbl {
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(245,237,224,0.3);
  line-height: 1.5;
}
.stat-note {
  font-size: 0.75rem;
  color: rgba(245,237,224,0.3);
  margin-top: 0.4rem;
  font-style: italic;
}

/* ═══════════════════════════════════════════════════
   FOOT SOLDIER / JOIN NETWORK
═══════════════════════════════════════════════════ */
.network-section {
  background: var(--char);
  padding: 6rem 0;
  border-top: 3px solid var(--gold);
}
.network-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 900px) { .network-grid { grid-template-columns: 1fr; } }

.level-list { margin-top: 2rem; }
.level-row {
  display: flex;
  gap: 1.2rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(245,237,224,0.06);
  align-items: flex-start;
}
.level-badge {
  font-family: var(--mono);
  font-size: 0.52rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border: 1px solid var(--line);
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 2px;
}
.level-text {}
.level-title {
  font-family: var(--cond);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.2rem;
}
.level-row p { font-size: 0.85rem; margin: 0; max-width: none; line-height: 1.55; }

.network-cta-box {
  background: var(--char-2);
  border: 1px solid rgba(245,237,224,0.08);
  border-top: 3px solid var(--gold);
  padding: 2.5rem;
}
.network-cta-box h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--cream);
  margin-bottom: 1rem;
  line-height: 1.3;
}
.network-cta-box p { max-width: none; margin-bottom: 1.5rem; }
.network-cta-box .btn-primary { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════════════ */
.cta-section {
  background: var(--char);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(200,130,26,0.025) 40px, rgba(200,130,26,0.025) 41px);
  pointer-events: none;
}
.cta-glow {
  position: absolute;
  bottom: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(192,26,14,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; padding: 0 2rem; }

.cta-tag {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.5rem;
}
.cta-headline {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.cta-headline em { font-style: italic; color: var(--gold-hi); }

.cta-body {
  font-size: 1rem;
  color: rgba(245,237,224,0.55);
  line-height: 1.85;
  margin-bottom: 2.5rem;
  max-width: none;
  font-weight: 300;
}
.cta-body strong { color: var(--cream); }

.cta-btn-wrap { margin-bottom: 2.5rem; }
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--cond);
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 1.1rem 3rem;
  background: var(--fire);
  color: var(--cream);
  border: 2px solid var(--fire);
  transition: all 0.2s;
  cursor: pointer;
}
.cta-btn:hover {
  background: var(--fire-lt);
  border-color: var(--fire-lt);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(192,26,14,0.4);
}

.cta-channels {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.cta-channel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  text-decoration: none;
  transition: opacity 0.2s;
}
.cta-channel:hover { opacity: 0.8; }
.cta-channel-label {
  font-family: var(--mono);
  font-size: 0.52rem;
  letter-spacing: 2px;
  color: rgba(245,237,224,0.3);
  text-transform: uppercase;
}
.cta-channel-val {
  font-family: var(--sans);
  font-size: 0.88rem;
  color: var(--gold);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
#footer {
  background: var(--char);
  border-top: 3px solid var(--fire);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand {}
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}
.footer-logo-wrap img {
  width: 52px; height: 52px;
  object-fit: contain;
}
.footer-brand-name {
  font-family: var(--cond);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 4px;
  color: var(--gold-hi);
  text-transform: uppercase;
}
.footer-brand-sub {
  font-family: var(--mono);
  font-size: 0.45rem;
  letter-spacing: 1.5px;
  color: rgba(245,237,224,0.25);
  text-transform: uppercase;
}
.footer-brand p {
  font-size: 0.85rem;
  max-width: 280px;
  color: rgba(245,237,224,0.4);
}
.footer-contact {
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer-contact a {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 1px;
  color: rgba(245,237,224,0.35);
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--gold); }

.footer-col {}
.footer-col-title {
  font-family: var(--cond);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(200,130,26,0.15);
  padding-bottom: 0.5rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: rgba(245,237,224,0.35);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold-hi); }

.footer-bottom {
  border-top: 1px solid rgba(245,237,224,0.06);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 1.5px;
  color: rgba(245,237,224,0.2);
  text-transform: uppercase;
}
.footer-pills {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.footer-pill {
  font-family: var(--mono);
  font-size: 0.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 2px 8px;
  border: 1px solid rgba(200,130,26,0.15);
  color: rgba(200,130,26,0.4);
}

/* ═══════════════════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════════════
   WHATSAPP FLOAT BUTTON
═══════════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 800;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: #25d366;
  color: #fff;
  font-family: var(--cond);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.8rem 1.4rem 0.8rem 1rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.45);
}
.wa-float svg { width: 20px; height: 20px; fill: #fff; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════
   UTILITIES
═══════════════════════════════════════════════════ */
.text-center { text-align: center; }
.text-center p { margin-left: auto; margin-right: auto; }

.pull-quote {
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: rgba(200,130,26,0.05);
}
.pull-quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold-hi);
  line-height: 1.6;
  margin: 0;
  max-width: none;
}
