/* ============================================================
   PANCHI-BOT LANDING — Artisan Tech
   Bricolage Grotesque + Outfit · Warm palette · Editorial
   ============================================================ */

/* --- Reset & variables --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* palette */
  --green: #1A9D55;
  --green-dark: #0F7A3E;
  --green-deep: #0A3D2E;
  --green-pale: #E8F5EE;
  --green-glow: rgba(26, 157, 85, .18);

  --amber: #D4880C;
  --amber-light: #FFF4E0;
  --teal: #0E7C86;
  --teal-light: #E2F5F7;
  --rose: #C2185B;
  --rose-light: #FCE4EC;

  --cream: #FAF8F4;
  --cream-dark: #F0EDE6;
  --ink: #1B1B18;
  --ink-soft: #3D3D37;
  --ink-muted: #7A7A6E;
  --ink-faint: #B0AFA6;
  --border: #E4E2DB;
  --border-light: #EDEBE5;

  /* type */
  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --font-serif: 'Fraunces', Georgia, serif;

  /* radii */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;

  /* shadows */
  --shadow-sm: 0 1px 3px rgba(27,27,24,.06);
  --shadow-md: 0 8px 30px rgba(27,27,24,.08);
  --shadow-lg: 0 20px 60px rgba(27,27,24,.10);
  --shadow-phone: 0 30px 80px rgba(27,27,24,.18), 0 0 0 1px rgba(255,255,255,.08) inset;

  /* transitions */
  --ease-out: cubic-bezier(.2, .9, .3, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
}

html { scroll-behavior: smooth; }

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

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

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

/* --- Grain overlay --- */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px;
}

/* --- Accent bar (top line) --- */
.accent-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--amber), var(--green));
  z-index: 1001;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .9rem;
  border-radius: var(--r-md);
  cursor: pointer;
  border: none;
  transition: all .25s var(--ease-out);
  text-align: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--green);
  color: #fff;
  padding: 14px 28px;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.2) 45%, transparent 50%);
  transform: translateX(-100%);
  transition: transform .6s ease;
}
.btn-primary:hover::after { transform: translateX(100%); }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 10px 30px var(--green-glow); }

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
  padding: 12px 26px;
}
.btn-outline:hover { background: var(--green); color: #fff; transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--ink-soft);
  padding: 14px 28px;
  border-bottom: 2px solid transparent;
}
.btn-ghost:hover { color: var(--green); border-bottom-color: var(--green); }

.btn-lg { font-size: .95rem; padding: 16px 32px; }
.btn-full { width: 100%; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 3px; left: 0; right: 0;
  z-index: 1000;
  background: rgba(250, 248, 244, .85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: all .35s var(--ease-out);
}

.nav.scrolled {
  background: rgba(250, 248, 244, .96);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  transition: transform .2s var(--ease-spring);
}
.logo:hover { transform: scale(1.03); }
.logo em { font-style: normal; color: var(--green); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links li a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--ink-muted);
  padding: 8px 14px;
  border-radius: var(--r-sm);
  transition: all .2s;
}
.nav-links li a:hover { color: var(--ink); background: var(--cream-dark); }

@keyframes demo-live-pulse {
  0%, 100% { box-shadow: 0 2px 10px color-mix(in srgb, var(--green) 35%, transparent), 0 0 0 0 rgba(255, 140, 50, 0); }
  50%       { box-shadow: 0 2px 14px color-mix(in srgb, var(--green) 40%, transparent), 0 0 18px 6px rgba(255, 140, 50, 0.35); }
}

.nav-demo-live {
  background: var(--green) !important;
  color: #fff !important;
  padding: 9px 22px !important;
  border-radius: var(--r-sm) !important;
  font-weight: 700 !important;
  animation: demo-live-pulse 2.2s ease-in-out infinite !important;
  transition: background .2s, transform .2s, box-shadow .2s !important;
}
.nav-demo-live:hover {
  background: var(--green-dark) !important;
  transform: translateY(-2px) !important;
  animation: none !important;
  box-shadow: 0 4px 16px color-mix(in srgb, var(--green) 45%, transparent), 0 0 20px 6px rgba(255, 140, 50, 0.4) !important;
}

.nav-cta {
  color: var(--ink-muted) !important;
  padding: 9px 16px !important;
  font-weight: 500 !important;
  transition: color .2s !important;
}
.nav-cta:hover { color: var(--ink) !important; background: transparent !important; transform: none !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all .3s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 100px 0 60px;
  position: relative;
  overflow: visible;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.hero-glow--1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(26,157,85,.15), transparent 70%);
  top: -300px; right: -200px;
}
.hero-glow--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,136,12,.1), transparent 70%);
  bottom: -100px; left: -200px;
}
.hero-glow--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(14,124,134,.08), transparent 70%);
  top: 40%; left: 50%;
  transform: translateX(-50%);
}

.hero-top {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-pale);
  color: var(--green-dark);
  border: 1px solid rgba(26,157,85,.2);
  border-radius: 100px;
  padding: 7px 18px 7px 12px;
  font-size: .82rem;
  font-weight: 600;
  font-family: var(--font-body);
  margin-bottom: 32px;
}

.badge-pulse {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2.5s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--green-glow); }
  50% { opacity: .7; box-shadow: 0 0 0 8px transparent; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 24px;
  letter-spacing: -.03em;
}

.title-accent {
  color: var(--green);
  position: relative;
}
.title-accent::after {
  content: '';
  position: absolute;
  bottom: 2px; left: -4px; right: -4px;
  height: 12px;
  background: var(--green-glow);
  border-radius: 4px;
  z-index: -1;
}

.hero-subtitle {
  font-size: 1.12rem;
  color: var(--ink-muted);
  max-width: 520px;
  margin: 0 auto 20px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0;
}

/* --- Hero Layout (3-column grid: phone | copy | phone) --- */
.hero-layout {
  display: grid;
  grid-template-columns: 137px 1fr 137px;
  align-items: center;
  gap: 36px;
  padding: 16px 0;
}

.hero-phone-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* --- Hero Phones --- */
.hero-phone {
  width: 137px;
  height: 273px;
  z-index: 2;
  opacity: 0;
  flex-shrink: 0;
}

.hero-phone--left {
  transform: translateY(50px) rotate(-7deg);
  animation: phoneEnterLeft .9s var(--ease-out) .4s forwards;
}
.hero-phone--right {
  transform: translateY(50px) rotate(7deg);
  animation: phoneEnterRight .9s var(--ease-out) .6s forwards;
}

@keyframes phoneEnterLeft {
  from { opacity: 0; transform: translateY(80px) rotate(-12deg); }
  to   { opacity: 1; transform: translateY(0px) rotate(-7deg); }
}
@keyframes phoneEnterRight {
  from { opacity: 0; transform: translateY(80px) rotate(12deg); }
  to   { opacity: 1; transform: translateY(0px) rotate(7deg); }
}
/* Float handled entirely by JS rAF loop — no CSS float keyframes needed */

/* --- Phone mockup shared --- */
.phone-mockup {
  background: var(--ink);
  border-radius: 36px;
  padding: 10px;
  box-shadow: var(--shadow-phone);
  position: relative;
  flex-shrink: 0;
}

.phone-notch {
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 72px; height: 6px;
  background: rgba(255,255,255,.12);
  border-radius: 3px;
  z-index: 10;
}

.phone-screen {
  background: #fff;
  border-radius: 28px;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* --- Hero phone internals (WhatsApp) --- */
.wa-header {
  background: #075e54;
  padding: 14px 14px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.wa-avatar {
  width: 34px; height: 34px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.wa-info { display: flex; flex-direction: column; }
.wa-name { font-size: .78rem; font-weight: 600; color: #fff; }
.wa-status { font-size: .64rem; color: rgba(255,255,255,.6); }

.wa-chat {
  flex: 1;
  background: linear-gradient(180deg, #ECE5DD 0%, #E5DDD5 100%);
  padding: 12px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wa-bubble {
  max-width: 82%;
  padding: 8px 11px;
  border-radius: 10px;
  font-size: .72rem;
  line-height: 1.45;
  animation: bubbleIn .35s var(--ease-out);
  word-break: break-word;
}
@keyframes bubbleIn {
  from { opacity: 0; transform: translateY(8px) scale(.94); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.wa-bubble-user {
  background: #DCF8C6;
  color: #111;
  align-self: flex-end;
  border-bottom-right-radius: 3px;
}
.wa-bubble-bot {
  background: #fff;
  color: #111;
  align-self: flex-start;
  border-bottom-left-radius: 3px;
  box-shadow: 0 1px 1px rgba(0,0,0,.06);
}
.wa-bubble-time {
  font-size: .58rem;
  color: #999;
  text-align: right;
  margin-top: 2px;
}
.wa-bubble-link {
  background: #fff;
  border-radius: 8px;
  padding: 10px;
  align-self: flex-start;
  max-width: 85%;
  box-shadow: 0 1px 1px rgba(0,0,0,.06);
  animation: bubbleIn .35s var(--ease-out);
}
.wa-bubble-link .link-label { font-size: .65rem; color: #999; margin-bottom: 3px; }
.wa-bubble-link .link-title { font-size: .74rem; font-weight: 600; color: #1A73E8; }
.wa-bubble-link .link-url   { font-size: .62rem; color: var(--green); margin-top: 2px; }

.hero-chat-static {
  background: linear-gradient(180deg, #ECE5DD 0%, #E5DDD5 100%);
}

.hero-chat-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: auto;
  padding-top: 8px;
}
.hero-chat-highlights span {
  padding: 4px 7px;
  border-radius: 999px;
  background: rgba(26,157,85,.12);
  border: 1px solid rgba(26,157,85,.22);
  color: var(--green-dark);
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .02em;
}

.hero-phone-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: #FAFAF7;
  border-top: 1px solid var(--border-light);
  flex-shrink: 0;
}
.hero-phone-footer span {
  font-size: .58rem;
  color: var(--ink-faint);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.hero-phone-footer strong {
  font-size: .82rem;
  color: var(--green);
  font-weight: 800;
}

/* --- Hero phone internals (Dashboard) --- */
.hero-ops-header {
  display: flex; flex-direction: column; gap: 3px;
  padding: 14px;
  background: linear-gradient(135deg, var(--green-deep), var(--green));
  color: #fff;
  flex-shrink: 0;
}
.hero-ops-eyebrow {
  font-size: .58rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  opacity: .7;
}
.hero-ops-header strong { font-size: .92rem; font-weight: 700; }

.hero-ops-body {
  flex: 1; padding: 10px;
  display: flex; flex-direction: column; gap: 10px;
  background: linear-gradient(180deg, #FAFAF7 0%, #fff 100%);
}

.hero-ops-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.hero-ops-card {
  padding: 10px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
.hero-ops-card span {
  display: block; margin-bottom: 4px;
  font-size: .56rem; font-weight: 700;
  color: var(--ink-faint);
  text-transform: uppercase; letter-spacing: .08em;
}
.hero-ops-card strong {
  font-size: .92rem; color: var(--ink);
}

.hero-orders {
  padding: 10px; border-radius: 12px;
  background: #fff;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
.hero-orders-title {
  margin-bottom: 6px;
  font-size: .58rem; font-weight: 800;
  color: var(--ink-faint);
  text-transform: uppercase; letter-spacing: .08em;
}
.hero-order-row {
  display: grid; grid-template-columns: 1fr auto auto;
  align-items: center; gap: 6px;
  padding: 8px 0;
  border-top: 1px solid var(--border-light);
}
.hero-order-row:first-of-type { border-top: none; padding-top: 0; }
.hero-order-row span { font-size: .66rem; font-weight: 700; color: var(--ink-muted); }
.hero-order-row strong { font-size: .64rem; color: var(--ink); }
.hero-order-row small { font-size: .6rem; font-weight: 700; color: var(--green); }

.hero-tracking-bar {
  background: linear-gradient(180deg, #FAFAF7, #fff);
}

/* --- Hero phone internals scaled for 137×273px (≈0.53× original 260×520) --- */
.hero-phone.phone-mockup  { border-radius: 20px; padding: 5px; }
.hero-phone .phone-notch  { width: 38px; height: 3px; top: 7px; }
.hero-phone .phone-screen { border-radius: 14px; }

/* --- iframe phone cliente --- */
.hero-phone--right .phone-notch { display: none; }

.phone-screen--cliente {
  overflow: hidden;
  position: relative;
  background: #1DB954;
}

/* efecto cristal encima del iframe */
.phone-screen--cliente::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,.08) 0%,
    rgba(255,255,255,0)   50%,
    rgba(0,0,0,.04)       100%
  );
  pointer-events: none;
  z-index: 2;
}

.phone-iframe {
  position: absolute;
  top: 0; left: 0;
  width: 390px;
  height: 900px;
  border: none;
  transform-origin: top left;
  transform: scale(0.326);
  border-radius: 14px;
}

/* WhatsApp phone */
.hero-phone .wa-header                  { padding: 7px 7px 5px; gap: 5px; }
.hero-phone .wa-avatar                  { width: 18px; height: 18px; font-size: 9px; }
.hero-phone .wa-name                    { font-size: .41rem; }
.hero-phone .wa-status                  { font-size: .34rem; }
.hero-phone .wa-chat                    { padding: 6px; gap: 3px; }
.hero-phone .wa-bubble                  { padding: 4px 6px; font-size: .38rem; border-radius: 5px; line-height: 1.35; }
.hero-phone .wa-bubble-time             { font-size: .30rem; margin-top: 1px; }
.hero-phone .hero-chat-highlights       { gap: 3px; padding-top: 4px; }
.hero-phone .hero-chat-highlights span  { padding: 2px 4px; font-size: .30rem; }
.hero-phone .hero-phone-footer          { padding: 5px 7px; }
.hero-phone .hero-phone-footer span     { font-size: .30rem; }
.hero-phone .hero-phone-footer strong   { font-size: .44rem; }

/* Dashboard phone */
.hero-phone .hero-ops-header            { padding: 7px; gap: 2px; }
.hero-phone .hero-ops-eyebrow           { font-size: .30rem; }
.hero-phone .hero-ops-header strong     { font-size: .49rem; }
.hero-phone .hero-ops-body              { padding: 5px; gap: 5px; }
.hero-phone .hero-ops-grid              { gap: 4px; }
.hero-phone .hero-ops-card              { padding: 5px; border-radius: 6px; }
.hero-phone .hero-ops-card span         { font-size: .28rem; margin-bottom: 2px; }
.hero-phone .hero-ops-card strong       { font-size: .49rem; }
.hero-phone .hero-orders                { padding: 5px; border-radius: 6px; }
.hero-phone .hero-orders-title          { font-size: .30rem; margin-bottom: 3px; }
.hero-phone .hero-order-row             { padding: 3px 0; gap: 3px; }
.hero-phone .hero-order-row span        { font-size: .34rem; }
.hero-phone .hero-order-row strong      { font-size: .33rem; }
.hero-phone .hero-order-row small       { font-size: .31rem; }

/* Tracking bar */
.hero-phone .hero-tracking-bar          { padding: 5px 6px; }
.hero-phone .track-dot                  { width: 6px; height: 6px; }
.hero-phone .track-step span            { font-size: .27rem; }
.hero-phone .track-line                 { height: 1px; margin-bottom: 8px; }

/* --- Stats --- */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 56px;
  position: relative;
  z-index: 2;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat strong {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.02em;
}
.stat span {
  font-size: .78rem;
  color: var(--ink-muted);
  font-weight: 500;
}
.stat-divider {
  width: 1px; height: 40px;
  background: var(--border);
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 36px;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 14px;
  letter-spacing: -.025em;
  line-height: 1.12;
}

.section-header p {
  font-size: 1.02rem;
  color: var(--ink-muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-header--light .section-eyebrow { color: rgba(255,255,255,.5); }
.section-header--light h2 { color: #fff; }
.section-header--light p { color: rgba(255,255,255,.55); }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  padding: 28px 0;
  border-top: 1px solid var(--border);
}

.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--ink-muted);
}
.trust-sep {
  color: var(--ink-faint);
  font-size: 1.2rem;
}

/* ============================================================
   FEATURES
   ============================================================ */
.features {
  padding: 60px 0;
}
.features-grid-track { display: none; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 36px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-num {
  position: absolute;
  top: 20px; right: 24px;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--cream-dark);
  line-height: 1;
  letter-spacing: -.04em;
  user-select: none;
}

.feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-icon--green  { background: var(--green-pale); color: var(--green); }
.feature-icon--amber  { background: var(--amber-light); color: var(--amber); }
.feature-icon--teal   { background: var(--teal-light); color: var(--teal); }
.feature-icon--rose   { background: var(--rose-light); color: var(--rose); }

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ink);
}

.feature-card p {
  font-size: .9rem;
  color: var(--ink-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.feature-list li {
  font-size: .82rem;
  color: var(--ink-soft);
  padding-left: 18px;
  position: relative;
}
.feature-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-section {
  padding: 60px 0;
  background: var(--cream-dark);
}

.how-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.how-step {
  text-align: center;
  max-width: 260px;
  padding: 0 20px;
}

.how-num {
  font-family: var(--font-display);
  font-size: 3.6rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -.03em;
}

.how-step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.how-step p {
  font-size: .88rem;
  color: var(--ink-muted);
  line-height: 1.6;
}

.how-connector {
  display: flex;
  align-items: center;
  padding-top: 28px;
  color: var(--ink-faint);
  flex-shrink: 0;
}

/* ============================================================
   DEMO
   ============================================================ */
.demo-section {
  padding: 60px 0;
}

.demo-wrapper {
  background: #fff;
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.scene-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.scene-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 2px solid var(--border);
  border-radius: var(--r-md);
  background: #fff;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink-muted);
  transition: all .25s var(--ease-out);
}
.scene-btn:hover { border-color: var(--green); color: var(--ink); }
.scene-btn.active {
  border-color: var(--green);
  background: var(--green-pale);
  color: var(--green-dark);
}
.scene-btn.done { border-color: var(--green); color: var(--green); }

.scene-num {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--border-light);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  transition: all .2s;
}
.scene-btn.active .scene-num { background: var(--green); color: #fff; }
.scene-btn.done .scene-num { background: var(--green); color: #fff; }

.scene-connector {
  width: 40px; height: 2px;
  background: var(--border);
  flex-shrink: 0;
}

.demo-stage { position: relative; min-height: 420px; }

.scene {
  display: none;
  animation: sceneIn .4s var(--ease-out);
}
.scene.active { display: block; }

@keyframes sceneIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.scene-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.scene-text h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 14px;
}
.scene-text p {
  color: var(--ink-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  font-size: .92rem;
}

.scene-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.step {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--ink-faint);
  transition: color .3s, transform .3s var(--ease-out);
}
.step.active { color: var(--ink); transform: translateX(4px); }

.step-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
  transition: all .3s;
}
.step.active .step-dot {
  background: var(--green);
  box-shadow: 0 0 0 4px var(--green-pale);
}

/* Demo phone shared */
.phone-mockup-wrap { display: flex; justify-content: center; }
.demo-section .phone-mockup {
  width: 260px;
  height: 500px;
}
.demo-section .phone-mockup.phone-mockup--menu {
  width: 260px;
  height: 500px;
}

/* WhatsApp input bar */
.wa-input {
  padding: 10px 14px;
  background: #f0f0f0;
  border-top: 1px solid #e0e0e0;
  min-height: 40px;
  flex-shrink: 0;
}
.wa-input-text {
  font-size: .72rem;
  color: var(--ink);
}
.typing-cursor::after {
  content: '|';
  animation: blink .7s infinite;
  color: var(--green);
  font-weight: 700;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* Menu mockup */
.menu-header {
  padding: 14px;
  background: linear-gradient(135deg, var(--green-deep), var(--green));
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}
.menu-logo { font-size: .82rem; font-weight: 700; }
.menu-subtitle { font-size: .68rem; opacity: .7; }

.menu-body {
  flex: 1;
  overflow-y: auto;
  padding: 10px;
  background: #FAFAF7;
}
.menu-category {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink-muted);
  padding: 8px 4px 4px;
}
.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 8px;
  border-radius: 10px;
  transition: background .2s;
}
.menu-item.selected { background: var(--green-pale); }

.item-info {
  display: flex;
  align-items: center;
  gap: 8px;
}
.item-emoji { font-size: 1.2rem; }
.item-name { font-size: .78rem; font-weight: 600; color: var(--ink); }
.item-price { font-size: .68rem; color: var(--ink-muted); }

.item-add {
  width: 28px; height: 28px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: #fff;
  font-size: .82rem;
  font-weight: 700;
  color: var(--green);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.item-add.added {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.cart-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  background: #fff;
  border-top: 1px solid var(--border-light);
  gap: 8px;
  flex-shrink: 0;
}
.cart-bar span {
  font-size: .7rem;
  font-weight: 600;
  color: var(--ink-muted);
}
.cart-btn {
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: .68rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
}
.cart-btn:hover { background: var(--green-dark); }

/* Tracking */
.tracking-bar {
  background: #FAFAF7;
  padding: 10px 12px;
  border-top: 1px solid var(--border-light);
  flex-shrink: 0;
}
.tracking-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.track-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.track-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--border);
  border: 2px solid var(--border);
  transition: all .5s var(--ease-out);
}
.track-step.done .track-dot { background: var(--green); border-color: var(--green); }
.track-step.active .track-dot {
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 0 0 4px var(--green-pale);
  animation: pulse 1.5s infinite;
}
.track-step span {
  font-size: .52rem;
  font-weight: 600;
  color: var(--ink-faint);
  transition: color .5s;
  text-align: center;
}
.track-step.done span, .track-step.active span { color: var(--green-dark); }

.track-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  transition: background .5s;
  margin-bottom: 16px;
}
.track-line.done { background: var(--green); }

/* Demo controls */
.demo-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
}

.demo-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--r-md);
  padding: 10px 20px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink-muted);
  cursor: pointer;
  transition: all .2s var(--ease-out);
  font-family: var(--font-body);
}
.demo-nav:hover:not(:disabled) { border-color: var(--green); color: var(--green); }
.demo-nav:disabled { opacity: .35; cursor: not-allowed; }

.demo-dots { display: flex; gap: 8px; }
.demo-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all .25s var(--ease-out);
}
.demo-dot.active { background: var(--green); transform: scale(1.3); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 60px 0;
  background: var(--green-deep);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 32px;
  backdrop-filter: blur(10px);
  transition: transform .3s var(--ease-out), background .3s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.1);
}

.testimonial-stars {
  color: var(--amber);
  font-size: .9rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,.85);
  line-height: 1.65;
  margin-bottom: 24px;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-author {
  font-size: .85rem;
  font-weight: 600;
  color: #fff;
}
.testimonial-restaurant {
  font-size: .78rem;
  color: rgba(255,255,255,.45);
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  padding: 60px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.pricing-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 36px 32px;
  border: 1px solid var(--border);
  position: relative;
  transition: transform .3s var(--ease-out), box-shadow .3s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.pricing-card--featured {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  transform: scale(1.03);
  box-shadow: 0 24px 80px rgba(27,27,24,.2);
}
.pricing-card--featured:hover { transform: scale(1.03) translateY(-4px); }

.plan-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.plan-name {
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--ink-muted);
  margin-bottom: 12px;
}
.pricing-card--featured .plan-name { color: rgba(255,255,255,.5); }

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 14px;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.02em;
}
.pricing-card--featured .price-amount { color: #fff; }
.price-period { font-size: .88rem; color: var(--ink-muted); }
.pricing-card--featured .price-period { color: rgba(255,255,255,.45); }

.plan-desc {
  font-size: .85rem;
  color: var(--ink-muted);
  margin-bottom: 24px;
  line-height: 1.5;
}
.pricing-card--featured .plan-desc { color: rgba(255,255,255,.6); }

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.plan-features li {
  font-size: .85rem;
  color: var(--ink-soft);
  padding-left: 22px;
  position: relative;
}
.plan-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
  font-size: .78rem;
}
.pricing-card--featured .plan-features li { color: rgba(255,255,255,.8); }
.pricing-card--featured .plan-features li::before { color: rgba(255,255,255,.5); }

.plan-off {
  color: var(--ink-faint) !important;
  text-decoration: line-through;
}
.plan-off::before { content: '✕' !important; color: var(--ink-faint) !important; }

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: 60px 0;
  background: var(--cream-dark);
}

.faq-items {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: #fff;
  overflow: hidden;
  transition: all .3s var(--ease-out);
}
.faq-item.open {
  border-color: var(--green);
  box-shadow: 0 8px 30px var(--green-glow);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color .2s;
}
.faq-item.open .faq-question { color: var(--green); }

.faq-question::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--ink-faint);
  transition: transform .3s var(--ease-spring), color .2s;
  flex-shrink: 0;
  line-height: 1;
}
.faq-item.open .faq-question::after {
  content: '−';
  color: var(--green);
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease-out), padding .35s var(--ease-out);
}
.faq-answer p {
  padding: 0 24px 20px;
  font-size: .9rem;
  color: var(--ink-muted);
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  max-height: 300px;
}

/* ============================================================
   CTA
   ============================================================ */
.cta-section {
  padding: 60px 0;
}

.cta-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  background: var(--ink);
  border-radius: var(--r-xl);
  padding: 56px;
  align-items: start;
}

.cta-text h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.15;
  letter-spacing: -.02em;
}

.cta-text p {
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin-bottom: 28px;
  font-size: .92rem;
}

.cta-perks {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cta-perks span {
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  padding-left: 22px;
  position: relative;
}
.cta-perks span::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* Form */
.cta-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.form-group label {
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
}
.form-group input,
.form-group select {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  font-size: .88rem;
  color: #fff;
  font-family: var(--font-body);
  transition: border-color .2s, background .2s;
  outline: none;
}
.form-group input::placeholder { color: rgba(255,255,255,.25); }
.form-group input:focus,
.form-group select:focus {
  border-color: var(--green);
  background: rgba(26,157,85,.08);
}
.form-group select option { background: var(--ink); color: #fff; }

.form-disclaimer {
  font-size: .72rem;
  color: rgba(255,255,255,.28);
  text-align: center;
}

.form-success {
  display: none;
  background: var(--green-pale);
  color: var(--green-dark);
  border: 1px solid var(--green);
  border-radius: var(--r-sm);
  padding: 14px;
  font-size: .88rem;
  font-weight: 600;
  text-align: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: var(--ink-faint);
  padding: 56px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer .logo { color: #fff; margin-bottom: 12px; }
.footer-brand p {
  font-size: .85rem;
  color: rgba(255,255,255,.35);
  line-height: 1.6;
  max-width: 260px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  color: rgba(255,255,255,.5);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col a {
  font-size: .85rem;
  color: rgba(255,255,255,.35);
  transition: color .2s;
}
.footer-col a:hover { color: var(--green); }
.footer-links { display: contents; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: center;
}
.footer-bottom span { font-size: .78rem; color: rgba(255,255,255,.25); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-layout { grid-template-columns: 116px 1fr 116px; gap: 20px; }
  .hero-phone { width: 116px; height: 231px; }
  /* phone 116px - 10px padding = 106px screen → 106/390 */
  .phone-iframe { transform: scale(0.272); }
}

@media (max-width: 768px) {
  .hide-mobile { display: none !important; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 67px; left: 0; right: 0;
    background: var(--cream);
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    gap: 4px;
  }
  .nav-links.open li a { display: block; padding: 12px 8px; }
  .nav-cta { display: inline-block; margin-top: 8px; text-align: center; }
  .nav-toggle { display: flex; }

  .hero { padding: 72px 0 40px; min-height: auto; }
  .hero-title { font-size: clamp(2rem, 7vw, 2.8rem); }

  /* Mobile: copy on top, phones side-by-side below */
  .hero-layout {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "copy copy"
      "left right";
    gap: 16px;
  }
  .hero-top          { grid-area: copy; }
  .hero-phone-col--left  { grid-area: left; }
  .hero-phone-col--right { grid-area: right; }
  .hero-phone {
    width: 98px;
    height: 196px;
    opacity: 1;
    animation: none;
  }
  .hero-phone--left  { transform: rotate(-5deg); }
  .hero-phone--right { transform: rotate(5deg); }

  .hero-stats { gap: 24px; margin-top: 36px; }
  .stat-divider { display: none; }

  .features {
    overflow: hidden;
  }
  .features-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px;
    /* padding lateral: primer card arranca con indent, último card deja peek del siguiente */
    padding: 8px 24px 20px;
    margin: 0 -24px;
    scrollbar-width: none;
  }
  .features-grid::-webkit-scrollbar { display: none; }
  .features-grid .feature-card {
    flex: 0 0 78vw;
    max-width: 300px;
    scroll-snap-align: start;
  }
  /* indicador de scroll — track + thumb animado */
  .features-grid-track {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 4px;
  }
  .features-grid-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--border);
    transition: width .3s var(--ease-out), background .3s;
  }
  .features-grid-dot.active {
    width: 20px;
    border-radius: 4px;
    background: var(--green);
  }

  .how-steps { flex-direction: column; align-items: center; gap: 24px; }
  .how-connector { transform: rotate(90deg); padding-top: 0; }

  .scene-content { grid-template-columns: 1fr; gap: 28px; }
  .phone-mockup-wrap { order: -1; }
  .demo-section .phone-mockup { width: 220px; height: 430px; }

  .scene-connector { display: none; }
  .scene-btn .scene-label { display: none; }
  .scene-btn { padding: 10px 14px; }

  .testimonials { overflow: hidden; }
  .testimonials-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px;
    padding: 8px 24px 20px;
    margin: 0 -24px;
    scrollbar-width: none;
  }
  .testimonials-grid::-webkit-scrollbar { display: none; }
  .testimonials-grid .testimonial-card {
    flex: 0 0 78vw;
    max-width: 300px;
    scroll-snap-align: start;
  }

  .pricing { overflow: hidden; }
  .pricing-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px;
    padding: 8px 24px 20px;
    margin: 0 -24px;
    scrollbar-width: none;
  }
  .pricing-grid::-webkit-scrollbar { display: none; }
  .pricing-grid .pricing-card {
    flex: 0 0 78vw;
    max-width: 300px;
    scroll-snap-align: start;
  }
  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-4px); }

  .cta-card { grid-template-columns: 1fr; gap: 36px; padding: 36px 24px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { display: flex; flex-wrap: wrap; gap: 32px; }
  .footer-brand { margin-bottom: 8px; }

  .demo-wrapper { padding: 24px 16px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-phone { width: 140px; height: 280px; }
  /* phone 140px - 10px padding = 130px screen → 130/390 */
  .phone-iframe { transform: scale(0.333); }
  .trust-badges { gap: 8px; }
  .trust-sep { display: none; }
  .trust-badge { font-size: .75rem; }
}
