/* ============================================================
   YouRocket — Modern SaaS-style agency landing
   (estrutura inspirada em basedeclientes.com.br)
   Font: Plus Jakarta Sans
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --amber: #f7a61b;
  --amber-dark: #e0930a;
  --amber-tint: #fef3df;
  --teal: #2cbdc2;
  --teal-deep: #1f8f94;
  --teal-tint: #e6f6f6;
  --coral: #df5b52;
  --coral-tint: #fbe9e7;

  --ink: #122023;
  --ink-2: #4c5c5e;
  --ink-3: #8aa0a1;
  --white: #ffffff;
  --bg-soft: #f4f8f8;
  --bg-mint: #eef7f6;
  --line: #e4ecec;
  --night: #0e2b2d;
  --night-2: #143638;

  --maxw: 1200px;
  --r-lg: 24px;
  --r-md: 16px;
  --r-sm: 10px;
  --shadow-sm: 0 2px 10px rgba(18,32,35,.05);
  --shadow-md: 0 18px 50px -22px rgba(18,32,35,.28);
  --shadow-lg: 0 40px 90px -36px rgba(18,32,35,.4);
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--amber); color: var(--ink); }

h1, h2, h3, h4 { font-weight: 800; line-height: 1.08; letter-spacing: -0.025em; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ---------- Badges / labels ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--amber-tint); color: var(--amber-dark);
  border: 1px solid #f6e2bf;
  padding: 7px 14px 7px 11px; border-radius: 100px;
  font-size: 13.5px; font-weight: 700;
}
.badge .star { color: var(--amber); }
.section-tag {
  display: inline-block; font-size: 13px; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--teal-deep); margin-bottom: 16px; white-space: nowrap;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: inherit; font-weight: 700; font-size: 15.5px;
  padding: 14px 24px; border-radius: 12px; cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform .25s var(--ease), background .25s, color .25s, box-shadow .25s, border-color .25s;
  white-space: nowrap;
}
.btn .ico { width: 18px; height: 18px; }
.btn-primary { background: var(--amber); color: var(--ink); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--amber-dark); transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(247,166,27,.6); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: var(--white); color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-light { background: var(--white); color: var(--ink); }
.btn-light:hover { background: var(--amber); transform: translateY(-2px); }
.btn-ghost-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.3); }
.btn-ghost-light:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn-lg { padding: 17px 30px; font-size: 16.5px; }

.text-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 700; font-size: 15px; color: var(--teal-deep);
  transition: gap .25s var(--ease);
}
.text-link:hover { gap: 12px; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0; transition: padding .35s, background .35s, box-shadow .35s, backdrop-filter .35s;
}
.header.scrolled {
  padding: 11px 0; background: rgba(255,255,255,.9);
  backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--line);
}
.header .wrap { display: flex; align-items: center; gap: 30px; }
.nav-links { display: flex; align-items: center; gap: 30px; margin: 0 auto 0 14px; }
.nav-links a { font-size: 15px; font-weight: 600; color: var(--ink-2); transition: color .2s; }
.nav-links a:hover { color: var(--ink); }
.nav-right { display: flex; align-items: center; gap: 14px; }

.logo {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 800; font-size: 22px; letter-spacing: -0.03em; color: var(--ink);
}
.logo img { height: 36px; width: auto; display: block; }
.header.scrolled .logo img { height: 32px; transition: height .35s; }
.footer-logo img { height: 40px; }
.logo .mark {
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--ink); display: flex; align-items: center; justify-content: center; flex: none;
}
.logo .mark span {
  display: block; width: 13px; height: 13px; border-radius: 3px;
  background: var(--amber); transform: rotate(45deg);
  position: relative;
}
.logo .mark span::after {
  content: ""; position: absolute; inset: 4px; border-radius: 1px; background: var(--ink);
}
.logo b { font-weight: 800; }
.logo .rk { color: var(--teal-deep); }

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 6px 0; transition: .3s; border-radius: 2px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 150px 0 80px;
  background:
    radial-gradient(60% 50% at 80% 0%, var(--teal-tint), transparent 70%),
    radial-gradient(50% 40% at 0% 30%, var(--amber-tint), transparent 70%),
    var(--white);
  text-align: center;
}
.hero .badge { margin-bottom: 26px; }
.hero h1 {
  font-size: clamp(40px, 6.4vw, 76px);
  max-width: 16ch; margin: 0 auto;
}
.hero h1 .hl { color: var(--amber); }
.hero h1 .hl-t { color: var(--teal-deep); }
.hero-sub {
  font-size: clamp(17px, 1.9vw, 21px); color: var(--ink-2);
  max-width: 60ch; margin: 26px auto 36px; font-weight: 500;
}
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-note { margin-top: 20px; font-size: 14px; color: var(--ink-3); font-weight: 600; }
.hero-note b { color: var(--teal-deep); }

/* Mockup */
.mockup-wrap { margin-top: 60px; position: relative; }
.mockup-glow {
  position: absolute; inset: 10% 20% -10%; z-index: 0;
  background: radial-gradient(50% 50% at 50% 50%, rgba(44,189,194,.25), transparent 70%);
  filter: blur(30px);
}
.mockup {
  position: relative; z-index: 1;
  max-width: 1000px; margin: 0 auto;
  border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--line); background: var(--white);
  box-shadow: var(--shadow-lg);
}
.mockup-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 18px; border-bottom: 1px solid var(--line); background: var(--bg-soft);
}
.mockup-bar i { width: 11px; height: 11px; border-radius: 50%; background: #dfe6e6; display: block; }
.mockup-bar i:nth-child(1) { background: #ffbcb6; }
.mockup-bar i:nth-child(2) { background: #ffe1a6; }
.mockup-bar i:nth-child(3) { background: #b9e7c9; }
.mockup-bar .url {
  margin-left: 14px; font-size: 12.5px; color: var(--ink-3); font-weight: 600;
  background: var(--white); border: 1px solid var(--line); border-radius: 7px; padding: 5px 14px;
}
.mockup-body {
  aspect-ratio: 16/8.4;
  background-color: var(--bg-soft);
  background-image: repeating-linear-gradient(135deg, transparent 0 18px, rgba(18,32,35,.025) 18px 19px);
  display: flex; align-items: center; justify-content: center; position: relative;
}
.ph-label {
  font-family: ui-monospace, 'SF Mono', monospace; font-size: 12.5px; color: var(--ink-3);
  background: var(--white); border: 1px solid var(--line); padding: 8px 14px; border-radius: 8px;
}

/* ============================================================
   LOGO CLOUD
   ============================================================ */
.logos { padding: 56px 0 60px; border-bottom: 1px solid var(--line); }
.logos .lead { text-align: center; font-size: 14.5px; font-weight: 700; color: var(--ink-3); margin-bottom: 30px; }
.logo-marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.logo-track { display: inline-flex; align-items: center; gap: 56px; animation: slide 28s linear infinite; white-space: nowrap; }
.logo-chip {
  display: inline-flex; align-items: center; gap: 10px; flex: none;
  color: var(--ink-3); font-weight: 800; font-size: 19px; letter-spacing: -.02em; opacity: .75;
}
.logo-chip .d { width: 16px; height: 16px; border-radius: 5px; background: currentColor; opacity: .5; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 100px 0; }
.section.soft { background: var(--bg-soft); }
.section.mint { background: var(--bg-mint); }
.sec-head { max-width: 720px; }
.sec-head.center { margin: 0 auto; text-align: center; }
.sec-head h2 { font-size: clamp(30px, 4.2vw, 50px); }
.sec-head h2 .hl { color: var(--amber); }
.sec-head p { margin-top: 18px; font-size: 18px; color: var(--ink-2); font-weight: 500; }
.sec-head.center p { margin-left: auto; margin-right: auto; max-width: 58ch; }

/* ---------- Steps (como funciona) ---------- */
.steps-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center; margin-top: 56px; }
.steps-visual {
  border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line);
  background: var(--white); box-shadow: var(--shadow-md);
}
.steps-visual .mockup-body { aspect-ratio: 4/4.3; }
.step { display: flex; gap: 20px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.step:last-child { border-bottom: none; }
.step .n {
  width: 44px; height: 44px; border-radius: 12px; flex: none;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 17px; background: var(--amber-tint); color: var(--amber-dark);
}
.step:nth-child(2) .n { background: var(--teal-tint); color: var(--teal-deep); }
.step:nth-child(3) .n { background: var(--coral-tint); color: var(--coral); }
.step h3 { font-size: 21px; margin-bottom: 6px; }
.step p { color: var(--ink-2); font-size: 15.5px; }

/* ---------- Feature cards ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 56px; }
.feature-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 32px 28px; transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature-ico {
  width: 52px; height: 52px; border-radius: 13px; display: flex; align-items: center; justify-content: center;
  background: var(--ink); margin-bottom: 22px;
}
.feature-ico svg { width: 25px; height: 25px; color: var(--amber); }
.feature-card:nth-child(3n+2) .feature-ico svg { color: var(--teal); }
.feature-card:nth-child(3n) .feature-ico svg { color: var(--coral); }
.feature-card h3 { font-size: 20px; margin-bottom: 10px; }
.feature-card p { color: var(--ink-2); font-size: 15px; }

.extra-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 30px; }
.extra-chip {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--white); border: 1px solid var(--line); border-radius: 100px;
  padding: 11px 20px; font-weight: 600; font-size: 14.5px; color: var(--ink-2);
}
.extra-chip svg { width: 16px; height: 16px; color: var(--teal-deep); }

/* ---------- Segments ---------- */
.seg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; }
.seg-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 28px; transition: transform .3s var(--ease), box-shadow .3s; cursor: default;
}
.seg-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.seg-card .si {
  width: 46px; height: 46px; border-radius: 12px; background: var(--teal-tint);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.seg-card .si svg { width: 23px; height: 23px; color: var(--teal-deep); }
.seg-card h3 { font-size: 18px; margin-bottom: 8px; }
.seg-card p { font-size: 14.5px; color: var(--ink-2); }

/* ---------- Results band ---------- */
.results-band {
  background: var(--night); color: var(--white);
  border-radius: 28px; padding: 64px 50px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
  position: relative; overflow: hidden;
}
.results-band::before {
  content: ""; position: absolute; right: -60px; top: -60px; width: 280px; height: 280px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(247,166,27,.25), transparent 70%);
}
.rb-item { position: relative; z-index: 1; }
.rb-item .num { font-size: clamp(38px, 4.6vw, 54px); font-weight: 800; line-height: 1; letter-spacing: -.03em; }
.rb-item .num .u { color: var(--amber); }
.rb-item:nth-child(2) .num .u, .rb-item:nth-child(4) .num .u { color: var(--teal); }
.rb-item .lbl { margin-top: 12px; font-size: 14.5px; color: rgba(255,255,255,.7); font-weight: 500; }
.rb-item .lbl b { color: var(--white); display: block; font-weight: 700; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
.testi-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 30px; display: flex; flex-direction: column; gap: 18px;
}
.testi-card .stars { display: flex; gap: 3px; color: var(--amber); }
.testi-card .stars svg { width: 17px; height: 17px; }
.testi-card .quote { font-size: 16px; color: var(--ink); font-weight: 500; line-height: 1.55; flex: 1; }
.testi-card .who { display: flex; align-items: center; gap: 13px; }
.testi-card .who .av {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  background: var(--bg-mint) repeating-linear-gradient(135deg, transparent 0 6px, rgba(18,32,35,.05) 6px 7px);
  border: 1px solid var(--line); display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: var(--teal-deep); font-size: 16px;
}
.testi-card .who .nm { font-weight: 700; font-size: 15px; }
.testi-card .who .rl { font-size: 13px; color: var(--ink-3); }

/* ---------- About / team ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-copy h2 { font-size: clamp(28px, 3.8vw, 46px); margin-bottom: 20px; max-width: 14ch; }
.about-copy p { color: var(--ink-2); font-size: 17px; margin-bottom: 16px; font-weight: 500; max-width: 50ch; }
.about-copy p strong { color: var(--ink); }
.about-visual { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-md); }
.about-visual .mockup-body { aspect-ratio: 4/3.4; }

/* ---------- CTA band ---------- */
.cta {
  background: linear-gradient(135deg, var(--night), var(--night-2));
  color: var(--white); border-radius: 28px; padding: 80px 50px; text-align: center;
  position: relative; overflow: hidden;
}
.cta::before, .cta::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(60px);
}
.cta::before { width: 360px; height: 360px; background: rgba(247,166,27,.22); top: -120px; left: -80px; }
.cta::after { width: 360px; height: 360px; background: rgba(44,189,194,.22); bottom: -140px; right: -60px; }
.cta-inner { position: relative; z-index: 1; }
.cta h2 { font-size: clamp(32px, 5vw, 58px); }
.cta h2 .hl { color: var(--amber); }
.cta p { max-width: 50ch; margin: 22px auto 34px; color: rgba(255,255,255,.78); font-size: 18px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: start; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 4px; font-family: inherit; font-size: 18px; font-weight: 700; color: var(--ink);
}
.faq-q .ic {
  width: 30px; height: 30px; border-radius: 50%; flex: none; border: 1.5px solid var(--line);
  display: flex; align-items: center; justify-content: center; transition: .3s; position: relative;
}
.faq-q .ic::before, .faq-q .ic::after { content: ""; position: absolute; background: var(--ink); border-radius: 2px; transition: .3s; }
.faq-q .ic::before { width: 12px; height: 2px; }
.faq-q .ic::after { width: 2px; height: 12px; }
.faq-item.open .faq-q .ic { background: var(--amber); border-color: var(--amber); }
.faq-item.open .faq-q .ic::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a p { padding: 0 4px 26px; color: var(--ink-2); font-size: 16px; font-weight: 500; max-width: 60ch; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--night); color: rgba(255,255,255,.62); padding: 72px 0 36px; }
.footer .logo { color: var(--white); }
.footer .logo .rk { color: var(--teal); }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-top p { margin-top: 16px; font-size: 15px; max-width: 30ch; }
.footer-col h4 { color: var(--white); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col a { display: block; margin-bottom: 12px; font-size: 15px; transition: color .2s; }
.footer-col a:hover { color: var(--amber); }
.socials { display: flex; gap: 10px; margin-top: 22px; }
.socials a {
  width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); transition: .3s;
}
.socials a:hover { background: var(--amber); border-color: var(--amber); color: var(--ink); transform: translateY(-2px); }
.socials svg { width: 18px; height: 18px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; font-size: 13.5px; flex-wrap: wrap; gap: 10px; }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 90;
  display: inline-flex; align-items: center; gap: 10px;
  background: #1aab53; color: #fff; padding: 13px 19px 13px 15px; border-radius: 100px;
  font-weight: 700; font-size: 14.5px; box-shadow: 0 14px 30px -10px rgba(26,171,83,.6);
  transition: transform .3s var(--ease);
}
.wa-float:hover { transform: translateY(-2px) scale(1.02); }
.wa-float svg { width: 21px; height: 21px; }

/* ---------- Simulated dashboard ---------- */
.mockup-body:has(.dash), .steps-visual .mockup-body:has(.dash) { display: block; }
.dash {
  width: 100%; height: 100%; padding: 18px 20px; text-align: left;
  display: flex; flex-direction: column; gap: 14px; background: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif; overflow: hidden;
}
.dash-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.dash-title { display: flex; align-items: center; gap: 11px; min-width: 0; }
.dash-ava { width: 34px; height: 34px; border-radius: 9px; background: var(--ink); color: var(--amber); display: flex; align-items: center; justify-content: center; flex: none; }
.dash-ava svg { width: 18px; height: 18px; }
.dash-h { font-weight: 800; font-size: 14.5px; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dash-sub { font-size: 12px; color: var(--ink-3); font-weight: 600; }
.redact { filter: blur(5px); user-select: none; color: var(--ink-2); }
.dash-live { display: inline-flex; align-items: center; gap: 7px; flex: none; font-size: 11.5px; font-weight: 700; color: var(--teal-deep); background: var(--teal-tint); padding: 5px 11px; border-radius: 100px; }
.dash-live i { width: 7px; height: 7px; border-radius: 50%; background: #1aab53; box-shadow: 0 0 0 0 rgba(26,171,83,.5); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(26,171,83,.45); } 50% { box-shadow: 0 0 0 5px rgba(26,171,83,0); } }

.dash-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.kpi { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; }
.kpi.hl { background: var(--ink); border-color: var(--ink); }
.kpi-l { font-size: 11.5px; font-weight: 600; color: var(--ink-3); }
.kpi.hl .kpi-l { color: rgba(255,255,255,.65); }
.kpi-v { font-size: 21px; font-weight: 800; letter-spacing: -.02em; color: var(--ink); margin: 3px 0; }
.kpi.hl .kpi-v { color: var(--amber); }
.kpi-d { font-size: 11.5px; font-weight: 700; }
.kpi-d.up { color: #1a9c54; } .kpi-d.down { color: #1a9c54; } .kpi-d.neutral { color: var(--ink-3); }
.kpi.hl .kpi-d.up { color: var(--teal); }

.dash-main { display: grid; grid-template-columns: 1.7fr 1fr; gap: 14px; flex: 1; min-height: 0; }
.dash-chart { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; display: flex; flex-direction: column; }
.dash-chart-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 10px; }
.dash-chart-head .cl { font-size: 12.5px; font-weight: 700; color: var(--ink); }
.dash-chart-head .cl-tot { font-size: 12px; font-weight: 800; color: var(--amber-dark); }
.area { width: 100%; flex: 1; min-height: 90px; }
.dash-side { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; }
.ds-h { font-size: 12.5px; font-weight: 700; color: var(--ink); margin-bottom: 14px; }
.ds-row { display: flex; align-items: center; justify-content: space-between; font-size: 12px; font-weight: 600; color: var(--ink-2); margin-bottom: 5px; }
.ds-row b { color: var(--ink); font-weight: 800; }
.ds-bar { height: 7px; background: var(--line); border-radius: 100px; overflow: hidden; margin-bottom: 13px; }
.ds-bar i { display: block; height: 100%; border-radius: 100px; }

/* ---------- Funnel dashboard ---------- */
.funnel-dash .funnel { display: flex; flex-direction: column; gap: 14px; flex: 1; justify-content: center; }
.fn-stage { }
.fn-info { display: flex; align-items: baseline; gap: 10px; margin-bottom: 7px; }
.fn-info span { font-size: 13px; font-weight: 700; color: var(--ink); }
.fn-info b { font-size: 15px; font-weight: 800; color: var(--ink); margin-left: auto; }
.fn-info em { font-style: normal; font-size: 11.5px; font-weight: 700; color: var(--teal-deep); background: var(--teal-tint); padding: 2px 8px; border-radius: 100px; }
.fn-bar { height: 16px; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 7px; overflow: hidden; }
.fn-bar i { display: block; height: 100%; background: linear-gradient(90deg, var(--amber), var(--teal)); border-radius: 6px; }
.fn-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--line); }
.fn-foot-l { display: block; font-size: 11.5px; font-weight: 600; color: var(--ink-3); }
.fn-foot-v { font-size: 19px; font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
.fn-roas { font-size: 13px; font-weight: 800; color: var(--ink); background: var(--amber); padding: 7px 14px; border-radius: 100px; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .steps-grid, .about-grid, .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .feature-grid, .seg-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .results-band { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; padding: 48px 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 620px) {
  .hamburger { display: block; }
  .header .wrap { justify-content: space-between; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 20px;
    position: absolute; top: 100%; left: 0; right: 0; background: var(--white);
    padding: 26px 28px; border-top: 1px solid var(--line); box-shadow: var(--shadow-md); margin: 0;
  }
  .header .nav-right .btn-primary { display: none; }
  .wrap { padding: 0 20px; }
  .section, .hero { padding: 72px 0; }
  .hero { padding-top: 120px; }
  .feature-grid, .seg-grid, .testi-grid, .results-band { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .results-band, .cta { padding: 44px 26px; border-radius: 22px; }
  .mockup-body { aspect-ratio: 16/13; }
  .dash { padding: 14px; gap: 11px; }
  .dash-kpis { grid-template-columns: repeat(2, 1fr); }
  .dash-main { grid-template-columns: 1fr; }
  .dash-side { display: none; }
  .kpi-v { font-size: 18px; }
}
