/* =====================================================
   EioPago Landing — style.css
   Mobile-first. Nessun inline style.
   © 2026 Zencode Studio — P.IVA 04167681206
   ===================================================== */

/* ── RESET ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

/* ── VARIABILI ──────────────────────────────────────── */
:root {
  --cream:    #faf8f4;
  --cream2:   #f4f1eb;
  --cream3:   #ede9e0;
  --white:    #ffffff;
  --ink:      #1a1714;
  --ink2:     #3d3a36;
  --ink3:     #6b6760;
  --ink4:     #9a9690;
  --red:      #c0392b;
  --red2:     #a93226;
  --red-bg:   #fdf2f1;
  --green:    #1a6e42;
  --green-bg: #f0faf5;
  --border:   rgba(26,23,20,0.08);
  --border2:  rgba(26,23,20,0.16);
  --ff-serif: 'Playfair Display', Georgia, serif;
  --ff-body:  'DM Sans', system-ui, sans-serif;
  --ff-mono:  'DM Mono', monospace;
  --nav-h:    60px;
  --container: 1200px;
}

/* ── BASE ───────────────────────────────────────────── */
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── UTILITY ────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.skip-link {
  position: absolute; top: -100px; left: 1rem;
  background: var(--red); color: white;
  padding: 8px 16px; border-radius: 0 0 4px 4px;
  font-size: 14px; font-weight: 500; z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ── BUTTONS ────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--red); color: white;
  padding: 11px 22px; border-radius: 4px;
  font-size: 14px; font-weight: 500;
  transition: background 0.2s;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--red2); }
.btn-primary.btn-lg { padding: 14px 28px; font-size: 15px; }

.btn-outline {
  display: inline-block;
  background: none; color: var(--ink2);
  border: 1px solid var(--border2);
  padding: 11px 22px; border-radius: 4px;
  font-size: 14px; transition: all 0.2s;
  white-space: nowrap;
}
.btn-outline:hover { border-color: var(--ink); color: var(--ink); }
.btn-outline.btn-lg { padding: 14px 28px; font-size: 15px; }

.btn-outline-light {
  display: inline-block;
  background: none; color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 11px 22px; border-radius: 4px;
  font-size: 14px; transition: all 0.2s;
  white-space: nowrap;
}
.btn-outline-light:hover { color: white; border-color: rgba(255,255,255,0.6); }
.btn-outline-light.btn-lg { padding: 14px 28px; font-size: 15px; }

/* ── NAV ────────────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  gap: 1.5rem;
}
.nav-logo {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  color: var(--ink);
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.nav-logo span { color: var(--red); }
.nav-logo small {
  font-family: var(--ff-mono);
  font-size: 0.5rem;
  color: var(--ink4);
  vertical-align: super;
  margin-left: 1px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}
.nav-links a { font-size: 13px; color: var(--ink3); transition: color 0.2s; }
.nav-links a:hover { color: var(--red); }
.nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.ai-badge {
  display: flex; align-items: center; gap: 5px;
  font-size: 11px; color: var(--red);
  border: 0.5px solid rgba(192,57,43,0.25);
  background: var(--red-bg);
  border-radius: 3px; padding: 3px 9px;
  font-family: var(--ff-mono);
}
.ai-dot {
  width: 6px; height: 6px;
  border-radius: 50%; background: var(--red);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.3; } }

/* Hamburger — nascosto su desktop */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none;
  border: 1px solid var(--border2);
  border-radius: 4px;
  cursor: pointer;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--ink2);
  border-radius: 2px;
  transition: all 0.2s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1rem 2rem 1.5rem;
  z-index: 99;
  flex-direction: column;
  gap: 0;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  padding: 12px 0;
  font-size: 15px;
  color: var(--ink2);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.nav-drawer a:last-child { border-bottom: none; }
.nav-drawer a:hover { color: var(--red); }
.nav-drawer .drawer-cta {
  margin-top: 1rem;
  background: var(--red);
  color: white;
  padding: 12px;
  border-radius: 4px;
  text-align: center;
  font-weight: 500;
  border-bottom: none;
}
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 98;
}
.nav-overlay.open { display: block; }

/* ── MASTHEAD ───────────────────────────────────────── */
.masthead {
  margin-top: var(--nav-h);
  background: var(--white);
  border-bottom: 3px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 2rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.masthead-city, .masthead-powered {
  font-family: var(--ff-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink4);
  flex-shrink: 0;
}
.masthead-powered { color: var(--red); }
.masthead-claim {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 12px;
  color: var(--ink3);
  font-style: italic;
  text-align: center;
  flex: 1;
}

/* ── HERO ───────────────────────────────────────────── */
.hero {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 3rem 2rem;
}
.hero-content {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}
.hero-left {
  border-right: 1px solid var(--border);
  padding-right: 3rem;
}
.hero-kicker {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-kicker::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--red);
}
.hero h1 {
  font-family: var(--ff-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.hero h1 em { font-style: italic; color: var(--red); }
.hero-deck {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.05rem;
  color: var(--ink2);
  line-height: 1.75;
  margin-bottom: 2rem;
  font-weight: 300;
}
.hero-deck strong { font-weight: 600; color: var(--ink); }
.hero-ctas { display: flex; gap: 10px; margin-bottom: 1.5rem; flex-wrap: wrap; }
.hero-saving {
  font-size: 13px;
  color: var(--green);
  background: var(--green-bg);
  border: 1px solid rgba(26,110,66,0.2);
  border-radius: 4px;
  padding: 8px 14px;
  display: inline-block;
}
.hero-saving strong { font-weight: 600; }

/* AI Demo box */
.ai-demo {
  background: var(--cream2);
  border: 1px solid var(--border2);
  border-radius: 6px;
  overflow: hidden;
}
.ai-demo-header {
  background: var(--ink);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.7);
}
.ai-demo-header .ai-dot { background: #4ade80; }
.ai-demo-body { padding: 1rem; display: flex; flex-direction: column; gap: 10px; }
.chat-user {
  background: var(--white);
  border: 1px solid var(--border2);
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.6;
  margin-left: 1.5rem;
}
.chat-ai {
  background: var(--red-bg);
  border: 1px solid rgba(192,57,43,0.15);
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 13px;
  color: var(--ink2);
  line-height: 1.6;
  margin-right: 1.5rem;
}
.chat-label {
  display: block;
  font-family: var(--ff-mono);
  font-size: 9px;
  color: var(--red);
  letter-spacing: 0.1em;
  margin-bottom: 5px;
}
.chat-ai strong { color: var(--ink); font-weight: 500; }
.ai-demo-input {
  border-top: 1px solid var(--border);
  padding: 10px 12px;
  display: flex;
  gap: 8px;
  background: var(--white);
}
.ai-demo-input input {
  flex: 1;
  border: 1px solid var(--border2);
  border-radius: 3px;
  padding: 6px 10px;
  font-size: 12px;
  background: var(--cream2);
  color: var(--ink);
}
.ai-demo-input button {
  background: var(--red);
  border: none;
  border-radius: 3px;
  color: white;
  width: 28px; height: 28px;
  cursor: pointer; font-size: 13px;
}

/* ── TICKER ─────────────────────────────────────────── */
.ticker {
  background: var(--ink);
  padding: 12px 2rem;
}
.ticker-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.ticker-item {
  display: flex;
  align-items: baseline;
  gap: 8px;
  white-space: nowrap;
}
.ticker-item strong {
  font-family: var(--ff-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
}
.ticker-item span {
  font-size: 10px;
  color: rgba(255,255,255,0.45);
  font-family: var(--ff-mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.ticker-sep { color: rgba(255,255,255,0.2); font-size: 1rem; }

/* ── SECTIONS ───────────────────────────────────────── */
.section-label {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink4);
  margin-bottom: 0.75rem;
}
.section-header { margin-bottom: 3rem; }
.section-header h2, .section-sub { max-width: 700px; }
.section-header h2 {
  font-family: var(--ff-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.section-sub { font-size: 15px; color: var(--ink3); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.two-col-reversed { }
.col-text h2 {
  font-family: var(--ff-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.col-text h2 em { font-style: italic; color: var(--red); }
.col-text p {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 0.95rem;
  color: var(--ink2);
  line-height: 1.8;
  margin-bottom: 0.75rem;
  font-weight: 300;
}
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.feature-list li {
  font-size: 14px;
  color: var(--ink2);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.6;
}
.feature-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--red);
}
.feature-list li strong { color: var(--ink); }

/* ── AI SECTION ─────────────────────────────────────── */
.section-ai {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 2rem;
}
.demo-box {
  background: var(--cream2);
  border: 1px solid var(--border2);
  border-radius: 6px;
  overflow: hidden;
}
.demo-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--ff-mono);
  font-size: 10px;
  color: var(--ink3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.demo-badge {
  background: var(--red);
  color: white;
  padding: 2px 8px;
  border-radius: 2px;
  font-size: 9px;
}
.demo-chat {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── FEATURES ───────────────────────────────────────── */
.section-features {
  background: var(--cream2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 2rem;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.feat-card {
  background: var(--white);
  padding: 2rem;
  transition: background 0.2s;
}
.feat-card:hover { background: var(--cream); }
.feat-card.feat-highlight { background: var(--cream); }
.feat-num {
  font-family: var(--ff-mono);
  font-size: 10px;
  color: var(--ink4);
  margin-bottom: 0.75rem;
}
.feat-card h3 {
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.feat-card p { font-size: 13px; color: var(--ink3); line-height: 1.7; }
.feat-tag {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--ff-mono);
  font-size: 9px;
  color: var(--red);
  background: var(--red-bg);
  border: 0.5px solid rgba(192,57,43,0.2);
  border-radius: 2px;
  padding: 2px 7px;
  letter-spacing: 0.06em;
}

/* ── HOW IT WORKS ───────────────────────────────────── */
.section-how {
  background: var(--white);
  padding: 5rem 2rem;
  border-top: 1px solid var(--border);
}
.col-steps { display: flex; flex-direction: column; gap: 0; }
.step-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.step-item:last-child { border-bottom: none; }
.step-num {
  font-family: var(--ff-mono);
  font-size: 10px;
  color: var(--red);
  border: 0.5px solid var(--red);
  border-radius: 3px;
  padding: 2px 5px;
  height: fit-content;
  flex-shrink: 0;
  margin-top: 2px;
}
.step-item h4 { font-size: 14px; font-weight: 500; margin-bottom: 4px; }
.step-item p { font-size: 13px; color: var(--ink3); line-height: 1.6; }

/* ── PRICING ────────────────────────────────────────── */
.section-pricing {
  background: var(--cream2);
  padding: 5rem 2rem;
  border-top: 3px solid var(--ink);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border2);
  border: 1px solid var(--border2);
  margin-bottom: 1.5rem;
}
.price-card {
  background: var(--white);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card.price-featured { background: var(--ink); }
.price-popular {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: white;
  font-family: var(--ff-mono);
  font-size: 9px;
  padding: 3px 12px;
  border-radius: 10px;
  white-space: nowrap;
  letter-spacing: 0.05em;
}
.price-tier {
  font-family: var(--ff-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink4);
  margin-bottom: 0.75rem;
}
.price-featured .price-tier { color: rgba(255,255,255,0.4); }
.price-amount {
  font-family: var(--ff-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
}
.price-featured .price-amount { color: white; }
.price-period {
  font-size: 11px;
  color: var(--ink4);
  font-family: var(--ff-mono);
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.price-featured .price-period { color: rgba(255,255,255,0.3); border-bottom-color: rgba(255,255,255,0.1); }
.price-features {
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 1.5rem;
}
.price-features li {
  font-size: 12px;
  color: var(--ink2);
  display: flex;
  gap: 7px;
  align-items: flex-start;
  line-height: 1.5;
}
.price-featured .price-features li { color: rgba(255,255,255,0.75); }
.price-features li::before { content: '✓'; color: var(--green); font-weight: 600; font-size: 11px; flex-shrink: 0; }
.price-features li.no { color: var(--ink4); }
.price-featured .price-features li.no { color: rgba(255,255,255,0.2); }
.price-features li.no::before { content: '—'; color: var(--ink4); }
.price-btn {
  display: block;
  text-align: center;
  padding: 10px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--border2);
  color: var(--ink2);
  transition: all 0.2s;
  cursor: pointer;
}
.price-btn:hover { border-color: var(--ink); color: var(--ink); }
.price-btn-filled { background: var(--red); border-color: var(--red); color: white; }
.price-btn-filled:hover { background: var(--red2); border-color: var(--red2); color: white; }
.price-featured .price-btn { background: white; border-color: white; color: var(--ink); }
.pricing-note {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 11px;
  color: var(--ink4);
}
.pricing-note strong { color: var(--green); }

/* ── FAQ ────────────────────────────────────────────── */
.section-faq {
  background: var(--white);
  padding: 5rem 2rem;
  border-top: 1px solid var(--border);
}
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.1rem 0;
  background: none;
  border: none;
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Source Serif 4', Georgia, serif;
  color: var(--ink);
  cursor: pointer;
  gap: 1rem;
  transition: color 0.2s;
}
.faq-q::after { content: '+'; font-size: 20px; color: var(--ink4); flex-shrink: 0; font-weight: 300; }
.faq-q[aria-expanded="true"]::after { content: '−'; color: var(--red); }
.faq-q:hover { color: var(--red); }
.faq-a {
  display: none;
  padding: 0 0 1.25rem;
  font-size: 13px;
  color: var(--ink3);
  line-height: 1.8;
}
.faq-a.open { display: block; }

/* ── CTA FINALE ─────────────────────────────────────── */
.section-cta {
  background: var(--ink);
  padding: 5rem 2rem;
  border-top: 3px solid var(--red);
  text-align: center;
}
.cta-content { max-width: 600px; margin: 0 auto; }
.cta-content h2 {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: white;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.cta-content h2 em { font-style: italic; color: #f87171; }
.cta-content p { color: rgba(255,255,255,0.55); font-size: 15px; margin-bottom: 2rem; line-height: 1.7; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ─────────────────────────────────────────── */
footer {
  background: var(--cream2);
  border-top: 1px solid var(--border);
  padding: 3rem 2rem 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}
.footer-logo {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  color: var(--ink);
  display: inline-block;
  margin-bottom: 0.75rem;
}
.footer-logo span { color: var(--red); }
.footer-logo small {
  font-family: var(--ff-mono);
  font-size: 0.5rem;
  color: var(--ink4);
  vertical-align: super;
}
.footer-brand p {
  font-size: 12px;
  color: var(--ink4);
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 8px;
}
.footer-disclaimer { font-style: italic; }
.footer-col h4 {
  font-family: var(--ff-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink4);
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--ink3);
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--red); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--ff-mono);
  font-size: 10px;
  color: var(--ink4);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { color: var(--ink4); transition: color 0.2s; font-size: 10px; }
.footer-links a:hover { color: var(--red); }

/* ── FOCUS / A11Y ───────────────────────────────────── */
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; border-radius: 3px; }
:focus:not(:focus-visible) { outline: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* =====================================================
   MOBILE — breakpoints
   ===================================================== */

/* Tablet */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr 320px; gap: 2rem; }
  .pricing-grid { grid-template-columns: 1fr 1fr; gap: 1rem; background: none; border: none; }
  .price-card { border: 1px solid var(--border2); border-radius: 6px; }
  .price-card.price-featured { border-color: var(--red); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .features-grid { grid-template-columns: 1fr 1fr; }
}

/* Mobile */
@media (max-width: 768px) {

  /* Nav */
  #nav { padding: 0 1.25rem; }
  .nav-links { display: none; }
  .nav-right { display: none; }
  .nav-hamburger { display: flex; }

  /* Masthead */
  .masthead { padding: 6px 1.25rem; }
  .masthead-claim { display: none; }

  /* Hero */
  .hero { padding: 2rem 1.25rem; }
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-left { border-right: none; padding-right: 0; }
  .hero h1 { font-size: 2.2rem; }
  .hero-deck { font-size: 0.95rem; }
  .hero-ctas { flex-direction: column; }
  .btn-primary.btn-lg, .btn-outline.btn-lg { width: 100%; text-align: center; padding: 13px 20px; }

  /* Ticker */
  .ticker { padding: 12px 1.25rem; }
  .ticker-inner { gap: 1rem; justify-content: flex-start; }
  .ticker-sep { display: none; }
  .ticker-item strong { font-size: 1.1rem; }

  /* Sections */
  .section-ai, .section-features, .section-how,
  .section-pricing, .section-faq, .section-cta { padding: 3rem 1.25rem; }

  /* Two col → single col */
  .two-col, .two-col-reversed { grid-template-columns: 1fr; gap: 2rem; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; gap: 0; }
  .feat-card { padding: 1.25rem; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; gap: 1rem; background: none; border: none; }
  .price-card { border: 1px solid var(--border2); border-radius: 6px; padding: 1.5rem; }
  .price-card.price-featured { border-color: var(--red); border-top: 3px solid var(--red); }
  .pricing-note { flex-direction: column; gap: 6px; }

  /* FAQ */
  .section-faq .two-col { gap: 1.5rem; }

  /* CTA */
  .cta-btns { flex-direction: column; }
  .btn-outline-light.btn-lg { width: 100%; text-align: center; padding: 13px 20px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-links { gap: 1rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.9rem; }
  .ticker-item { flex-direction: column; gap: 2px; text-align: center; }
}

/* ── REVEAL ANIMATION ───────────────────────────────── */
.reveal-el {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal-el.revealed {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal-el { opacity: 1; transform: none; transition: none; }
}
