:root {
  --ink: #0f172a;
  --body: #475569;
  --muted: #64748b;
  --line: #e2e8f0;
  --bg: #ffffff;
  --bg-soft: #f6f8fb;
  --brand: #4f46e5;
  --brand-dark: #4338ca;
  --brand-soft: #eef2ff;
  --accent: #10b981;
  --accent-soft: #ecfdf5;
  --warn: #f59e0b;
  --dark-1: #0b1220;
  --dark-2: #101b33;
  --radius: 14px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06);
  --shadow-md: 0 10px 30px -12px rgba(15, 23, 42, .18);
  --shadow-lg: 0 24px 60px -20px rgba(2, 6, 23, .45);
  --font: "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--brand); text-decoration: none; }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.2; font-weight: 700; }
.container { width: min(1120px, 92%); margin-inline: auto; }
section { padding: 78px 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 24px; border-radius: 11px;
  font-weight: 600; font-size: 15.5px; cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 8px 20px -8px rgba(79, 70, 229, .55); }
.btn-primary:hover { background: var(--brand-dark); color: #fff; }
.btn-ghost { border-color: var(--line); color: var(--ink); background: #fff; }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: #f1f5f9; }
.btn-outline-light { border-color: rgba(255,255,255,.35); color: #fff; background: transparent; }
.btn-outline-light:hover { border-color: #fff; color: #fff; }
.btn-lg { padding: 15px 30px; font-size: 16.5px; }
.btn-sm { padding: 9px 16px; font-size: 14px; border-radius: 9px; }
.btn-wa { background: #22c55e; color: #fff; box-shadow: 0 8px 20px -8px rgba(34,197,94,.55); }
.btn-wa:hover { background: #16a34a; color: #fff; }

.btn-primary, .btn-wa { position: relative; overflow: hidden; }
.btn-primary::before, .btn-wa::before {
  content: ""; position: absolute; top: 0; left: -60%; width: 40%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-20deg);
  transition: left .55s ease;
}
.btn-primary:hover::before, .btn-wa:hover::before { left: 130%; }

/* ---------- Navbar ---------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 20px; }
.logo { display: flex; align-items: center; gap: 10px; font-size: 21px; font-weight: 800; color: var(--ink); letter-spacing: -.3px; }
.logo-mark {
  height: 38px; width: auto; flex: none;
}
.logo span b { color: var(--brand); }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { color: #334155; font-weight: 500; font-size: 15.5px; position: relative; padding-bottom: 4px; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--brand); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.nav-links a:hover { color: var(--brand); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--brand); font-weight: 700; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 6px; color: var(--ink); }

/* ---------- Hero (home) ---------- */
.hero {
  background:
    radial-gradient(900px 420px at 85% -10%, rgba(79, 70, 229, .35), transparent 60%),
    radial-gradient(700px 380px at 0% 110%, rgba(16, 185, 129, .18), transparent 60%),
    linear-gradient(160deg, var(--dark-1), var(--dark-2));
  color: #cbd5e1;
  padding: 92px 0 96px;
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  color: #a5b4fc; padding: 7px 14px; border-radius: 999px;
  font-size: 13.5px; font-weight: 600; letter-spacing: .3px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.hero h1 { color: #fff; font-size: clamp(34px, 4.6vw, 54px); letter-spacing: -1.2px; margin: 20px 0 18px; }
.hero h1 em { font-style: normal; color: #a5b4fc; }
.hero p.lead { font-size: 18.5px; max-width: 34em; color: #94a3b8; }
.hero-actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hero-ticks { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 30px; font-size: 14.5px; color: #94a3b8; }
.hero-ticks span { display: inline-flex; align-items: center; gap: 7px; }
.hero-ticks svg { color: var(--accent); }

/* ---------- App mockup ---------- */
.mock { background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); font-size: 12.5px; }
.mock-bar { display: flex; align-items: center; gap: 6px; padding: 11px 14px; background: var(--bg-soft); border-bottom: 1px solid var(--line); }
.mock-bar i { width: 10px; height: 10px; border-radius: 50%; display: block; }
.mock-bar i:nth-child(1){ background:#f87171 } .mock-bar i:nth-child(2){ background:#fbbf24 } .mock-bar i:nth-child(3){ background:#34d399 }
.mock-bar em { font-style: normal; margin-left: 10px; color: var(--muted); font-size: 11.5px; }
.mock-body { display: grid; grid-template-columns: 132px 1fr; }
.mock-side { background: var(--bg-soft); border-right: 1px solid var(--line); padding: 14px 10px; }
.mock-side b { display: block; color: var(--ink); font-size: 12px; margin: 0 6px 10px; }
.mock-side a { display: block; color: var(--muted); padding: 7px 9px; border-radius: 7px; font-size: 11.8px; }
.mock-side a.on { background: var(--brand-soft); color: var(--brand); font-weight: 600; }
.mock-main { padding: 16px; background: #fff; }
.mock-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.mstat { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 10px; padding: 11px 12px; animation: fadeUp .5s ease both; }
.mstat small { color: var(--muted); display: block; font-size: 10.5px; letter-spacing: .3px; text-transform: uppercase; }
.mstat b { color: var(--ink); font-size: 15px; letter-spacing: -.3px; white-space: nowrap; }
.mstat b.up { color: #059669; }
.mock-stats .mstat:nth-child(1) { animation-delay: .9s; }
.mock-stats .mstat:nth-child(2) { animation-delay: 1s; }
.mock-stats .mstat:nth-child(3) { animation-delay: 1.1s; }
.mock-panels { display: grid; grid-template-columns: 1.2fr 1fr; gap: 10px; margin-top: 10px; }
.mpanel { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 10px; padding: 12px; animation: fadeUp .5s ease both; }
.mock-panels .mpanel:nth-child(1) { animation-delay: 1.2s; }
.mock-panels .mpanel:nth-child(2) { animation-delay: 1.3s; }
.mpanel small { color: var(--muted); font-weight: 600; font-size: 11px; display: block; margin-bottom: 9px; }
.mbar { display: grid; grid-template-columns: 74px 1fr 34px; align-items: center; gap: 8px; margin: 7px 0; color: var(--muted); font-size: 10.8px; }
.mbar i { height: 7px; border-radius: 4px; background: linear-gradient(90deg, #6366f1, #8b5cf6); display: block; }
.mbar em { font-style: normal; text-align: right; color: var(--brand); }
.mrow { display: flex; justify-content: space-between; align-items: center; padding: 6.5px 0; border-bottom: 1px dashed var(--line); color: var(--muted); font-size: 11.3px; }
.mrow:last-child { border: 0; }
.mrow b { color: var(--ink); font-weight: 600; }
.chip { padding: 2.5px 8px; border-radius: 999px; font-size: 10px; font-weight: 700; }
.chip.low { background: #fffbeb; color: #b45309; }
.chip.ok { background: var(--accent-soft); color: #059669; }

/* ---------- Section headings ---------- */
.sec-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.sec-head.left { margin: 0 0 40px; text-align: left; }
.kicker {
  display: inline-block; color: var(--brand); background: var(--brand-soft);
  font-size: 13px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px; margin-bottom: 14px;
}
.sec-head h2 { font-size: clamp(27px, 3.4vw, 38px); letter-spacing: -.8px; margin-bottom: 14px; }
.sec-head p { font-size: 17.5px; }
.soft { background: var(--bg-soft); }

/* ---------- Feature cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #c7d2fe; }
.icon-tile {
  width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center;
  background: var(--brand-soft); color: var(--brand); margin-bottom: 18px;
  transition: transform .35s ease;
}
.icon-tile.green { background: var(--accent-soft); color: var(--accent); }
.icon-tile.amber { background: #fffbeb; color: var(--warn); }
.card:hover .icon-tile { transform: scale(1.1) rotate(-6deg); }
.card h3 { font-size: 19px; margin-bottom: 9px; }
.card p { font-size: 15.5px; }
.card ul { margin: 12px 0 0; padding-left: 0; list-style: none; }
.card ul li { padding: 5px 0 5px 26px; position: relative; font-size: 15px; }
.card ul li::before {
  content: ""; position: absolute; left: 0; top: 11px;
  width: 15px; height: 15px; border-radius: 50%;
  background: var(--accent-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='9' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/9px no-repeat;
}

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px 26px; }
.step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), #7c3aed); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: 18px;
  margin-bottom: 16px; box-shadow: 0 8px 18px -8px rgba(79,70,229,.6);
}
.step h3 { font-size: 18.5px; margin-bottom: 8px; }
.step p { font-size: 15.3px; }

/* ---------- Split (offline section) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.split h2 { font-size: clamp(26px, 3.2vw, 36px); letter-spacing: -.7px; margin-bottom: 16px; }
.split p { margin-bottom: 12px; }
.tick-list { list-style: none; margin-top: 18px; }
.tick-list li { display: flex; gap: 12px; padding: 8px 0; color: var(--ink); font-weight: 500; }
.tick-list svg { flex: none; margin-top: 4px; color: var(--accent); }

.offline-art {
  background: linear-gradient(160deg, var(--dark-1), var(--dark-2));
  border-radius: 18px; padding: 34px; color: #cbd5e1;
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.offline-art::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(420px 260px at 90% 0%, rgba(16,185,129,.22), transparent 60%);
}
.sync-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; position: relative; z-index: 1; }
.sync-node { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 13px; padding: 16px 14px; text-align: center; flex: 1; }
.sync-node b { display: block; color: #fff; font-size: 14px; margin-top: 8px; }
.sync-node small { color: #94a3b8; font-size: 11.5px; }
.sync-node svg { margin: 0 auto; color: #a5b4fc; }
.sync-link { flex: none; color: var(--accent); display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 10.5px; font-weight: 700; letter-spacing: 1px; }
.sync-dots { display: flex; gap: 5px; }
.sync-dots i { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); opacity: .3; animation: pulse 1.4s infinite; }
.sync-dots i:nth-child(2) { animation-delay: .2s; } .sync-dots i:nth-child(3) { animation-delay: .4s; }
@keyframes pulse { 50% { opacity: 1; } }
.offline-note { position: relative; z-index: 1; margin-top: 20px; background: rgba(16,185,129,.1); border: 1px solid rgba(16,185,129,.25); color: #6ee7b7; border-radius: 11px; padding: 12px 16px; font-size: 13.5px; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(700px 300px at 15% 0%, rgba(124, 58, 237, .4), transparent 60%),
    linear-gradient(140deg, var(--brand-dark), #1e1b4b);
  border-radius: 22px; color: #e0e7ff;
  padding: 58px 48px; text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: #fff; font-size: clamp(26px, 3.4vw, 38px); letter-spacing: -.8px; margin-bottom: 14px; }
.cta-band p { max-width: 36em; margin: 0 auto 28px; font-size: 17px; color: #c7d2fe; }
.cta-band .btn-primary { background: #fff; color: var(--brand-dark); box-shadow: none; }
.cta-band .btn-primary:hover { background: #eef2ff; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background:
    radial-gradient(800px 300px at 80% -20%, rgba(79, 70, 229, .35), transparent 60%),
    linear-gradient(160deg, var(--dark-1), var(--dark-2));
  color: #94a3b8; text-align: center; padding: 72px 0;
}
.page-hero h1 { color: #fff; font-size: clamp(30px, 4vw, 44px); letter-spacing: -1px; margin: 16px 0 12px; }
.page-hero p { max-width: 40em; margin-inline: auto; font-size: 17.5px; }

/* ---------- Pricing ---------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.plan {
  background: #fff; border: 1.5px solid var(--line); border-radius: 18px;
  padding: 34px 30px; display: flex; flex-direction: column; position: relative;
  transition: transform .18s, box-shadow .18s;
}
.plan:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.plan.popular { border-color: var(--brand); box-shadow: 0 18px 44px -16px rgba(79, 70, 229, .35); }
.plan-flag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--brand), #7c3aed); color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 999px; white-space: nowrap;
}
.plan h3 { font-size: 21px; }
.plan .for { font-size: 14.5px; color: var(--muted); margin: 5px 0 20px; }
.price { display: flex; align-items: baseline; gap: 7px; margin-bottom: 4px; }
.price b { font-size: 40px; color: var(--ink); letter-spacing: -1.5px; }
.price small { color: var(--muted); font-size: 14.5px; }
.price-note { font-size: 13px; color: var(--muted); margin-bottom: 22px; }
.plan ul { list-style: none; margin: 0 0 28px; flex: 1; }
.plan ul li { padding: 7.5px 0 7.5px 30px; position: relative; font-size: 15.3px; border-bottom: 1px dashed #eef2f7; }
.plan ul li:last-child { border: 0; }
.plan ul li::before {
  content: ""; position: absolute; left: 0; top: 12px; width: 18px; height: 18px; border-radius: 50%;
  background: var(--accent-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/10px no-repeat;
}
.plan ul li.dim { color: #94a3b8; }
.plan ul li.dim::before {
  background: #f1f5f9 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='4' stroke-linecap='round'%3E%3Cpath d='M18 6L6 18M6 6l12 12'/%3E%3C/svg%3E") center/10px no-repeat;
}
.plan .btn { justify-content: center; }
.pricing-note {
  margin-top: 34px; text-align: center; font-size: 14.5px; color: var(--muted);
  background: #fffbeb; border: 1px solid #fde68a; border-radius: 12px; padding: 14px 20px;
}

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin-inline: auto; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 13px; padding: 20px 24px; margin-bottom: 14px; }
.faq details[open] { border-color: #c7d2fe; box-shadow: var(--shadow-sm); }
.faq summary { cursor: pointer; font-weight: 650; color: var(--ink); font-size: 16.5px; list-style: none; position: relative; padding-right: 34px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 2px; top: -4px; font-size: 24px; color: var(--brand); font-weight: 400; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin-top: 12px; font-size: 15.5px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 30px; align-items: start; }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; display: flex; gap: 16px; margin-bottom: 16px; box-shadow: var(--shadow-sm); }
.contact-card .icon-tile { margin: 0; flex: none; }
.contact-card b { display: block; color: var(--ink); font-size: 16px; }
.contact-card span { font-size: 15px; }
.contact-card a { font-weight: 600; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 34px; box-shadow: var(--shadow-md); }
.form-card h3 { font-size: 21px; margin-bottom: 6px; }
.form-card > p { font-size: 15px; margin-bottom: 22px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.f-group { margin-bottom: 16px; }
.f-group label { display: block; font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.f-group input, .f-group select, .f-group textarea {
  width: 100%; padding: 12.5px 14px; border: 1.5px solid var(--line); border-radius: 10px;
  font-family: inherit; font-size: 15.5px; color: var(--ink); background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
.f-group input:focus, .f-group select:focus, .f-group textarea:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(79, 70, 229, .12);
}
.f-group textarea { resize: vertical; min-height: 110px; }
.form-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 6px; }
.form-hint { font-size: 13px; color: var(--muted); margin-top: 14px; }

/* ---------- Footer ---------- */
footer { background: var(--dark-1); color: #94a3b8; padding: 60px 0 0; font-size: 15px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 44px; }
.foot-grid .logo { color: #fff; margin-bottom: 14px; }
.foot-grid h4 { color: #fff; font-size: 15px; letter-spacing: .5px; text-transform: uppercase; margin-bottom: 16px; }
.foot-grid ul { list-style: none; }
.foot-grid ul li { margin-bottom: 10px; }
.foot-grid a { color: #94a3b8; }
.foot-grid a:hover { color: #c7d2fe; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 13.5px; color: #64748b; }

/* ---------- Reveal + entrance animations ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.grid-3 > .reveal:nth-child(1) { transition-delay: 0s; }
.grid-3 > .reveal:nth-child(2) { transition-delay: .08s; }
.grid-3 > .reveal:nth-child(3) { transition-delay: .16s; }
.grid-3 > .reveal:nth-child(4) { transition-delay: .24s; }
.grid-3 > .reveal:nth-child(5) { transition-delay: .32s; }
.grid-3 > .reveal:nth-child(6) { transition-delay: .4s; }
.steps > .reveal:nth-child(1) { transition-delay: 0s; }
.steps > .reveal:nth-child(2) { transition-delay: .12s; }
.steps > .reveal:nth-child(3) { transition-delay: .24s; }
.plans > .reveal:nth-child(1) { transition-delay: 0s; }
.plans > .reveal:nth-child(2) { transition-delay: .1s; }
.plans > .reveal:nth-child(3) { transition-delay: .2s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.hero-grid > div:first-child > * { opacity: 0; animation: fadeUp .7s ease forwards; }
.hero .eyebrow    { animation-delay: .05s; }
.hero h1          { animation-delay: .15s; }
.hero p.lead      { animation-delay: .25s; }
.hero .hero-actions { animation-delay: .35s; }
.hero .hero-ticks   { animation-delay: .45s; }
.mock {
  opacity: 0;
  animation: fadeIn .8s ease .3s forwards, float 5s ease-in-out 1.1s infinite;
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-grid > div:first-child > *, .mock, .mstat, .mpanel { animation: none; opacity: 1; transform: none; }
  .btn-primary::before, .btn-wa::before { display: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .grid-3, .steps, .plans { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .plan.popular { transform: none; }
  .hero { padding: 70px 0; }
}
@media (max-width: 700px) {
  .grid-3, .grid-2, .steps, .plans, .f-row { grid-template-columns: 1fr; }
  .nav-links {
    position: absolute; top: 70px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: flex-start; gap: 0;
    padding: 10px 4%; display: none; box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 13px 6px; font-size: 16px; }
  .nav-toggle { display: block; }
  .nav-cta .btn-ghost { display: none; }
  section { padding: 58px 0; }
  .cta-band { padding: 44px 26px; }
  .mock-body { grid-template-columns: 1fr; }
  .mock-side { display: none; }
  .foot-grid { grid-template-columns: 1fr; gap: 26px; }
}
