@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Barlow+Condensed:wght@600;700&display=swap');

:root {
  --navy: #0D1F3C;
  --navy-dark: #071428;
  --gold: #F5B800;
  --gold-dark: #C49200;
  --orange: #E84E1B;
  --white: #FFFFFF;
  --off-white: #F8F9FB;
  --grey: #6B7280;
  --light-grey: #E5E7EB;
  --font-display: 'Bebas Neue', sans-serif;
  --font-condensed: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--navy);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(7, 20, 40, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245, 184, 0, 0.2);
  padding: 0 2rem;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.3s;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-mark { width: 38px; height: 38px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.nav-logo-text { font-family: var(--font-condensed); font-size: 18px; font-weight: 700; color: var(--white); letter-spacing: 0.06em; }
.nav-logo-text span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 14px; font-weight: 500; letter-spacing: 0.04em; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--orange); color: var(--white) !important;
  padding: 8px 20px; border-radius: 4px; font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: #c93e0f !important; color: var(--white) !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.3s; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #071428 0%, #0D1F3C 30%, #142850 55%, #0D1F3C 80%, #071428 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: 68px;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 4rem 2rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,184,0,0.1); border: 1px solid rgba(245,184,0,0.3);
  color: var(--gold); font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 4px; margin-bottom: 1.5rem;
}
.hero-eyebrow::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 88px);
  color: var(--white); line-height: 0.95;
  letter-spacing: 0.02em; margin-bottom: 1.5rem;
}
.hero-title .gold { color: var(--gold); }
.hero-title .orange { color: var(--orange); }
.hero-subtitle {
  font-size: 18px; color: rgba(255,255,255,0.7);
  max-width: 480px; margin-bottom: 2.5rem; line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.btn-primary {
  background: var(--orange); color: var(--white);
  padding: 14px 32px; border-radius: 4px; font-size: 16px; font-weight: 700;
  text-decoration: none; letter-spacing: 0.04em; transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: #c93e0f; transform: translateY(-2px); }
.btn-secondary {
  background: transparent; color: var(--white);
  padding: 14px 32px; border-radius: 4px; font-size: 16px; font-weight: 600;
  text-decoration: none; border: 1px solid rgba(255,255,255,0.3);
  transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
.hero-stats { display: flex; gap: 2rem; }
.hero-stat { }
.hero-stat-num { font-family: var(--font-display); font-size: 36px; color: var(--gold); line-height: 1; }
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.5); letter-spacing: 0.06em; text-transform: uppercase; margin-top: 2px; }
.hero-visual { position: relative; }
.hero-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(245,184,0,0.2);
  border-radius: 12px; overflow: hidden;
}
.hero-card-header {
  background: var(--gold); padding: 1rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.hero-card-title { font-family: var(--font-condensed); font-size: 18px; font-weight: 700; color: var(--navy); letter-spacing: 0.04em; }
.hero-card-badge { background: var(--navy); color: var(--gold); font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 20px; letter-spacing: 0.06em; }
.hero-card-body { padding: 1.5rem; }
.hero-module {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hero-module:last-child { border-bottom: none; }
.hero-module-num { font-family: var(--font-condensed); font-size: 13px; font-weight: 700; color: var(--gold); width: 28px; flex-shrink: 0; }
.hero-module-title { font-size: 14px; color: rgba(255,255,255,0.8); }
.hero-module-tag { margin-left: auto; font-size: 11px; color: rgba(255,255,255,0.4); white-space: nowrap; }
.hero-card-footer {
  background: rgba(232,78,27,0.15); border-top: 1px solid rgba(232,78,27,0.3);
  padding: 1rem 1.5rem; display: flex; align-items: center; justify-content: space-between;
}
.hero-price { font-family: var(--font-display); font-size: 32px; color: var(--white); }
.hero-price-label { font-size: 12px; color: rgba(255,255,255,0.5); }

/* ── WHAT IS FBA ── */
.what-is-fba { background: var(--off-white); }
.fba-explainer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.fba-step {
  background: var(--white); border-radius: 8px; border: 1px solid var(--light-grey);
  padding: 2rem 1.5rem; position: relative; transition: transform 0.2s, box-shadow 0.2s;
}
.fba-step:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(13,31,60,0.1); }
.fba-step-num {
  font-family: var(--font-display); font-size: 48px; color: rgba(245,184,0,0.12);
  position: absolute; top: 12px; right: 16px; line-height: 1;
}
.fba-step-icon { font-size: 32px; margin-bottom: 1rem; }
.fba-step-title { font-family: var(--font-condensed); font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.fba-step-desc { font-size: 14px; color: var(--grey); line-height: 1.6; }

/* ── FBA GROWTH CHARTS ── */
.fba-growth { background: var(--navy-dark); position: relative; overflow: hidden; }
.fba-growth::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(245,184,0,0.05) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(232,78,27,0.04) 0%, transparent 50%);
}
.fba-growth .section-inner { position: relative; z-index: 2; }
.growth-charts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 3rem; }
.growth-chart-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(245,184,0,0.15);
  border-radius: 10px; overflow: hidden;
}
.growth-chart-header {
  padding: 1.25rem 1.5rem; display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.growth-chart-title { font-family: var(--font-condensed); font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.8); letter-spacing: 0.04em; }
.growth-chart-badge {
  font-family: var(--font-condensed); font-size: 12px; font-weight: 700;
  padding: 3px 10px; border-radius: 20px; letter-spacing: 0.06em;
}
.growth-chart-badge.up { background: rgba(74,222,128,0.15); color: #4ADE80; }
.growth-chart-visual { padding: 1.5rem; }
.growth-svg { width: 100%; height: 140px; }
.growth-chart-labels {
  display: flex; justify-content: space-between; padding-top: 0.75rem;
  font-size: 11px; color: rgba(255,255,255,0.35); font-family: var(--font-condensed);
}
.growth-stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.08);
}
.growth-stat-item { text-align: center; }
.growth-stat-num {
  font-family: var(--font-display); font-size: clamp(28px, 4vw, 42px);
  color: var(--gold); line-height: 1; margin-bottom: 0.5rem;
}
.growth-stat-label { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.4; }

/* ── WHY FBA ── */
.why-fba { background: var(--white); }
.why-fba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.why-fba-card {
  background: var(--off-white); border-radius: 8px; padding: 2rem;
  border: 1px solid var(--light-grey); transition: transform 0.2s, box-shadow 0.2s;
}
.why-fba-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(13,31,60,0.1); }
.why-fba-icon { margin-bottom: 1rem; }
.why-fba-title { font-family: var(--font-condensed); font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.why-fba-desc { font-size: 14px; color: var(--grey); line-height: 1.6; }

/* ── SELLER JOURNEY ── */
.seller-journey { background: var(--navy); position: relative; overflow: hidden; }
.seller-journey::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(245,184,0,0.04) 0%, transparent 60%);
}
.seller-journey .section-inner { position: relative; z-index: 2; }
.journey-chart-container {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(245,184,0,0.12);
  border-radius: 12px; padding: 2rem; margin-bottom: 2.5rem;
}
.journey-chart-svg { width: 100%; height: auto; max-height: 300px; }
.journey-milestones { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.journey-milestone {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(245,184,0,0.15);
  border-radius: 8px; padding: 1.25rem;
}
.journey-milestone-period {
  font-family: var(--font-condensed); font-size: 13px; font-weight: 700;
  color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.5rem;
}
.journey-milestone-text { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ── SECTIONS ── */
section { padding: 6rem 2rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-eyebrow {
  font-family: var(--font-condensed); font-size: 13px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(36px, 5vw, 56px);
  color: var(--navy); line-height: 1; margin-bottom: 1.25rem;
}
.section-title.light { color: var(--white); }
.section-subtitle { font-size: 17px; color: var(--grey); max-width: 560px; line-height: 1.7; margin-bottom: 3rem; }
.section-subtitle.light { color: rgba(255,255,255,0.65); }

/* ── MODELS ── */
.models { background: var(--off-white); }
.models-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.model-card {
  background: var(--white); border-radius: 8px;
  border: 1px solid var(--light-grey);
  overflow: hidden; transition: transform 0.2s, box-shadow 0.2s;
}
.model-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(13,31,60,0.12); }
.model-card-top { padding: 2rem; border-bottom: 3px solid; }
.model-card-top.ra { border-color: var(--orange); }
.model-card-top.oa { border-color: var(--gold); }
.model-card-top.a2a { border-color: var(--navy); }
.model-icon { font-size: 36px; margin-bottom: 1rem; }
.model-tag {
  font-family: var(--font-condensed); font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 20px; display: inline-block; margin-bottom: 0.75rem;
}
.model-tag.ra { background: rgba(232,78,27,0.1); color: var(--orange); }
.model-tag.oa { background: rgba(245,184,0,0.15); color: var(--gold-dark); }
.model-tag.a2a { background: rgba(13,31,60,0.08); color: var(--navy); }
.model-name { font-family: var(--font-condensed); font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.model-desc { font-size: 14px; color: var(--grey); line-height: 1.6; }
.model-card-bottom { padding: 1.5rem 2rem; }
.model-points { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.model-points li { font-size: 14px; color: var(--navy); display: flex; gap: 8px; align-items: flex-start; }
.model-points li::before { content: '→'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* ── ABOUT ── */
.about { background: var(--navy); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-label { font-family: var(--font-condensed); font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.about-text { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 1.5rem; }
.presenters { display: flex; flex-direction: column; gap: 1rem; }
.presenter {
  display: flex; align-items: center; gap: 1rem;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(245,184,0,0.2);
  border-radius: 8px; padding: 1.25rem;
}
.presenter-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-condensed); font-size: 20px; font-weight: 700;
  flex-shrink: 0;
}
.presenter-avatar.callum { background: var(--gold); color: var(--navy); }
.presenter-avatar.ayron { background: var(--orange); color: var(--white); }
.presenter-name { font-family: var(--font-condensed); font-size: 18px; font-weight: 700; color: var(--white); }
.presenter-role { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 2px; }
.presenter-spec { font-size: 12px; color: var(--gold); margin-top: 4px; }

/* ── MODULES ── */
.modules-section { background: var(--off-white); }
.modules-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.module-item {
  background: var(--white); border-radius: 6px;
  border: 1px solid var(--light-grey);
  padding: 1.25rem 1.5rem;
  display: flex; align-items: flex-start; gap: 1rem;
  transition: border-color 0.2s;
}
.module-item:hover { border-color: var(--gold); }
.module-num {
  font-family: var(--font-display); font-size: 28px; color: var(--gold);
  line-height: 1; flex-shrink: 0; width: 32px;
}
.module-info-title { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 3px; }
.module-info-sub { font-size: 13px; color: var(--grey); }

/* ── PRICING ── */
.pricing { background: var(--navy-dark); position: relative; overflow: hidden; }
.pricing::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(245,184,0,0.06) 0%, transparent 70%);
}
.pricing-inner { position: relative; z-index: 2; }
.pricing-card {
  max-width: 560px; margin: 0 auto;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(245,184,0,0.3);
  border-radius: 12px; overflow: hidden;
}
.pricing-card-top { padding: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.pricing-name { font-family: var(--font-display); font-size: 36px; color: var(--white); margin-bottom: 0.5rem; }
.pricing-desc { color: rgba(255,255,255,0.6); font-size: 15px; margin-bottom: 1.5rem; }
.pricing-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 0.5rem; }
.pricing-amount { font-family: var(--font-display); font-size: 64px; color: var(--gold); line-height: 1; }
.pricing-currency { font-size: 24px; color: var(--gold); margin-bottom: 8px; }
.pricing-period { font-size: 15px; color: rgba(255,255,255,0.5); }
.pricing-plan { font-size: 13px; color: rgba(255,255,255,0.4); margin-top: 4px; }
.pricing-features { padding: 2rem 2.5rem; display: flex; flex-direction: column; gap: 12px; }
.pricing-feature { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: rgba(255,255,255,0.8); }
.pricing-feature::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.pricing-card-footer { padding: 1.5rem 2.5rem 2.5rem; }
.pricing-cta {
  display: block; width: 100%;
  background: var(--orange); color: var(--white);
  text-align: center; padding: 16px; border-radius: 6px;
  font-size: 18px; font-weight: 700; text-decoration: none;
  letter-spacing: 0.04em; transition: background 0.2s;
}
.pricing-cta:hover { background: #c93e0f; }
.pricing-guarantee { text-align: center; font-size: 13px; color: rgba(255,255,255,0.4); margin-top: 1rem; }

/* ── BLOG HERO ── */
.blog-hero {
  padding-top: calc(68px + 4rem); padding-bottom: 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #071428 0%, #0D1F3C 30%, #142850 55%, #0D1F3C 80%, #071428 100%);
}
.animated-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 25% 20%, rgba(245,184,0,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 75% 80%, rgba(232,78,27,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(245,184,0,0.06) 0%, transparent 70%);
  animation: blogBgShift 8s ease-in-out infinite alternate;
}
@keyframes blogBgShift {
  0% { opacity: 1; transform: scale(1) rotate(0deg); }
  100% { opacity: 0.8; transform: scale(1.1) rotate(1deg); }
}
.animated-grid {
  position: absolute; inset: 0; opacity: 0.06;
  background-image:
    linear-gradient(rgba(245,184,0,0.6) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,184,0,0.6) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: blogGridDrift 20s linear infinite;
}
@keyframes blogGridDrift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}
.animated-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.animated-glow.glow-1 {
  width: 400px; height: 400px;
  background: rgba(245,184,0,0.12);
  top: -100px; right: -50px;
  animation: glowFloat1 6s ease-in-out infinite alternate;
}
.animated-glow.glow-2 {
  width: 300px; height: 300px;
  background: rgba(232,78,27,0.10);
  bottom: -80px; left: -40px;
  animation: glowFloat2 7s ease-in-out infinite alternate;
}
.animated-glow.glow-3 {
  width: 250px; height: 250px;
  background: rgba(245,184,0,0.08);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  animation: glowFloat3 5s ease-in-out infinite alternate;
}
@keyframes glowFloat1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-30px, 20px) scale(1.2); }
}
@keyframes glowFloat2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(25px, -15px) scale(1.15); }
}
@keyframes glowFloat3 {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  100% { transform: translate(-50%, -50%) scale(1.3); opacity: 1; }
}
.animated-particles {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
}
.animated-particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 4s ease-in-out infinite;
}
.animated-particle.p1 { width: 6px; height: 6px; background: var(--gold); top: 20%; left: 15%; animation-delay: 0s; animation-duration: 5s; }
.animated-particle.p2 { width: 4px; height: 4px; background: var(--orange); top: 30%; left: 80%; animation-delay: 0.8s; animation-duration: 6s; }
.animated-particle.p3 { width: 8px; height: 8px; background: var(--gold); top: 60%; left: 25%; animation-delay: 1.5s; animation-duration: 4.5s; }
.animated-particle.p4 { width: 3px; height: 3px; background: rgba(255,255,255,0.6); top: 15%; left: 65%; animation-delay: 2s; animation-duration: 5.5s; }
.animated-particle.p5 { width: 5px; height: 5px; background: var(--gold); top: 70%; left: 75%; animation-delay: 0.5s; animation-duration: 6.5s; }
.animated-particle.p6 { width: 4px; height: 4px; background: var(--orange); top: 45%; left: 10%; animation-delay: 3s; animation-duration: 5s; }
.animated-particle.p7 { width: 6px; height: 6px; background: rgba(255,255,255,0.4); top: 80%; left: 50%; animation-delay: 1.2s; animation-duration: 4s; }
.animated-particle.p8 { width: 3px; height: 3px; background: var(--gold); top: 25%; left: 45%; animation-delay: 2.5s; animation-duration: 7s; }
@keyframes particleFloat {
  0% { opacity: 0; transform: translateY(0) scale(0.5); }
  20% { opacity: 0.8; }
  50% { opacity: 1; transform: translateY(-30px) scale(1); }
  80% { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(-60px) scale(0.3); }
}

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.blog-card {
  border: 1px solid var(--light-grey); border-radius: 8px; overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(13,31,60,0.1); }
.blog-card-img { height: 180px; display: flex; align-items: center; justify-content: center; font-size: 48px; }
.blog-card-img.b1 { background: rgba(232,78,27,0.08); }
.blog-card-img.b2 { background: rgba(245,184,0,0.1); }
.blog-card-img.b3 { background: rgba(13,31,60,0.06); }
.blog-card-body { padding: 1.5rem; }
.blog-tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--orange); margin-bottom: 0.5rem; }
.blog-title { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; line-height: 1.4; }
.blog-excerpt { font-size: 13px; color: var(--grey); line-height: 1.6; margin-bottom: 1rem; }
.blog-read { font-size: 13px; font-weight: 600; color: var(--navy); text-decoration: none; border-bottom: 1px solid var(--gold); padding-bottom: 1px; }

/* ── BLOG POST ── */
.blog-post-article { max-width: 760px; margin: 0 auto; }
.blog-post-back {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--navy);
  text-decoration: none; margin-bottom: 2rem; transition: color 0.2s;
}
.blog-post-back:hover { color: var(--orange); }
.blog-post-tag {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--orange); margin-bottom: 0.75rem;
}
.blog-post-h1 {
  font-family: var(--font-display); font-size: clamp(32px, 5vw, 52px);
  color: var(--navy); line-height: 1.05; margin-bottom: 1rem;
}
.blog-post-meta { font-size: 14px; color: var(--grey); margin-bottom: 2.5rem; padding-bottom: 2rem; border-bottom: 1px solid var(--light-grey); }
.blog-post-article h2 {
  font-family: var(--font-condensed); font-size: 24px; font-weight: 700;
  color: var(--navy); margin: 2.5rem 0 1rem; letter-spacing: 0.02em;
}
.blog-post-article h3 {
  font-family: var(--font-condensed); font-size: 20px; font-weight: 700;
  color: var(--navy); margin: 2rem 0 0.75rem;
}
.blog-post-article p { font-size: 16px; color: var(--grey); line-height: 1.8; margin-bottom: 1.25rem; }
.blog-post-article ul, .blog-post-article ol { margin: 1rem 0 1.5rem 1.5rem; display: flex; flex-direction: column; gap: 8px; }
.blog-post-article li { font-size: 15px; color: var(--grey); line-height: 1.7; }
.blog-post-article strong { color: var(--navy); }
.blog-post-callout {
  background: rgba(245,184,0,0.08); border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0; padding: 1.25rem 1.5rem; margin: 2rem 0;
}
.blog-post-callout p { margin-bottom: 0; font-size: 15px; }
.blog-post-cta {
  background: var(--navy); border-radius: 12px; padding: 2.5rem;
  text-align: center; margin-top: 3rem;
}
.blog-post-cta p { color: rgba(255,255,255,0.65); margin-bottom: 1.5rem; }
.blog-post-cta h3 { color: var(--white); margin-top: 0; }
.blog-post-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 14px; }
.blog-post-table th {
  background: var(--navy); color: var(--white); font-family: var(--font-condensed);
  font-weight: 700; letter-spacing: 0.04em; padding: 10px 14px; text-align: left;
}
.blog-post-table td { padding: 10px 14px; border-bottom: 1px solid var(--light-grey); color: var(--grey); }
.blog-post-table tr:hover td { background: var(--off-white); }

/* ── CONTACT ── */
.contact { background: var(--off-white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 13px; font-weight: 600; color: var(--navy); }
.form-input, .form-textarea, .form-select {
  padding: 12px 16px; border: 1px solid var(--light-grey);
  border-radius: 6px; font-size: 15px; font-family: var(--font-body);
  color: var(--navy); background: var(--white);
  transition: border-color 0.2s; outline: none;
}
.form-input:focus, .form-textarea:focus { border-color: var(--gold); }
.form-textarea { resize: vertical; min-height: 120px; }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px; background: var(--navy);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.contact-info-label { font-size: 12px; font-weight: 600; color: var(--grey); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2px; }
.contact-info-value { font-size: 15px; color: var(--navy); font-weight: 500; }

/* ── FOOTER ── */
footer {
  background: var(--navy-dark);
  border-top: 1px solid rgba(245,184,0,0.15);
  padding: 3rem 2rem;
}
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 1rem; }
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.7; max-width: 260px; }
.footer-col-title { font-family: var(--font-condensed); font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1200px; margin: 2rem auto 0;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.3); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .models-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .modules-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero-stats { flex-wrap: wrap; gap: 1rem; }
  .fba-explainer-grid { grid-template-columns: 1fr 1fr; }
  .growth-charts-grid { grid-template-columns: 1fr; }
  .growth-stats-row { grid-template-columns: 1fr 1fr; }
  .why-fba-grid { grid-template-columns: 1fr; }
  .journey-milestones { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .fba-explainer-grid { grid-template-columns: 1fr; }
  .growth-stats-row { grid-template-columns: 1fr; }
  .journey-milestones { grid-template-columns: 1fr; }
}

/* ── PAGE VISIBILITY ── */
.page { display: none; }
.page.active { display: block; }
.page-hero {
  padding-top: calc(68px + 4rem); padding-bottom: 4rem;
  background: linear-gradient(135deg, #071428 0%, #0D1F3C 30%, #142850 55%, #0D1F3C 80%, #071428 100%);
  position: relative;
  overflow: hidden; text-align: center;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease forwards; }
.delay-1 { animation-delay: 0.1s; opacity: 0; }
.delay-2 { animation-delay: 0.2s; opacity: 0; }
.delay-3 { animation-delay: 0.3s; opacity: 0; }
.delay-4 { animation-delay: 0.4s; opacity: 0; }
