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

:root {
  /* Primary palette */
  --primary: #0a1628;
  --accent: #004370;
  --accent-dark: #003059;
  --accent-light: #e8f0f8;

  /* Text */
  --text: #1a1f2e;
  --text-light: #4a5568;
  --text-muted: #8896a6;

  /* Backgrounds */
  --bg: #ffffff;
  --bg-alt: #f7fafc;

  /* Utility */
  --border: #e2e8f0;
  --success: #10b981;
  --warning: #f59e0b;

  /* Design tokens */
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 24px;

  /* Shadows */
  --shadow: 0 1px 3px rgba(30,45,82,0.06), 0 1px 2px rgba(30,45,82,0.04);
  --shadow-md: 0 4px 12px rgba(30,45,82,0.08);
  --shadow-lg: 0 10px 40px rgba(30,45,82,0.1);
  --shadow-glass: 0 0 1px 1px rgba(30,45,82,0.06), 0 4px 16px rgba(30,45,82,0.06);

  /* Nav */
  --nav-bg: rgba(255, 255, 255, 0.85);
  --nav-blur: blur(12px);

  /* Footer */
  --footer-bg: #004370;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dark); text-decoration: none; }

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

/* === LAYOUT === */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.container--narrow { max-width: 780px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

/* === NAV === */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: var(--nav-blur);
  -webkit-backdrop-filter: var(--nav-blur);
  box-shadow: var(--shadow-glass);
  padding: 14px 0;
  transition: background 0.3s, box-shadow 0.3s;
}
.nav .container { display: flex; justify-content: space-between; align-items: center; }
.nav__logo { display: flex; align-items: center; }
.nav__logo img { height: 42px; width: auto; display: block; }
.nav__links { display: flex; gap: 32px; align-items: center; }
.nav__links a { color: var(--text-light); font-size: 15px; font-weight: 500; transition: color 0.2s; }
.nav__links a:hover { color: var(--accent); text-decoration: none; }

/* Nav CTA button */
.btn--nav { padding: 10px 24px; font-size: 14px; border-radius: 24px; }

/* === HAMBURGER === */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav__hamburger.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav__hamburger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* === BUTTONS === */
.btn {
  display: inline-block; padding: 14px 32px;
  background: var(--accent); color: #fff;
  font-size: 16px; font-weight: 600;
  border: none; border-radius: var(--radius);
  cursor: pointer; transition: all 0.2s;
  text-align: center;
}
.btn:hover { background: var(--accent-dark); text-decoration: none; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--outline {
  background: transparent; color: var(--accent);
  border: 2px solid var(--accent);
}
.btn--outline:hover { background: var(--accent); color: #fff; }
.btn--large { padding: 18px 40px; font-size: 18px; border-radius: 16px; }
.btn--full { width: 100%; }

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
  background: radial-gradient(ellipse 120% 60% at 50% 80%, rgba(0,67,112,0.04) 0%, rgba(247,250,252,0.5) 50%, var(--bg) 100%);
}

/* Infinite Grid Background */
.grid-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.grid-bg--base {
  opacity: 0.05;
}
.grid-bg--reveal {
  opacity: 0.35;
  -webkit-mask-image: radial-gradient(350px circle at 50% 50%, black, transparent);
  mask-image: radial-gradient(350px circle at 50% 50%, black, transparent);
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero__logo {
  display: block;
  max-width: 280px;
  height: auto;
  margin: 0 auto 32px;
}
.hero__badge {
  display: inline-block;
  background: var(--accent-light); color: var(--accent);
  padding: 8px 20px; border-radius: 24px;
  font-size: 14px; font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}
.hero h1 {
  font-size: 56px; line-height: 1.1;
  font-weight: 900; color: var(--primary);
  margin-bottom: 28px;
  letter-spacing: -0.03em;
}
.hero h1 span { color: var(--accent); }
.hero__sub {
  font-size: 20px; color: var(--text-light);
  max-width: 640px; margin: 0 auto 40px;
  line-height: 1.6;
}
.hero__ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Hero for sub-pages */
.hero--small {
  min-height: auto;
  padding: 160px 0 40px;
}

/* === STATS BAR === */
.stats {
  background: var(--primary);
  background-image: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(0,67,112,0.6) 0%, var(--primary) 100%);
  color: #fff;
  padding: 56px 0;
  position: relative;
}
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  text-align: center;
}
.stats__item h3 { font-size: 36px; font-weight: 800; color: #60a5fa; margin-bottom: 4px; }
.stats__item p { font-size: 14px; color: rgba(255,255,255,0.7); }

/* === SECTIONS === */
.section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.section--alt {
  background: var(--bg-alt);
  background-image: radial-gradient(ellipse 80% 50% at 20% 50%, rgba(0,67,112,0.03) 0%, transparent 70%);
}
.section__header {
  text-align: center; max-width: 640px; margin: 0 auto 64px;
}
.section__header h2 {
  font-size: 40px; font-weight: 800; margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section__header p { font-size: 18px; color: var(--text-light); }

/* === PROBLEM SECTION === */
.problem__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.problem__text h2 { font-size: 34px; font-weight: 800; margin-bottom: 20px; }
.problem__text p { color: var(--text-light); margin-bottom: 16px; }
.problem__highlight {
  background: #fef3c7; border-left: 4px solid var(--warning);
  padding: 20px 24px; border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0; font-weight: 500;
}
.problem__visual {
  background: var(--bg-alt); border-radius: var(--radius-lg); padding: 40px;
  border: 1px solid var(--border);
}
.problem__visual h4 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); margin-bottom: 24px; }
.ai-result { background: #fff; border-radius: var(--radius); padding: 20px; margin-bottom: 12px; border: 1px solid var(--border); }
.ai-result.winner { border-color: var(--success); background: #f0fdf4; }
.ai-result__label { font-size: 13px; color: var(--text-muted); margin-bottom: 4px; }
.ai-result__brand { font-weight: 700; font-size: 18px; }
.ai-result__note { font-size: 14px; color: var(--text-light); }

/* === LAYERS / SERVICES === */
.layers__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.layer-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px;
  transition: all 0.3s ease;
}
.layer-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.layer-card__number {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent-light); color: var(--accent);
  font-weight: 800; font-size: 16px; margin-bottom: 16px;
}
.layer-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.layer-card p { color: var(--text-light); font-size: 15px; }

/* === BEFORE/AFTER === */
.comparison {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  max-width: 800px; margin: 0 auto;
}
.comparison__box {
  border-radius: var(--radius-lg); padding: 40px;
  border: 1px solid var(--border);
}
.comparison__box--before { background: #fef2f2; border-color: #fecaca; }
.comparison__box--after { background: #f0fdf4; border-color: #bbf7d0; }
.comparison__box h3 { font-size: 22px; font-weight: 700; margin-bottom: 20px; }
.comparison__box ul { list-style: none; }
.comparison__box li { padding: 8px 0; font-size: 16px; }
.comparison__box--before li::before { content: "\2715  "; color: #ef4444; font-weight: 700; }
.comparison__box--after li::before { content: "\2713  "; color: var(--success); font-weight: 700; }

/* === PROCESS === */
.process__steps { max-width: 700px; margin: 0 auto; }
.process__step {
  display: flex; gap: 24px; padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.process__step:last-child { border-bottom: none; }
.process__step-num {
  flex-shrink: 0; width: 48px; height: 48px;
  background: var(--accent); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px;
}
.process__step h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.process__step p { color: var(--text-light); font-size: 15px; }

/* === PRICING === */
.pricing__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pricing__card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px 32px; text-align: center;
}
.pricing__card--featured { border-color: var(--accent); box-shadow: 0 0 0 2px var(--accent); position: relative; }
.pricing__card--featured::before {
  content: "Most Popular";
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff;
  padding: 4px 16px; border-radius: 12px; font-size: 13px; font-weight: 600;
}
.pricing__card h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.pricing__card .price { font-size: 42px; font-weight: 800; margin: 16px 0 8px; }
.pricing__card .price span { font-size: 16px; font-weight: 400; color: var(--text-muted); }
.pricing__card .price-note { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }
.pricing__card ul { list-style: none; text-align: left; margin-bottom: 32px; }
.pricing__card li { padding: 8px 0; font-size: 15px; border-bottom: 1px solid var(--border); }
.pricing__card li::before { content: "\2713  "; color: var(--success); font-weight: 700; }

/* === FAQ === */
.faq__list { max-width: 700px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__q {
  padding: 24px 0; font-size: 18px; font-weight: 600;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
}
.faq__q::after { content: "+"; font-size: 24px; color: var(--accent); transition: transform 0.3s; }
.faq__item.active .faq__q::after { transform: rotate(45deg); }
.faq__a { padding: 0 0 24px; color: var(--text-light); display: none; }
.faq__item.active .faq__a { display: block; }

/* === CONTACT FORM === */
.contact { background: var(--primary); color: #fff; padding: 120px 0; position: relative; overflow: hidden; }
.contact .section__header h2 { color: #fff; }
.contact .section__header p { color: rgba(255,255,255,0.7); }
.contact__form {
  max-width: 560px; margin: 0 auto;
  display: grid; gap: 16px;
}
.contact__form input,
.contact__form select,
.contact__form textarea {
  width: 100%; padding: 14px 16px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  color: #fff; font-size: 16px;
  font-family: inherit;
  transition: border-color 0.2s;
}
.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: rgba(255,255,255,0.5);
}
.contact__form input::placeholder,
.contact__form textarea::placeholder {
  color: rgba(255,255,255,0.5);
}
.contact__form select { appearance: none; color: rgba(255,255,255,0.7); }
.contact__form select option { color: var(--text); background: #fff; }
.contact__form .btn { width: 100%; background: #fff; color: var(--primary); font-weight: 700; }
.contact__form .btn:hover { background: #f0f0f0; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* === FOOTER === */
.footer {
  background: var(--footer-bg);
  color: rgba(255, 255, 255, 0.6);
  padding: 60px 0 40px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  margin-top: -24px;
  position: relative;
  z-index: 2;
  font-size: 14px;
  text-align: center;
}
.footer__disclaimer {
  margin-top: 16px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* === FLOATING OBJECTS === */
.floating-obj {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  will-change: transform;
  font-family: 'Inter', sans-serif;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ---- TOP LEFT: Search bar, partially off-screen ---- */
.obj--search {
  width: 280px;
  top: 8%;
  left: -80px;
  background: #fff;
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: 0 12px 48px rgba(0,67,112,0.13), 0 2px 8px rgba(0,0,0,0.04);
  font-size: 13px;
  color: var(--text);
  --rot: -6deg;
  transform: rotate(var(--rot));
}
.obj--search .search-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-muted);
}
.obj--search .search-bar::before {
  content: "\1F50D";
  font-size: 14px;
}
.obj--search .search-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}

/* ---- LEFT MIDDLE: AI chat conversation ---- */
.obj--chat {
  width: 260px;
  top: 32%;
  left: -60px;
  background: #fff;
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 12px 48px rgba(0,67,112,0.13), 0 2px 8px rgba(0,0,0,0.04);
  --rot: -3deg;
  transform: rotate(var(--rot));
}
.obj--chat .chat-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.obj--chat .chat-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.obj--chat .chat-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.obj--chat .chat-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}
.obj--chat .chat-msg {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 8px;
}
.obj--chat .chat-msg:last-child { margin-bottom: 0; }
.obj--chat .chat-msg--user {
  background: var(--accent-light);
  border-radius: 10px 10px 2px 10px;
  padding: 8px 12px;
  color: var(--accent);
  font-weight: 500;
}
.obj--chat .typing {
  display: flex;
  gap: 4px;
  padding: 8px 0 0;
}
.obj--chat .typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
  animation: typingDot 1.4s infinite;
}
.obj--chat .typing span:nth-child(2) { animation-delay: 0.2s; }
.obj--chat .typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}

/* ---- Icon badges (logo circles) ---- */
.obj--icon-badge {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 36px rgba(0,67,112,0.14);
  background: transparent;
  overflow: hidden;
}
.obj--icon-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

/* Left side logos */
.obj--icon-perplexity {
  bottom: 32%;
  left: -10px;
  --rot: -8deg;
  transform: rotate(var(--rot));
}
.obj--icon-gemini {
  bottom: 16%;
  left: 70px;
  width: 88px;
  height: 88px;
  --rot: 5deg;
  transform: rotate(var(--rot));
}
.obj--icon-deepseek {
  bottom: 5%;
  left: -15px;
  width: 80px;
  height: 80px;
  --rot: -4deg;
  transform: rotate(var(--rot));
}
.obj--icon-meta {
  bottom: 22%;
  left: 120px;
  width: 76px;
  height: 76px;
  --rot: 7deg;
  transform: rotate(var(--rot));
}

/* Right side logos */
.obj--icon-chatgpt {
  bottom: 32%;
  right: -10px;
  --rot: 6deg;
  transform: rotate(var(--rot));
}
.obj--icon-copilot {
  bottom: 16%;
  right: 80px;
  width: 88px;
  height: 88px;
  --rot: -5deg;
  transform: rotate(var(--rot));
}
.obj--icon-grok {
  bottom: 5%;
  right: -15px;
  width: 80px;
  height: 80px;
  --rot: 8deg;
  transform: rotate(var(--rot));
}

/* ---- TOP RIGHT: Recommendations card, partially off-screen ---- */
.obj--results {
  width: 260px;
  top: 6%;
  right: -70px;
  background: #fff;
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 12px 48px rgba(0,67,112,0.13), 0 2px 8px rgba(0,0,0,0.04);
  --rot: 4deg;
  transform: rotate(var(--rot));
}
.obj--results .results-header {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.obj--results .results-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.obj--results .results-item:last-child { border-bottom: none; }
.obj--results .results-rank {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.obj--results .results-rank--1 { background: #dcfce7; color: #16a34a; }
.obj--results .results-rank--2 { background: var(--bg-alt); color: var(--text-muted); }
.obj--results .results-rank--3 { background: var(--bg-alt); color: var(--text-muted); }
.obj--results .results-name { font-weight: 600; color: var(--text); }
.obj--results .results-name--winner { color: var(--success); }

/* ---- RIGHT UPPER-MIDDLE: AI answer badge ---- */
.obj--badge {
  right: 40px;
  top: 28%;
  background: var(--accent);
  color: #fff;
  border-radius: 28px;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 8px 32px rgba(0,67,112,0.18);
  --rot: 3deg;
  transform: rotate(var(--rot));
  display: flex;
  align-items: center;
  gap: 6px;
}
.obj--badge::before {
  content: "\2713";
  font-size: 14px;
}

/* ---- RIGHT MIDDLE: Brand facts card, partially off-screen ---- */
.obj--facts {
  width: 240px;
  top: 42%;
  right: -80px;
  background: #fff;
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 12px 48px rgba(0,67,112,0.13), 0 2px 8px rgba(0,0,0,0.04);
  --rot: 5deg;
  transform: rotate(var(--rot));
}
.obj--facts .facts-header {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 10px;
}
.obj--facts .facts-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
}
.obj--facts .facts-row:last-child { border-bottom: none; }
.obj--facts .facts-label { color: var(--text-muted); }
.obj--facts .facts-value { font-weight: 600; color: var(--text); }
.obj--facts .facts-value--green { color: var(--success); }

/* ---- Claude icon ---- */
.obj--icon-claude {
  bottom: 24%;
  right: 130px;
  width: 76px;
  height: 76px;
  --rot: -6deg;
  transform: rotate(var(--rot));
}

/* ---- BOTTOM CENTER: Question mark accent ---- */
.obj--question {
  font-size: 64px;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.06;
  bottom: 4%;
  left: 50%;
  margin-left: -100px;
  --rot: 12deg;
  transform: rotate(var(--rot));
}

/* === SCROLL ANIMATIONS === */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.35s; }
.animate-on-scroll.delay-5 { transition-delay: 0.4s; }
.animate-on-scroll.delay-6 { transition-delay: 0.45s; }
.animate-on-scroll.delay-7 { transition-delay: 0.5s; }

/* === GUIDE PAGE STYLES === */
.guide-content h2 { font-size: 28px; font-weight: 800; margin: 48px 0 16px; letter-spacing: -0.01em; }
.guide-content h3 { font-size: 22px; font-weight: 700; margin: 32px 0 12px; }
.guide-content p { color: var(--text-light); margin-bottom: 16px; }
.guide-content ul, .guide-content ol { padding-left: 20px; margin-bottom: 16px; color: var(--text-light); }
.guide-content li { margin-bottom: 8px; }
.guide-content table { width: 100%; border-collapse: collapse; margin-bottom: 24px; font-size: 15px; }
.guide-content th { padding: 14px 16px; text-align: left; background: var(--primary); color: #fff; }
.guide-content td { padding: 14px 16px; border-bottom: 1px solid var(--border); }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero h1 { font-size: 36px; }
  .hero__sub { font-size: 17px; }
  .hero--small h1 { font-size: 30px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .problem__grid { grid-template-columns: 1fr; gap: 40px; }
  .comparison { grid-template-columns: 1fr; }
  .pricing__grid { grid-template-columns: 1fr; }
  .layers__grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .section { padding: 80px 0; }
  .section__header h2 { font-size: 28px; }
  .section__header { margin-bottom: 48px; }

  /* Hamburger shows on mobile */
  .nav__hamburger { display: flex; }
  .nav__links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 100;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { font-size: 20px; }

  /* Hide floating objects on mobile */
  .floating-obj { display: none; }
}
