/* =============================================
   BIMADECODER — style.css
   Palette: Navy #0D1B3E, Saffron #FF9933,
   Jade #2ECC8F, Cream #FDF8F0, Slate #64748B
   Type: Plus Jakarta Sans + IBM Plex Mono
============================================= */

:root {
  --navy:       #0D1B3E;
  --navy-mid:   #162850;
  --navy-light: #1E3A6E;
  --saffron:    #FF9933;
  --saffron-light: #FFEBD3;
  --jade:       #2ECC8F;
  --jade-dark:  #1A7A56;
  --red:        #E24B4A;
  --red-light:  #FCEBEB;
  --amber:      #F59E0B;
  --amber-light:#FEF3C7;
  --cream:      #FDF8F0;
  --white:      #FFFFFF;
  --text-main:  #0F1923;
  --text-mid:   #374151;
  --text-muted: #6B7280;
  --border:     #E5E7EB;
  --border-dark:#D1D5DB;

  --font-sans:  'Plus Jakarta Sans', system-ui, sans-serif;
  --font-mono:  'IBM Plex Mono', 'Courier New', monospace;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  18px;
  --radius-xl:  28px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.14);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--text-main);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
input, select, textarea, button { font-family: inherit; }

/* CONTAINER */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   BUTTONS
============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.18s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn-large { padding: 14px 28px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--saffron);
  color: var(--navy);
  border-color: var(--saffron);
}
.btn-primary:hover {
  background: #e8861a;
  border-color: #e8861a;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255,153,51,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--border-dark);
}
.btn-outline:hover {
  border-color: var(--navy);
  background: var(--cream);
}

.btn-nav {
  background: var(--navy);
  color: var(--white);
  font-size: 14px;
  padding: 9px 18px;
}
.btn-nav:hover { background: var(--navy-light); }

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}
.btn-whatsapp:hover {
  background: #1db954;
  border-color: #1db954;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.3);
}

/* =============================================
   NAV
============================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-shield {
  width: 34px;
  height: 34px;
  background: var(--navy);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  color: var(--saffron);
  flex-shrink: 0;
}
.logo-text {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.logo-dot { color: var(--saffron); }
.nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--navy); }
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--navy);
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 16px;
  border-top: 1px solid var(--border);
}
.nav-mobile a {
  padding: 10px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
}
.nav-mobile.open { display: flex; }

/* =============================================
   PILLS & EYEBROWS
============================================= */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.03em;
}
.pill-live {
  background: #EAF3DE;
  color: #2D6A06;
  border: 1px solid #C3E0A0;
}
.pill-plain {
  background: var(--saffron-light);
  color: #7A4200;
  border: 1px solid #FFD499;
}
.pulse-dot {
  width: 6px;
  height: 6px;
  background: #3A9907;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 12px;
}
.section-eyebrow.light { color: var(--saffron-light); }
.section-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  margin-top: 12px;
  max-width: 540px;
  line-height: 1.65;
}
.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-header .section-sub { margin: 12px auto 0; }

/* =============================================
   HERO
============================================= */
.hero {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  padding: 96px 0 80px;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,153,51,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,153,51,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-eyebrow {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.hero-headline {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 760px;
  margin-bottom: 24px;
}
.headline-accent {
  color: var(--saffron);
  position: relative;
  display: inline-block;
}
.headline-accent::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--saffron);
  opacity: 0.3;
  border-radius: 2px;
}
.hero-subhead {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  max-width: 580px;
  margin-bottom: 36px;
}
.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.hero-note {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 56px;
  font-family: var(--font-mono);
}

/* STAT BAR */
.stat-bar {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 180px;
  padding: 0 24px;
}
.stat:first-child { padding-left: 0; }
.stat:last-child { padding-right: 0; }
.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--saffron);
  letter-spacing: -0.02em;
  font-family: var(--font-mono);
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  height: 52px;
  background: rgba(255,255,255,0.12);
}

/* =============================================
   PAIN SECTION
============================================= */
.pain {
  background: var(--cream);
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.pain-story {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.pain-tag {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 20px;
}
.pain-quote {
  font-size: 1.35rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
  border-left: 4px solid var(--saffron);
  text-align: left;
  padding: 20px 28px;
  background: var(--white);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.pain-explain {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 16px;
}
.pain-explain strong { color: var(--navy); font-weight: 700; }
.pain-explain em { font-style: normal; color: var(--red); font-weight: 600; }
.pain-cta-line {
  font-size: 15px;
  font-weight: 600;
  color: var(--jade-dark);
}

/* =============================================
   HOW IT WORKS
============================================= */
.hiw {
  padding: 96px 0;
  background: var(--white);
}
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  flex: 1;
  padding: 0 24px;
}
.step-icon {
  width: 64px;
  height: 64px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--saffron);
  flex-shrink: 0;
}
.step-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.step-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}
.step-arrow {
  font-size: 22px;
  color: var(--border-dark);
  padding-top: 20px;
  flex-shrink: 0;
}

/* =============================================
   CLAUSE SCANNER
============================================= */
.scanner-section {
  background: var(--cream);
  padding: 96px 0;
}
.traps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.trap-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform 0.18s, box-shadow 0.18s;
}
.trap-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.trap-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.trap-danger::before { background: var(--red); }
.trap-warning::before { background: var(--amber); }
.trap-safe::before { background: var(--jade); }

.trap-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.trap-header i { font-size: 22px; }
.trap-danger .trap-header i { color: var(--red); }
.trap-warning .trap-header i { color: var(--amber); }
.trap-safe .trap-header i { color: var(--jade-dark); }

.trap-severity {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.trap-severity.danger { background: var(--red-light); color: #8B1A1A; }
.trap-severity.warning { background: var(--amber-light); color: #78350F; }
.trap-severity.safe { background: #DCFCE7; color: #14532D; }

.trap-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.trap-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}
.trap-example {
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--text-mid);
  background: var(--cream);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--saffron);
}

/* =============================================
   SIMULATOR
============================================= */
.sim-section {
  background: var(--white);
  padding: 96px 0;
}
.simulator-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.sim-left {
  padding: 36px;
  background: var(--navy);
}
.sim-right {
  padding: 36px;
  background: var(--white);
}
.sim-slider-group { display: flex; flex-direction: column; gap: 28px; }
.sim-slider-row { display: flex; flex-direction: column; gap: 8px; }
.sim-slider-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sim-slider-label { font-size: 13px; color: rgba(255,255,255,0.65); }
.sim-slider-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--saffron);
  font-family: var(--font-mono);
}
input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  background: var(--saffron);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 0 3px rgba(255,153,51,0.25);
  transition: box-shadow 0.15s;
}
input[type="range"]::-webkit-slider-thumb:hover {
  box-shadow: 0 0 0 6px rgba(255,153,51,0.2);
}
.sim-slider-bounds {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  font-family: var(--font-mono);
}

.sim-result-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.sim-rows { display: flex; flex-direction: column; gap: 10px; }
.sim-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}
.sim-row span:first-child { color: var(--text-muted); }
.sim-row-val { font-weight: 600; color: var(--text-main); font-family: var(--font-mono); }
.sim-divider { height: 1px; background: var(--border); margin: 4px 0; }
.sim-row-total span { font-weight: 700; font-size: 15px; color: var(--navy); }
.sim-row-total span:last-child { font-family: var(--font-mono); }
.sim-row-deduct span:last-child { color: var(--red); font-weight: 700; font-family: var(--font-mono); }
.sim-row-ins span:last-child { color: var(--jade-dark); font-weight: 700; font-family: var(--font-mono); }
.sim-row-oop span { font-weight: 700; }
.sim-row-oop span:last-child { color: var(--red); font-family: var(--font-mono); }

.sim-bar-wrap { margin-top: 16px; }
.sim-bar {
  height: 10px;
  border-radius: 5px;
  background: var(--border);
  overflow: hidden;
  display: flex;
}
.sim-bar-ins { background: var(--jade); height: 100%; transition: width 0.3s ease; border-radius: 5px 0 0 5px; }
.sim-bar-oop { background: var(--red); height: 100%; transition: width 0.3s ease; }
.sim-bar-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  font-size: 11px;
  font-family: var(--font-mono);
}
.label-ins { color: var(--jade-dark); }
.label-oop { color: var(--red); }

.sim-warning {
  margin-top: 16px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 10px 14px;
  background: var(--red-light);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: #7A1515;
  line-height: 1.5;
}
.sim-warning i { color: var(--red); font-size: 16px; margin-top: 1px; flex-shrink: 0; }
.sim-disclaimer {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 20px;
}

/* =============================================
   LANGUAGES
============================================= */
.langs-section {
  background: var(--navy);
  padding: 96px 0;
}
.langs-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.langs-text { color: var(--white); }
.langs-text .section-title { color: var(--white); }
.langs-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 24px;
}
.lang-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.lang-chip {
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: all 0.15s;
}
.lang-chip:hover, .lang-chip.active {
  border-color: var(--saffron);
  color: var(--saffron);
  background: rgba(255,153,51,0.1);
}

.langs-chat {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.chat-bubble {
  max-width: 85%;
  padding: 14px 18px;
  border-radius: var(--radius-lg);
  font-size: 14px;
  line-height: 1.6;
  position: relative;
}
.chat-who {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
  opacity: 0.6;
}
.chat-bubble.user {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.12);
  align-self: flex-end;
  border-radius: var(--radius-lg) var(--radius-lg) 4px var(--radius-lg);
}
.chat-bubble.bot {
  background: var(--white);
  color: var(--text-main);
  align-self: flex-start;
  border-radius: var(--radius-lg) var(--radius-lg) var(--radius-lg) 4px;
  box-shadow: var(--shadow-md);
}
.chat-bubble.bot .chat-who { color: var(--jade-dark); }

/* =============================================
   PRICING
============================================= */
.agents-section {
  background: var(--cream);
  padding: 96px 0;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  position: relative;
}
.pricing-featured {
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(255,153,51,0.15);
  transform: scale(1.03);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--saffron);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.pricing-tier {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.pricing-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
  font-family: var(--font-mono);
}
.pricing-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0;
}
.pricing-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.pricing-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.45;
}
.pricing-list li i {
  color: var(--jade-dark);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* =============================================
   WAITLIST
============================================= */
.waitlist-section {
  background: var(--navy);
  padding: 96px 0;
}
.waitlist-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.waitlist-text { color: var(--white); }
.waitlist-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.waitlist-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 28px;
}
.trust-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-row span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-mono);
}
.trust-row span i { color: var(--jade); }

.waitlist-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px;
}
.waitlist-form { display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
}
.form-group input,
.form-group select {
  padding: 12px 16px;
  border: 1.5px solid var(--border-dark);
  border-radius: var(--radius-md);
  font-size: 15px;
  color: var(--text-main);
  background: var(--white);
  transition: border-color 0.15s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(13,27,62,0.1);
}
.form-group input::placeholder { color: var(--text-muted); }
.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: #DCFCE7;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  color: #14532D;
}
.form-success i { font-size: 20px; color: var(--jade-dark); }

/* =============================================
   FOOTER
============================================= */
.footer {
  background: #080F1F;
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.65;
  max-width: 280px;
}
.footer-brand .nav-logo { pointer-events: none; }
.footer-brand .logo-text { color: rgba(255,255,255,0.8); }
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 6px;
}
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--saffron); }
.footer-bottom {
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .btn-nav { display: none; }
  .nav-hamburger { display: flex; }
  .hero { padding: 64px 0 56px; }
  .hero-headline { font-size: 2.2rem; }
  .stat-bar { flex-direction: column; gap: 24px; padding: 24px; }
  .stat-divider { width: 100%; height: 1px; }
  .stat { min-width: auto; padding: 0; }
  .steps { flex-direction: column; gap: 32px; }
  .step-arrow { display: none; }
  .traps-grid { grid-template-columns: 1fr 1fr; }
  .simulator-card { grid-template-columns: 1fr; }
  .langs-inner { grid-template-columns: 1fr; gap: 40px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-featured { transform: none; }
  .waitlist-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .section-title { font-size: 1.9rem; }
}

@media (max-width: 560px) {
  .traps-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 1.9rem; }
  .hero-cta-row { flex-direction: column; }
  .btn-large { font-size: 15px; padding: 13px 20px; }
  .footer-links { grid-template-columns: 1fr; }
  .waitlist-form-wrap { padding: 24px; }
  .sim-left { padding: 24px; }
  .sim-right { padding: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
