:root {
  --ink: #14171B;
  --cream: #FAF6F1;
  --beige: #F2EBE3;
  --dark: #0B0D10;
  --dark-2: #08090B;
  --dark-panel: #0F1317;
  --orange: #E8552B;
  --orange-dark: #B93F1D;
  --peach: #FF8A4C;
  --green: #17A673;
  --green-bright: #17D18E;
  --muted: #6E675F;
  --muted-2: #8A837B;
  --border: rgba(11,13,16,.07);
  --border-2: rgba(11,13,16,.08);
  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--orange-dark); }
h1, h2, h3 { font-family: var(--font-display); margin: 0; letter-spacing: -.03em; }
p { margin: 0; }
img { max-width: 100%; display: block; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 clamp(16px, 4vw, 28px); }

.text-gradient {
  background: linear-gradient(120deg, #FFB86B, #FF6B3D);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border-radius: 14px;
  transition: filter .2s ease, transform .2s ease, background .2s ease;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}
.btn-primary {
  background: linear-gradient(140deg, var(--peach), var(--orange));
  color: #fff;
  box-shadow: 0 14px 34px rgba(232,85,43,.4);
}
.btn-primary:hover { filter: brightness(1.07); transform: translateY(-1px); color: #fff; }
.btn-ghost {
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.04);
}
.btn-ghost:hover { background: rgba(255,255,255,.1); color: #fff; }
.btn-light {
  background: #fff;
  color: var(--dark);
}
.btn-light:hover { background: var(--peach); color: #fff; }
.btn-lg { font-size: 16px; padding: 16px 26px; }
.btn-sm { font-size: 14px; padding: 11px 18px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(11,13,16,.72);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px clamp(16px, 4vw, 28px);
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 30px; height: 30px; border-radius: 10px;
  background: linear-gradient(140deg, var(--peach), var(--orange));
  box-shadow: 0 0 0 1px rgba(255,255,255,.14), 0 6px 20px rgba(232,85,43,.45);
  display: flex; align-items: center; justify-content: center;
}
.logo-dot { width: 10px; height: 10px; border-radius: 99px; background: #fff; opacity: .95; }
.logo-text { font-family: var(--font-display); font-weight: 800; font-size: 19px; letter-spacing: -.02em; color: #fff; }
.logo-text.small { font-size: 17px; }
.logo-text .accent { color: var(--peach); }
.nav-desktop { display: flex; align-items: center; gap: clamp(10px, 2.2vw, 26px); }
.nav-desktop a:not(.btn) { color: rgba(255,255,255,.72); font-size: 14px; font-weight: 500; }
.nav-desktop a:not(.btn):hover { color: #fff; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; cursor: pointer; }
.nav-toggle span { width: 22px; height: 2px; background: #fff; border-radius: 2px; }
.nav-mobile { display: none; flex-direction: column; gap: 4px; padding: 10px clamp(16px,4vw,28px) 18px; }
.nav-mobile a:not(.btn) { color: rgba(255,255,255,.8); font-size: 15px; font-weight: 500; padding: 10px 4px; }
.nav-mobile .btn { margin-top: 8px; }

@media (max-width: 860px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile.open { display: flex; }
}

/* Hero */
.hero {
  position: relative;
  background: var(--dark);
  color: #fff;
  overflow: hidden;
  padding: clamp(56px, 8vw, 104px) 0 clamp(72px, 9vw, 120px);
}
.hero-glow {
  position: absolute; inset: -30% -10% auto -10%; height: 120%;
  background:
    radial-gradient(50% 55% at 22% 18%, rgba(255,138,76,.30), transparent 70%),
    radial-gradient(45% 50% at 82% 8%, rgba(23,166,115,.18), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(70% 60% at 50% 30%, #000, transparent 75%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 14px 7px 9px; border-radius: 99px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .06em; color: rgba(255,255,255,.82);
  margin-bottom: 22px;
}
.pulse-dot {
  width: 7px; height: 7px; border-radius: 99px; background: var(--green);
  box-shadow: 0 0 0 4px rgba(23,166,115,.18);
  animation: pulse 2s ease-in-out infinite;
}
.hero h1 { font-weight: 800; font-size: clamp(38px, 5.4vw, 68px); line-height: 1.02; letter-spacing: -.035em; margin-bottom: 20px; text-wrap: balance; }
.hero-lead { font-size: clamp(16px, 1.5vw, 19px); line-height: 1.6; color: rgba(255,255,255,.68); margin-bottom: 32px; max-width: 56ch; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.hero-ctas.center { justify-content: center; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 20px 26px; font-size: 13.5px; color: rgba(255,255,255,.55); }
.hero-trust .sep { opacity: .35; }

.hero-demo { position: relative; display: flex; justify-content: center; padding: 10px 0; }
.phone-glow {
  position: absolute; width: min(420px, 88%); height: min(420px, 88%); border-radius: 999px;
  background: radial-gradient(circle, rgba(255,138,76,.28), transparent 65%); filter: blur(10px);
}
.phone {
  position: relative; width: min(330px, 84vw); border-radius: 42px; padding: 11px;
  background: linear-gradient(160deg, #2A2F36, #0E1114);
  box-shadow: 0 40px 90px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.08);
  animation: float 7s ease-in-out infinite;
}
.phone-screen { border-radius: 32px; background: #FFFDFB; overflow: hidden; height: 560px; max-height: 78vh; display: flex; flex-direction: column; }
.chat-header { background: var(--dark-panel); padding: 14px 16px; display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.chat-avatar {
  width: 34px; height: 34px; border-radius: 99px; background: linear-gradient(140deg, var(--peach), var(--orange));
  display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: 14px; flex: none;
}
.chat-name { color: #fff; font-size: 14px; font-weight: 700; line-height: 1.2; }
.chat-status { color: var(--green-bright); font-size: 11.5px; font-family: var(--font-mono); }
.chat-body {
  flex: 1 1 auto; min-height: 0; overflow-y: auto;
  padding: 16px 14px; display: flex; flex-direction: column; gap: 10px;
  background: linear-gradient(180deg, #FFFDFB, #F7F2EC);
  transition: opacity .35s ease;
  scrollbar-width: none;
}
.chat-body::-webkit-scrollbar { width: 0; height: 0; }
.chat-body.fade-out { opacity: 0; }
.chat-msg { display: flex; }
.chat-bubble {
  max-width: 82%; font-size: 13.5px; line-height: 1.45; padding: 11px 14px; border-radius: 16px;
  background: #fff; border: 1px solid rgba(11,13,16,.07); box-shadow: 0 4px 14px rgba(11,13,16,.05);
  animation: pop .45s cubic-bezier(.2,.7,.3,1) both;
}
.chat-who { font-family: var(--font-mono); font-size: 10px; letter-spacing: .08em; color: #B0A79E; margin-bottom: 5px; text-transform: uppercase; }
.order-card {
  margin-top: 2px; border-radius: 18px; background: var(--dark-panel); color: #fff; padding: 14px;
  box-shadow: 0 14px 30px rgba(0,0,0,.18); animation: pop .5s cubic-bezier(.2,.7,.3,1) both;
}
.order-card-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.order-tag { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .1em; color: rgba(255,255,255,.5); }
.order-status { font-size: 11px; font-weight: 700; color: var(--green-bright); background: rgba(23,209,142,.12); padding: 4px 9px; border-radius: 99px; }
.order-line { display: flex; justify-content: space-between; font-size: 13px; padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.order-line span:last-child { color: rgba(255,255,255,.65); }
.order-line.total { border-bottom: none; margin-top: 10px; padding-top: 10px; border-top: 1px solid rgba(255,255,255,.12); font-weight: 700; font-size: 14px; }
.order-line.total span:last-child { font-weight: 800; font-size: 17px; color: var(--peach); }
.chat-input { flex: 0 0 auto; padding: 12px 14px; background: #fff; border-top: 1px solid rgba(11,13,16,.07); display: flex; align-items: center; gap: 10px; }
.chat-input-field { flex: 1; height: 38px; border-radius: 99px; background: #F3EDE6; display: flex; align-items: center; padding: 0 14px; color: #B0A79E; font-size: 13px; }
.chat-send { width: 38px; height: 38px; border-radius: 99px; background: linear-gradient(140deg, var(--peach), var(--orange)); flex: none; }

.float-badge {
  position: absolute; background: rgba(255,255,255,.07); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.14); border-radius: 16px; padding: 12px 14px; color: #fff;
  box-shadow: 0 18px 40px rgba(0,0,0,.4);
}
.float-badge-top { right: clamp(-6px, 1vw, 10px); top: 14%; }
.float-badge-bottom { left: clamp(-6px, 1vw, 4px); bottom: 12%; }
.float-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: .08em; color: rgba(255,255,255,.5); margin-bottom: 6px; }
.float-value { font-size: 13.5px; font-weight: 700; }

/* Sections */
.section { padding: clamp(64px, 8vw, 110px) 0; }
.section-dark { background: var(--dark); color: #fff; }
.section-beige { background: var(--beige); padding-block: clamp(64px, 8vw, 110px); border-block: 1px solid rgba(11,13,16,.06); }
.section-narrow .wrap { max-width: 820px; }
.section-cta { background: var(--dark); color: #fff; position: relative; overflow: hidden; padding: clamp(70px, 9vw, 130px) 0; }
.cta-glow { position: absolute; inset: 0; background: radial-gradient(55% 60% at 50% 110%, rgba(255,138,76,.32), transparent 70%); }
.cta-inner { position: relative; max-width: 820px; text-align: center; margin: 0 auto; }
.cta-inner h2 { font-weight: 800; font-size: clamp(32px, 5vw, 60px); line-height: 1.04; letter-spacing: -.035em; margin-bottom: 18px; text-wrap: balance; }
.cta-inner p { font-size: clamp(16px, 1.6vw, 19px); line-height: 1.6; color: rgba(255,255,255,.66); margin: 0 auto 34px; max-width: 56ch; }
.cta-micro { margin-top: 22px; font-size: 13.5px; color: rgba(255,255,255,.45); }

.eyebrow { font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em; margin-bottom: 14px; }
.eyebrow.orange { color: var(--orange); }
.eyebrow.peach { color: var(--peach); }
.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head.center { max-width: 640px; margin: 0 auto 44px; text-align: center; }
.section-head h2 { font-weight: 800; font-size: clamp(30px, 4vw, 50px); line-height: 1.06; letter-spacing: -.03em; margin-bottom: 16px; text-wrap: balance; }
.section-lead { font-size: 17px; line-height: 1.65; color: var(--muted); max-width: 60ch; }
.section-lead.light { color: rgba(255,255,255,.6); }

.grid { display: grid; gap: 16px; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: clamp(28px, 4vw, 56px); align-items: center; }

/* Feature cards */
.feature-card {
  background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 26px;
  box-shadow: 0 2px 10px rgba(11,13,16,.03); transition: transform .25s ease, box-shadow .25s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(11,13,16,.09); }
.feature-icon { width: 42px; height: 42px; border-radius: 13px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.feature-icon.orange { background: rgba(232,85,43,.1); }
.feature-icon.green { background: rgba(23,166,115,.12); }
.feature-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 14.5px; line-height: 1.6; color: var(--muted); }
.ico { display: block; background: var(--orange); }
.ico-square { width: 16px; height: 16px; border-radius: 5px 5px 5px 2px; }
.ico-circle { width: 16px; height: 16px; border-radius: 99px; border: 4px solid var(--orange); background: none; }
.ico-tall { width: 14px; height: 18px; border-radius: 3px; border: 3px solid var(--orange); background: none; }
.ico-wide { width: 18px; height: 12px; border-radius: 3px; background: var(--green); }
.ico-ring { width: 16px; height: 16px; border-radius: 99px; border: 3px solid var(--green); border-top-color: transparent; background: none; }
.ico-pill { width: 18px; height: 10px; border-radius: 3px 6px 6px 3px; background: var(--green); }

.cta-strip {
  margin-top: 26px; display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
  background: var(--dark); border-radius: 22px; padding: 22px 26px; color: #fff;
}
.cta-strip span { font-family: var(--font-display); font-size: clamp(18px, 2vw, 22px); font-weight: 700; letter-spacing: -.02em; flex: 1; min-width: 280px; }

/* Journey */
.journey-card {
  background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.1); border-radius: 18px; padding: 20px;
  transition: background .2s ease, border-color .2s ease;
}
.journey-card:hover { background: rgba(255,255,255,.08); border-color: rgba(255,138,76,.4); }
.journey-top { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.journey-num {
  font-family: var(--font-mono); font-size: 11px; color: var(--dark); background: var(--peach);
  width: 24px; height: 24px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-weight: 500;
}
.journey-tag { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .1em; color: rgba(255,255,255,.45); }
.journey-title { font-size: 16px; font-weight: 700; margin-bottom: 6px; letter-spacing: -.01em; }
.journey-desc { font-size: 14px; line-height: 1.55; color: rgba(255,255,255,.58); }

/* Segments */
.segment-card {
  background: #fff; border: 1px solid var(--border); border-radius: 22px; overflow: hidden;
  box-shadow: 0 2px 10px rgba(11,13,16,.03); transition: transform .25s ease, box-shadow .25s ease;
}
.segment-card:hover { transform: translateY(-4px); box-shadow: 0 20px 44px rgba(11,13,16,.1); }
.segment-photo {
  height: 132px; overflow: hidden; border-bottom: 1px solid rgba(11,13,16,.06); background: #FBF3EC;
}
.segment-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.segment-card:hover .segment-photo img { transform: scale(1.04); }
.segment-body { padding: 22px; }
.segment-body h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.segment-body p { font-size: 14.5px; line-height: 1.6; color: var(--muted); margin-bottom: 14px; }
.segment-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.segment-tag { font-size: 12.5px; font-weight: 600; color: #8A5A44; background: rgba(232,85,43,.09); padding: 6px 11px; border-radius: 99px; }

/* Flow */
.flow-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; }
.flow-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 20px 16px; text-align: center; }
.flow-num {
  width: 34px; height: 34px; margin: 0 auto 12px; border-radius: 11px; background: var(--dark); color: var(--peach);
  font-family: var(--font-mono); font-size: 12px; display: flex; align-items: center; justify-content: center;
}
.flow-title { font-size: 14.5px; font-weight: 700; letter-spacing: -.01em; margin-bottom: 5px; }
.flow-desc { font-size: 12.5px; line-height: 1.5; color: var(--muted-2); }

/* Structure / Painel */
.structure-layout { padding-top: 0; padding-bottom: 0; }
.check-list { display: grid; gap: 10px; margin-top: 26px; }
.check-item { display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 14px 16px; }
.section-dark .check-item { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.1); }
.check-mark { width: 20px; height: 20px; border-radius: 99px; background: rgba(23,166,115,.14); color: var(--green); font-size: 12px; display: flex; align-items: center; justify-content: center; font-weight: 700; flex: none; }
.check-item span:last-child { font-size: 15px; font-weight: 600; }
.section-dark .check-item span:last-child { color: #fff; }

.panel-window { border-radius: 22px; overflow: hidden; background: #fff; border: 1px solid rgba(11,13,16,.09); box-shadow: 0 30px 70px rgba(11,13,16,.14); }
.panel-titlebar { background: var(--dark-panel); padding: 12px 16px; display: flex; align-items: center; gap: 8px; }
.dot { width: 10px; height: 10px; border-radius: 99px; }
.dot.red { background: #FF5F57; }
.dot.yellow { background: #FEBC2E; }
.dot.green { background: #28C840; }
.panel-titlebar-text { margin-left: 12px; font-family: var(--font-mono); font-size: 11px; color: rgba(255,255,255,.45); }
.panel-body { padding: 18px; background: #FBF8F5; }
.panel-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 16px; }
.stat-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 14px; }
.stat-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: .08em; color: #A79E95; margin-bottom: 6px; }
.stat-value { font-family: var(--font-display); font-size: 26px; font-weight: 800; letter-spacing: -.03em; }
.stat-value.orange { color: var(--orange); }
.stat-value.green { color: var(--green); }
.orders-list { background: #fff; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.order-row { display: flex; align-items: center; gap: 12px; padding: 13px 16px; border-bottom: 1px solid rgba(11,13,16,.06); }
.order-row:last-child { border-bottom: none; }
.order-id { font-family: var(--font-mono); font-size: 11.5px; color: #A79E95; width: 52px; flex: none; }
.order-name { flex: 1; font-size: 14px; font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.order-total { font-size: 13px; color: var(--muted); flex: none; }
.order-status-pill { font-size: 11.5px; font-weight: 700; padding: 5px 10px; border-radius: 99px; background: rgba(11,13,16,.05); color: var(--muted); white-space: nowrap; flex: none; }
.panel-caption { margin: 18px 2px 0; font-family: var(--font-display); font-size: 18px; font-weight: 700; letter-spacing: -.02em; }

/* Optional site mock */
.pill-row { display: flex; flex-wrap: wrap; gap: 9px; margin: 0 0 26px; }
.pill-row.center { justify-content: center; }
.pill { font-size: 13px; font-weight: 600; padding: 9px 14px; border-radius: 99px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); color: #fff; }
.pill.dark { font-size: 12.5px; padding: 7px 13px; background: rgba(255,255,255,.08); border: none; }
.link-arrow { color: var(--peach); font-weight: 700; font-size: 15.5px; }
.link-arrow:hover { color: #fff; }

.site-mock { border-radius: 18px; overflow: hidden; border: 1px solid rgba(255,255,255,.12); box-shadow: 0 30px 70px rgba(0,0,0,.5); }
.site-mock-bar { background: #1A1F25; padding: 10px 14px; display: flex; align-items: center; gap: 10px; }
.mock-dots { display: flex; gap: 6px; }
.mock-dot { width: 9px; height: 9px; border-radius: 99px; background: rgba(255,255,255,.25); }
.mock-url { flex: 1; background: rgba(0,0,0,.35); border-radius: 7px; padding: 5px 11px; font-family: var(--font-mono); font-size: 11px; color: rgba(255,255,255,.55); }
.site-mock-body { background: #fff; }
.site-mock-hero {
  height: 190px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center; background: #F4EEE8;
}
.mock-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.mock-hero-img + .mock-cta { position: relative; }
.site-mock-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(11,13,16,.45), rgba(11,13,16,.05)); }
.mock-cta { position: relative; z-index: 1; background: var(--orange); color: #fff; font-size: 13px; font-weight: 700; padding: 10px 18px; border-radius: 10px; }
.site-mock-products { padding: 16px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.mock-product { border: 1px solid rgba(11,13,16,.08); border-radius: 12px; overflow: hidden; }
.mock-product-img { height: 56px; background-image: repeating-linear-gradient(135deg, rgba(11,13,16,.05) 0 7px, transparent 7px 14px); background-color: #F7F2EC; }
.mock-product-info { padding: 9px; }
.mock-product-info strong { display: block; font-size: 12px; font-weight: 700; }
.mock-product-info span { font-size: 11.5px; color: var(--muted-2); }

/* Doors / funnel */
.doors-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 14px; }
.door { background: #fff; border: 1px solid var(--border-2); border-radius: 14px; padding: 14px 20px; font-size: 14.5px; font-weight: 700; box-shadow: 0 2px 10px rgba(11,13,16,.04); }
.funnel { display: flex; flex-direction: column; align-items: center; }
.funnel-line { width: 1px; height: 34px; background: linear-gradient(#D8CFC6, var(--orange)); }
.funnel-box { width: min(560px, 100%); background: var(--dark); color: #fff; border-radius: 22px; padding: 26px; text-align: center; }
.funnel-eyebrow { font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; color: var(--peach); margin-bottom: 10px; }
.funnel-title { font-family: var(--font-display); font-size: clamp(20px, 2.4vw, 26px); font-weight: 700; letter-spacing: -.025em; margin-bottom: 16px; }

/* Benefits */
.benefits-grid { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.benefit-item { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 20px; display: flex; gap: 12px; align-items: flex-start; }
.benefit-dot { width: 8px; height: 8px; border-radius: 99px; background: var(--orange); margin-top: 7px; flex: none; }
.benefit-item span:last-child { font-size: 15px; font-weight: 600; line-height: 1.45; }

/* FAQ */
.faq-list { display: grid; gap: 10px; }
.faq-item { background: #fff; border: 1px solid var(--border-2); border-radius: 16px; overflow: hidden; }
.faq-question {
  width: 100%; text-align: left; background: none; border: none; padding: 18px 20px; display: flex; align-items: center; gap: 14px;
  cursor: pointer; font-family: var(--font-body);
}
.faq-question:hover { background: #FBF7F3; }
.faq-question span:first-child { flex: 1; font-size: 16px; font-weight: 700; letter-spacing: -.01em; color: var(--ink); }
.faq-sign { font-size: 20px; color: var(--orange); font-weight: 600; line-height: 1; flex: none; }
.faq-answer { padding: 0 20px 20px; font-size: 15px; line-height: 1.65; color: var(--muted); max-width: 62ch; display: none; }
.faq-item.open .faq-answer { display: block; }

/* Footer */
.site-footer { background: var(--dark-2); color: rgba(255,255,255,.5); padding: 34px 0; }
.footer-inner { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; font-size: 13.5px; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.in-view { opacity: 1; transform: none; }

/* Keyframes */
@keyframes pulse { 0%, 100% { opacity: .55; } 50% { opacity: 1; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes pop { from { opacity: 0; transform: translateY(10px) scale(.97); } to { opacity: 1; transform: none; } }

@media (max-width: 640px) {
  .panel-stats { grid-template-columns: 1fr 1fr; }
  .site-mock-products { grid-template-columns: 1fr 1fr; }
}
