/* ===================================================================
   Fast Snack — Borne de commande boostée à l'IA
   Brand: orange→red flame gradient on deep navy
   =================================================================== */

:root {
  --navy-900: #0a1020;
  --navy-800: #0c1426;
  --navy-700: #111c34;
  --navy-600: #16233f;
  --navy-500: #1d2e4f;

  --flame-red:  #ff2d2d;
  --flame:      #ff5a1f;
  --orange:     #ff7a00;
  --amber:      #ff9e00;
  --gold:       #ffbe2e;

  --text:       #eaf0fb;
  --text-soft:  #aab6cf;
  --text-dim:   #6f7e9c;
  --line:       rgba(255,255,255,.09);
  --line-soft:  rgba(255,255,255,.06);

  --grad-flame: linear-gradient(100deg, #ffbe2e 0%, #ff7a00 38%, #ff3d1f 72%, #ff2d2d 100%);
  --grad-flame-soft: linear-gradient(135deg, rgba(255,122,0,.18), rgba(255,45,45,.12));

  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 24px 60px -22px rgba(0,0,0,.7);
  --shadow-flame: 0 18px 50px -12px rgba(255,90,31,.45);

  --font-display: 'Poppins', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --maxw: 1180px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--font-body);
  background: var(--navy-800);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }

/* ===== Background aura glows ===== */
.bg-aura { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.aura { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .55; }
.aura-1 { width: 560px; height: 560px; top: -160px; right: -120px;
  background: radial-gradient(circle, rgba(255,122,0,.55), transparent 65%); }
.aura-2 { width: 620px; height: 620px; top: 38%; left: -200px;
  background: radial-gradient(circle, rgba(255,45,45,.35), transparent 65%); }
.aura-3 { width: 520px; height: 520px; bottom: -180px; right: 10%;
  background: radial-gradient(circle, rgba(255,190,46,.30), transparent 65%); }

/* keep content above aura */
.nav, .hero, .section, .footer { position: relative; z-index: 1; }

/* ===== Brand wordmark ===== */
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand__mark { display: grid; place-items: center; filter: drop-shadow(0 4px 10px rgba(255,90,31,.5)); }
.brand__text { font-family: var(--font-display); font-weight: 800; font-style: italic;
  font-size: 1.35rem; letter-spacing: -.5px; line-height: .9; }
.brand__fast { background: linear-gradient(180deg, #ff6a2a, #ff2d2d);
  -webkit-background-clip: text; background-clip: text; color: transparent; }
.brand__snack { background: linear-gradient(180deg, #ffb52e, #ff7a00);
  -webkit-background-clip: text; background-clip: text; color: transparent; margin-left: 2px; }

/* ===== Gradient text util ===== */
.grad { background: var(--grad-flame); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ===== Buttons ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: .95rem;
  padding: 12px 22px; border-radius: 100px; border: 1px solid transparent;
  cursor: pointer; transition: transform .18s ease, box-shadow .25s ease, background .2s; white-space: nowrap; }
.btn:active { transform: translateY(1px) scale(.99); }
.btn--lg { padding: 15px 30px; font-size: 1.02rem; }
.btn--block { width: 100%; }
.btn--primary { background: var(--grad-flame); color: #2a0d00; box-shadow: var(--shadow-flame); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 24px 60px -12px rgba(255,90,31,.6); }
.btn--outline { border-color: rgba(255,255,255,.22); color: var(--text); background: rgba(255,255,255,.02); }
.btn--outline:hover { border-color: var(--orange); color: #fff; background: rgba(255,122,0,.08); }
.btn--ghost { border-color: rgba(255,255,255,.16); color: var(--text); }
.btn--ghost:hover { background: rgba(255,255,255,.06); }

/* ===== Navbar ===== */
.nav { position: sticky; top: 0; z-index: 50; backdrop-filter: blur(14px);
  background: rgba(10,16,32,.55); border-bottom: 1px solid transparent; transition: background .3s, border-color .3s; }
.nav.scrolled { background: rgba(10,16,32,.88); border-bottom-color: var(--line); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav__links { display: flex; align-items: center; gap: 26px; }
.nav__links > a { font-size: .94rem; color: var(--text-soft); font-weight: 500; transition: color .2s; }
.nav__links > a:hover { color: #fff; }
.nav__cta { color: var(--text) !important; }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__burger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; }
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero { padding: 64px 0 40px; }
.hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }

.pill { display: inline-flex; align-items: center; gap: 9px; font-size: .82rem; font-weight: 600;
  color: var(--amber); background: rgba(255,158,0,.1); border: 1px solid rgba(255,158,0,.25);
  padding: 7px 14px; border-radius: 100px; margin-bottom: 22px; }
.pill__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange);
  box-shadow: 0 0 0 0 rgba(255,122,0,.6); animation: ping 2s infinite; }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(255,122,0,.55); } 70%,100% { box-shadow: 0 0 0 10px rgba(255,122,0,0); } }

.hero__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.06; letter-spacing: -1.5px; margin-bottom: 20px; }
.hero__sub { font-size: 1.08rem; color: var(--text-soft); max-width: 540px; margin-bottom: 30px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 42px; }

.hero__stats { display: flex; gap: 34px; flex-wrap: wrap; }
.stat__num { font-family: var(--font-display); font-weight: 800; font-size: 1.9rem;
  background: var(--grad-flame); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
.stat__label { font-size: .84rem; color: var(--text-dim); margin-top: 6px; max-width: 150px; }

/* Kiosk mockup */
.hero__visual { position: relative; display: grid; place-items: center; }
.kiosk { width: min(330px, 80%); background: linear-gradient(180deg, #1a2740, #0e1730);
  border: 1px solid var(--line); border-radius: 30px; padding: 14px; box-shadow: var(--shadow);
  position: relative; animation: floaty 6s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0) rotate(-.4deg); } 50% { transform: translateY(-14px) rotate(.4deg); } }
.kiosk__notch { width: 70px; height: 6px; border-radius: 100px; background: rgba(255,255,255,.15); margin: 2px auto 12px; }
.kiosk__screen { background: linear-gradient(180deg, #0b1326, #0a1120); border-radius: 20px; padding: 16px; border: 1px solid var(--line-soft); }
.ks-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.ks-brand { font-family: var(--font-display); font-weight: 800; font-style: italic; font-size: .95rem; }
.ks-brand b { color: var(--flame-red); } .ks-brand { color: var(--amber); }
.ks-ai { font-size: .68rem; color: #7CFFB0; font-weight: 600; }
.ks-hero-card { display: flex; gap: 12px; align-items: center; background: var(--grad-flame-soft);
  border: 1px solid rgba(255,122,0,.25); border-radius: 14px; padding: 12px; margin-bottom: 10px; }
.ks-emoji { font-size: 2rem; }
.ks-title { font-family: var(--font-display); font-weight: 700; font-size: .95rem; }
.ks-meta { font-size: .74rem; color: var(--amber); }
.ks-ai-tip { display: flex; gap: 8px; align-items: center; font-size: .74rem; color: var(--text-soft);
  background: rgba(124,255,176,.06); border: 1px dashed rgba(124,255,176,.3); border-radius: 10px; padding: 8px 10px; margin-bottom: 12px; }
.ks-ai-tip__icon { animation: spark 1.6s infinite; }
@keyframes spark { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .5; transform: scale(1.25); } }
.ks-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; margin-bottom: 14px; }
.ks-item { background: rgba(255,255,255,.04); border: 1px solid var(--line-soft); border-radius: 12px;
  padding: 10px 4px; text-align: center; transition: .2s; }
.ks-item span { font-size: 1.3rem; display: block; }
.ks-item small { font-size: .62rem; color: var(--text-dim); }
.ks-item:hover { background: rgba(255,122,0,.12); border-color: rgba(255,122,0,.3); transform: translateY(-3px); }
.ks-cta { width: 100%; background: var(--grad-flame); color: #2a0d00; border: 0; border-radius: 12px;
  padding: 12px; font-family: var(--font-display); font-weight: 700; font-size: .9rem; cursor: pointer; }

.float-chip { position: absolute; font-family: var(--font-display); font-weight: 600; font-size: .78rem;
  background: rgba(13,20,38,.9); border: 1px solid var(--line); padding: 9px 14px; border-radius: 100px;
  box-shadow: var(--shadow); backdrop-filter: blur(6px); animation: floaty 5s ease-in-out infinite; }
.chip-1 { top: 8%; left: -2%; animation-delay: .4s; }
.chip-2 { top: 44%; right: -2%; animation-delay: 1.2s; }
.chip-3 { bottom: 8%; left: 2%; animation-delay: .8s; }

/* trusted strip */
.trusted { display: flex; align-items: center; gap: 22px; margin-top: 56px; padding-top: 26px;
  border-top: 1px solid var(--line-soft); flex-wrap: wrap; }
.trusted > span { color: var(--text-dim); font-size: .85rem; font-weight: 600; }
.trusted__logos { display: flex; gap: 26px; flex-wrap: wrap; }
.trusted__logos span { color: var(--text-soft); font-weight: 600; font-size: .92rem; opacity: .85; }

/* ===== Sections ===== */
.section { padding: 86px 0; }
.section__head { text-align: center; max-width: 680px; margin: 0 auto 52px; }
.eyebrow { display: inline-block; font-family: var(--font-display); font-weight: 600; font-size: .8rem;
  letter-spacing: 2px; text-transform: uppercase; color: var(--orange); margin-bottom: 14px; }
.section__head h2, .ia__copy h2, .cta h2 { font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.8rem, 3.6vw, 2.7rem); line-height: 1.12; letter-spacing: -1px; }
.section__head p { color: var(--text-soft); margin-top: 16px; font-size: 1.05rem; }

/* ===== Features grid ===== */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; transition: .28s; position: relative; overflow: hidden; }
.card::before { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: var(--grad-flame); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity .28s; }
.card:hover { transform: translateY(-6px); background: linear-gradient(180deg, rgba(255,122,0,.08), rgba(255,255,255,.02)); }
.card:hover::before { opacity: 1; }
.card__icon { font-size: 2rem; width: 58px; height: 58px; display: grid; place-items: center;
  background: var(--grad-flame-soft); border: 1px solid rgba(255,122,0,.2); border-radius: 14px; margin-bottom: 18px; }
.card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.18rem; margin-bottom: 10px; }
.card p { color: var(--text-soft); font-size: .96rem; }

/* ===== IA section ===== */
.section--ia { background: linear-gradient(180deg, transparent, rgba(255,122,0,.04), transparent); }
.ia__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.ia__lead { color: var(--text-soft); font-size: 1.08rem; margin: 18px 0 24px; }
.ia__list { display: grid; gap: 16px; margin-bottom: 30px; }
.ia__list li { position: relative; padding-left: 30px; color: var(--text-soft); font-size: .98rem; }
.ia__list li::before { content: "✦"; position: absolute; left: 0; top: 0; color: var(--orange); font-weight: 700; }
.ia__list b { color: var(--text); }

/* Chat */
.chat { background: linear-gradient(180deg, #0e1730, #0a1120); border: 1px solid var(--line);
  border-radius: 22px; box-shadow: var(--shadow); overflow: hidden; }
.chat__head { display: flex; align-items: center; gap: 12px; padding: 16px 18px; border-bottom: 1px solid var(--line-soft);
  background: rgba(255,255,255,.02); }
.chat__avatar { width: 42px; height: 42px; display: grid; place-items: center; font-size: 1.3rem;
  background: var(--grad-flame-soft); border: 1px solid rgba(255,122,0,.25); border-radius: 12px; }
.chat__head b { font-family: var(--font-display); font-size: .98rem; }
.chat__head small { display: block; color: var(--text-dim); font-size: .76rem; }
.chat__live { margin-left: auto; font-size: .72rem; color: #7CFFB0; font-weight: 600; }
.chat__body { padding: 20px 18px; display: flex; flex-direction: column; gap: 12px; min-height: 280px; }
.msg { max-width: 82%; padding: 11px 15px; border-radius: 16px; font-size: .92rem; line-height: 1.45;
  animation: pop .35s ease; }
@keyframes pop { from { opacity: 0; transform: translateY(8px) scale(.98); } to { opacity: 1; transform: none; } }
.msg--bot { align-self: flex-start; background: rgba(255,255,255,.05); border: 1px solid var(--line-soft); border-bottom-left-radius: 5px; }
.msg--user { align-self: flex-end; background: var(--grad-flame); color: #2a0d00; font-weight: 500; border-bottom-right-radius: 5px; }
.msg--typing { display: inline-flex; gap: 4px; align-items: center; }
.msg--typing i { width: 7px; height: 7px; border-radius: 50%; background: var(--text-dim); animation: blink 1.2s infinite; }
.msg--typing i:nth-child(2) { animation-delay: .2s; } .msg--typing i:nth-child(3) { animation-delay: .4s; }
@keyframes blink { 0%,60%,100% { opacity: .25; } 30% { opacity: 1; } }
.chat__suggest { display: flex; gap: 8px; padding: 0 18px 18px; flex-wrap: wrap; }
.chat__suggest button { background: rgba(255,122,0,.08); border: 1px solid rgba(255,122,0,.25); color: var(--amber);
  font-size: .8rem; font-weight: 600; padding: 8px 14px; border-radius: 100px; cursor: pointer; transition: .2s; }
.chat__suggest button:hover { background: rgba(255,122,0,.18); color: #fff; }

/* ===== Demo ===== */
.section--demo { background: linear-gradient(180deg, transparent, rgba(10,16,32,.5)); }
.demo { display: grid; grid-template-columns: 1.5fr 1fr; gap: 22px; align-items: start; }
.demo__menu { background: rgba(255,255,255,.02); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; }
.demo__cats { display: flex; gap: 9px; flex-wrap: wrap; margin-bottom: 18px; }
.cat-btn { font-family: var(--font-display); font-weight: 600; font-size: .85rem; padding: 9px 16px;
  border-radius: 100px; border: 1px solid var(--line); background: transparent; color: var(--text-soft); cursor: pointer; transition: .2s; }
.cat-btn.active { background: var(--grad-flame); color: #2a0d00; border-color: transparent; }
.cat-btn:not(.active):hover { border-color: var(--orange); color: #fff; }

.demo__items { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.menu-item { background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.01));
  border: 1px solid var(--line); border-radius: 14px; padding: 16px 12px; text-align: center; cursor: pointer;
  transition: .2s; position: relative; }
.menu-item:hover { transform: translateY(-4px); border-color: rgba(255,122,0,.4); background: rgba(255,122,0,.06); }
.menu-item__emoji { font-size: 2.1rem; margin-bottom: 8px; }
.menu-item__name { font-family: var(--font-display); font-weight: 600; font-size: .9rem; }
.menu-item__price { color: var(--amber); font-size: .85rem; font-weight: 600; margin-top: 3px; }
.menu-item__add { position: absolute; top: 8px; right: 8px; width: 26px; height: 26px; border-radius: 50%;
  background: var(--grad-flame); color: #2a0d00; border: 0; font-weight: 800; cursor: pointer; opacity: 0; transition: .2s; line-height: 1; }
.menu-item:hover .menu-item__add { opacity: 1; }
.menu-item.flash { animation: flash .5s; }
@keyframes flash { 0% { box-shadow: 0 0 0 0 rgba(255,122,0,.6); } 100% { box-shadow: 0 0 0 16px rgba(255,122,0,0); } }

/* Cart */
.demo__cart { background: linear-gradient(180deg, #0e1730, #0a1120); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px; position: sticky; top: 90px; }
.demo__cart-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.demo__cart-head h3 { font-family: var(--font-display); font-size: 1.15rem; }
.link-btn { background: none; border: 0; color: var(--text-dim); font-size: .82rem; cursor: pointer; }
.link-btn:hover { color: var(--flame-red); }

.ai-banner { display: flex; align-items: center; gap: 10px; background: var(--grad-flame-soft);
  border: 1px solid rgba(255,122,0,.3); border-radius: 14px; padding: 11px 12px; margin-bottom: 14px; animation: pop .4s ease; }
.ai-banner__icon { font-size: 1.2rem; animation: spark 1.6s infinite; }
.ai-banner__txt { flex: 1; min-width: 0; }
.ai-banner__txt b { display: block; font-size: .76rem; color: var(--amber); }
.ai-banner__txt span { font-size: .86rem; }
.ai-banner__add { background: var(--grad-flame); color: #2a0d00; border: 0; border-radius: 100px;
  padding: 7px 12px; font-weight: 700; font-size: .78rem; cursor: pointer; white-space: nowrap; }

.cart-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; min-height: 60px; max-height: 260px; overflow-y: auto; }
.cart-empty { color: var(--text-dim); font-size: .88rem; text-align: center; padding: 22px 8px; }
.cart-item { display: flex; align-items: center; gap: 10px; animation: pop .3s ease; }
.cart-item__emoji { font-size: 1.4rem; }
.cart-item__info { flex: 1; min-width: 0; }
.cart-item__name { font-size: .9rem; font-weight: 600; }
.cart-item__price { font-size: .78rem; color: var(--text-dim); }
.cart-item__qty { display: flex; align-items: center; gap: 8px; }
.qty-btn { width: 24px; height: 24px; border-radius: 7px; border: 1px solid var(--line); background: rgba(255,255,255,.04);
  color: var(--text); cursor: pointer; font-weight: 700; line-height: 1; }
.qty-btn:hover { border-color: var(--orange); color: var(--orange); }
.cart-item__q { font-size: .85rem; min-width: 16px; text-align: center; }

.cart-foot { border-top: 1px solid var(--line-soft); padding-top: 14px; }
.cart-row { display: flex; justify-content: space-between; font-size: .92rem; color: var(--text-soft); margin-bottom: 8px; }
.cart-row--ai { color: #7CFFB0; }
.cart-row--total { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--text); margin: 12px 0 16px; }
.cart-note { font-size: .76rem; color: var(--text-dim); text-align: center; margin-top: 12px; }

/* ===== Steps ===== */
.steps { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: 18px; }
.step { text-align: center; padding: 26px 18px; background: rgba(255,255,255,.02); border: 1px solid var(--line); border-radius: var(--radius); }
.step__num { width: 52px; height: 52px; margin: 0 auto 16px; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; color: #2a0d00;
  background: var(--grad-flame); border-radius: 50%; box-shadow: var(--shadow-flame); }
.step h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; margin-bottom: 8px; }
.step p { color: var(--text-soft); font-size: .92rem; }
.step__line { height: 2px; background: linear-gradient(90deg, var(--orange), transparent); border-radius: 2px; }

/* ===== Pricing ===== */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.price-card { background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.012));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; position: relative; display: flex; flex-direction: column; }
.price-card--pop { border-color: rgba(255,122,0,.5); background: linear-gradient(180deg, rgba(255,122,0,.1), rgba(255,255,255,.02));
  box-shadow: var(--shadow-flame); transform: translateY(-8px); }
.price-card__badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--grad-flame); color: #2a0d00; font-family: var(--font-display); font-weight: 700; font-size: .76rem;
  padding: 5px 14px; border-radius: 100px; white-space: nowrap; }
.price-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; }
.price-card__price { font-family: var(--font-display); font-weight: 800; font-size: 2.4rem; margin: 8px 0; }
.price-card__price span { font-size: 1rem; font-weight: 500; color: var(--text-dim); }
.price-card__desc { color: var(--text-soft); font-size: .92rem; margin-bottom: 20px; }
.price-card ul { display: grid; gap: 11px; margin-bottom: 26px; flex: 1; }
.price-card li { font-size: .92rem; color: var(--text-soft); }
.price-card li b { color: var(--text); }

/* ===== CTA ===== */
.section--cta { padding-bottom: 96px; }
.cta { position: relative; text-align: center; max-width: 760px; margin: 0 auto;
  background: linear-gradient(180deg, rgba(255,122,0,.08), rgba(255,255,255,.02));
  border: 1px solid rgba(255,122,0,.3); border-radius: 28px; padding: 56px 40px; overflow: hidden; }
.cta__glow { position: absolute; top: -40%; left: 50%; transform: translateX(-50%); width: 500px; height: 300px;
  background: radial-gradient(circle, rgba(255,122,0,.4), transparent 70%); filter: blur(40px); pointer-events: none; }
.cta h2, .cta p, .cta__form { position: relative; z-index: 1; }
.cta p { color: var(--text-soft); margin: 16px auto 30px; max-width: 520px; }
.cta__form { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; max-width: 560px; margin: 0 auto; }
.cta__form input { padding: 14px 16px; border-radius: 12px; border: 1px solid var(--line);
  background: rgba(10,16,32,.6); color: var(--text); font-family: var(--font-body); font-size: .95rem; }
.cta__form input::placeholder { color: var(--text-dim); }
.cta__form input:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,122,0,.15); }
.cta__form input[name="email"], .cta__form .btn { grid-column: 1 / -1; }
.cta__msg { margin-top: 16px; color: #7CFFB0; font-weight: 600; }
.cta__small { font-size: .82rem; color: var(--text-dim); margin-top: 18px !important; }

/* ===== Footer ===== */
.footer { border-top: 1px solid var(--line); padding: 56px 0 26px; background: rgba(10,16,32,.6); }
.footer__inner { display: grid; grid-template-columns: 1.3fr 2fr; gap: 40px; }
.footer__brand .brand__text { font-size: 1.5rem; }
.footer__brand p { color: var(--text-dim); font-size: .9rem; margin-top: 14px; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer__cols h4 { font-family: var(--font-display); font-size: .95rem; margin-bottom: 14px; }
.footer__cols a { display: block; color: var(--text-soft); font-size: .9rem; margin-bottom: 9px; transition: color .2s; }
.footer__cols a:hover { color: var(--orange); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
  margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line-soft); color: var(--text-dim); font-size: .84rem; }

/* ===== Reveal on scroll ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero__inner, .ia__grid, .demo, .footer__inner { grid-template-columns: 1fr; }
  .hero__visual { order: -1; margin-bottom: 20px; }
  .features-grid, .pricing { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step__line { display: none; }
  .price-card--pop { transform: none; }
  .demo__cart { position: static; }
}
@media (max-width: 760px) {
  .nav__links { position: fixed; inset: 72px 0 auto 0; flex-direction: column; gap: 0;
    background: rgba(10,16,32,.97); backdrop-filter: blur(14px); padding: 10px 22px 22px;
    border-bottom: 1px solid var(--line); transform: translateY(-130%); transition: transform .35s ease; }
  .nav__links.open { transform: translateY(0); }
  .nav__links > a { width: 100%; padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
  .nav__cta { margin-top: 8px; }
  .nav__burger { display: flex; }
  .features-grid, .pricing, .demo__items { grid-template-columns: 1fr; }
  .demo__items { grid-template-columns: 1fr 1fr; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .cta__form { grid-template-columns: 1fr; }
  .cta { padding: 40px 22px; }
  .hero__stats { gap: 22px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
