/* ─────────────────────────────────────────────────────────────────────
   Agiliza Sistemas — Landing Page (hi-fi)
   Design tokens, components and responsive layout.
   Mobile-first. Modern SaaS aesthetic. WhatsApp-green primary.
   ───────────────────────────────────────────────────────────────────── */

/* ─── Tokens ──────────────────────────────────────────────────────── */
:root {
  /* Brand */
  --green-50:  #ECFDF3;
  --green-100: #D1FADF;
  --green-200: #A6F4C5;
  --green-300: #6CE9A6;
  --green-400: #32D583;
  --green-500: #25D366;   /* WhatsApp green — primary brand */
  --green-600: #16A34A;
  --green-700: #0F8F4A;
  --green-800: #0B7A3E;

  /* Ink (text) */
  --ink-0:   #0B1220;
  --ink-1:   #111827;
  --ink-2:   #1F2937;
  --ink-3:   #374151;
  --ink-4:   #4B5563;
  --muted:   #6B7280;
  --muted-2: #9CA3AF;

  /* Surfaces */
  --bg:        #FFFFFF;
  --bg-soft:   #F7FAF9;
  --bg-soft-2: #F1F5F4;
  --bg-dark:   #0B1220;
  --bg-dark-2: #111827;

  /* Lines */
  --line:      #E5E7EB;
  --line-soft: #F1F1F1;
  --line-dark: rgba(255,255,255,.08);

  /* Status */
  --danger:    #DC2626;
  --danger-bg: #FEF2F2;
  --warn:      #D97706;
  --warn-bg:   #FEF3C7;
  --ok:        var(--green-600);
  --ok-bg:     var(--green-50);

  /* Accents */
  --blue:      #2563EB;
  --blue-soft: #EFF6FF;

  /* Type */
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  /* Radii */
  --r-xs: 6px;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 22px;
  --r-2xl: 28px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-xs:  0 1px 2px rgba(11, 18, 32, 0.06);
  --shadow-sm:  0 1px 3px rgba(11, 18, 32, 0.06), 0 1px 2px rgba(11, 18, 32, 0.04);
  --shadow-md:  0 4px 14px -2px rgba(11, 18, 32, 0.08), 0 2px 6px -2px rgba(11, 18, 32, 0.04);
  --shadow-lg:  0 18px 40px -16px rgba(11, 18, 32, 0.16), 0 8px 20px -10px rgba(11, 18, 32, 0.08);
  --shadow-xl:  0 30px 60px -20px rgba(11, 18, 32, 0.18), 0 14px 30px -16px rgba(11, 18, 32, 0.10);
  --shadow-green: 0 18px 40px -16px rgba(37, 211, 102, 0.45), 0 8px 20px -10px rgba(37, 211, 102, 0.25);

  /* Container */
  --wrap-w: 1200px;
  --wrap-px: clamp(20px, 4vw, 48px);

  /* Easing */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ─── Reset / base ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
body {
  margin: 0; background: var(--bg); color: var(--ink-1);
  font-family: var(--font-body);
  font-size: 16px; line-height: 1.55;
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'ss01';
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2.5px solid var(--green-500); outline-offset: 2px; border-radius: 4px; }

.skip {
  position: absolute; top: -100px; left: 16px;
  background: var(--ink-0); color: #fff; padding: 10px 16px; border-radius: 8px;
  font-size: 14px; z-index: 100; transition: top 0.2s;
}
.skip:focus { top: 16px; }

/* ─── Container ───────────────────────────────────────────────────── */
.wrap { max-width: var(--wrap-w); margin: 0 auto; padding-inline: var(--wrap-px); }

/* ─── Typography scale ───────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 { margin: 0; font-family: var(--font-display); color: var(--ink-0); font-weight: 700; letter-spacing: -0.025em; }
.h-display { font-size: clamp(36px, 5.6vw, 64px); line-height: 1.05; letter-spacing: -0.035em; font-weight: 800; text-wrap: balance; }
.h-1 { font-size: clamp(30px, 4.2vw, 48px); line-height: 1.08; letter-spacing: -0.028em; }
.h-2 { font-size: clamp(24px, 3vw, 36px); line-height: 1.15; }
.h-3 { font-size: clamp(20px, 2.2vw, 24px); line-height: 1.25; }
.lead { font-size: clamp(16px, 1.4vw, 19px); color: var(--ink-3); line-height: 1.55; }
.text-muted { color: var(--muted); }
.text-green { color: var(--green-600); }
mark.hi {
  background: linear-gradient(180deg, transparent 60%, rgba(37, 211, 102, 0.28) 60%);
  color: inherit; padding: 0 2px; font-weight: inherit;
}
.underline-green {
  position: relative; white-space: nowrap;
}
.underline-green::after {
  content: ''; position: absolute; left: -2px; right: -2px; bottom: 0.04em; height: 0.18em;
  background: var(--green-500); border-radius: 4px; z-index: -1; opacity: 0.45;
}

/* ─── Eyebrow ─────────────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--green-700);
}
.eyebrow::before {
  content: ''; width: 26px; height: 2px; background: currentColor; border-radius: 2px;
}
.eyebrow.center { justify-content: center; }
.on-dark .eyebrow { color: var(--green-400); }
.on-accent .eyebrow { color: rgba(255,255,255,0.92); }
.on-accent .eyebrow::before { background: rgba(255,255,255,0.92); }

/* ─── Buttons ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px; border-radius: var(--r-md);
  font-weight: 700; font-size: 14.5px; letter-spacing: -0.005em;
  border: 1.5px solid transparent; background: transparent; color: inherit;
  transition: transform 0.15s var(--ease-out), background 0.15s, box-shadow 0.2s, color 0.15s, border-color 0.15s;
  white-space: nowrap; line-height: 1.2; text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-sm { padding: 9px 14px; font-size: 13px; border-radius: var(--r-sm); }
.btn-lg { padding: 16px 26px; font-size: 15.5px; border-radius: var(--r-md); }
.btn-xl { padding: 19px 32px; font-size: 16px; border-radius: var(--r-md); }

.btn-primary {
  background: var(--green-500); color: #FFFFFF;
  box-shadow: 0 1px 2px rgba(11, 18, 32, 0.1), 0 6px 18px -6px rgba(37, 211, 102, 0.55);
}
.btn-primary:hover { background: var(--green-600); box-shadow: 0 1px 2px rgba(11, 18, 32, 0.1), 0 10px 26px -6px rgba(37, 211, 102, 0.6); }
.btn-ghost { border-color: var(--ink-2); color: var(--ink-1); }
.btn-ghost:hover { background: var(--ink-1); color: #fff; border-color: var(--ink-1); }
.btn-outline { border-color: var(--line); color: var(--ink-2); background: #fff; }
.btn-outline:hover { border-color: var(--ink-2); }
.btn-white { background: #fff; color: var(--ink-0); }
.btn-white:hover { background: var(--bg-soft); }
.btn-light-ghost { color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-light-ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn-wa { background: var(--green-500); color: #fff; }
.btn-wa:hover { background: var(--green-600); }

.btn .arr {
  display: inline-block; transition: transform 0.2s var(--ease-out);
}
.btn:hover .arr { transform: translateX(3px); }
.btn .ico { width: 18px; height: 18px; flex-shrink: 0; }

/* ─── Section base ────────────────────────────────────────────────── */
section {
  padding-block: clamp(64px, 9vw, 120px);
  position: relative;
}
.on-soft { background: var(--bg-soft); }
.on-soft-2 { background: var(--bg-soft-2); }
.on-dark { background: var(--bg-dark); color: #E5E7EB; }
.on-dark h2, .on-dark h3, .on-dark h4 { color: #fff; }
.on-accent { background: var(--green-600); color: #fff; }
.on-accent h2, .on-accent h3, .on-accent h4 { color: #fff; }
.section-head { max-width: 780px; }
.section-head.center { margin: 0 auto; text-align: center; }
.section-head .lead { margin-top: 18px; }
.section-head h2 { margin-top: 14px; }

/* ─── Hero ────────────────────────────────────────────────────────── */
.hero {
  padding-block: clamp(60px, 8vw, 100px) clamp(60px, 8vw, 110px);
  background:
    radial-gradient(ellipse at top right, rgba(37,211,102,0.10), transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(37,211,102,0.06), transparent 55%),
    var(--bg);
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(11,18,32,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,18,32,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at top, #000 0%, transparent 65%);
  -webkit-mask-image: radial-gradient(ellipse at top, #000 0%, transparent 65%);
  opacity: 0.6;
  pointer-events: none;
}
.hero-grid { display: grid; gap: clamp(40px, 5vw, 64px); position: relative; z-index: 1; }
@media (min-width: 960px) {
  .hero-grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); align-items: center; }
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 5px 14px 5px 5px; border-radius: var(--r-pill);
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-xs);
  font-size: 13px; font-weight: 500; color: var(--ink-2);
}
.hero-pill .tag {
  padding: 3px 9px; border-radius: var(--r-pill);
  background: var(--green-500); color: #fff; font-size: 11px; font-weight: 800;
  letter-spacing: 0.04em;
}
.hero h1 { margin: 22px 0 18px; }
.hero .lead { max-width: 56ch; }
.hero-support {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 18px;
  font-size: 13.5px; color: var(--muted); font-weight: 500;
}
.hero-support .ico { color: var(--green-600); }
.hero-cta { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.hero-trust {
  display: flex; gap: 22px; margin-top: 32px;
  font-size: 13.5px; color: var(--muted-2); align-items: center; flex-wrap: wrap;
}
.hero-trust .stars { color: var(--green-500); letter-spacing: 1px; font-weight: 700; }
.hero-trust b { color: var(--ink-2); font-weight: 700; }
.hero-trust .sep { width: 4px; height: 4px; background: var(--line); border-radius: 50%; }

/* Visual composition: laptop + phone */
.hero-vis {
  position: relative; min-height: 460px;
  display: flex; align-items: center; justify-content: center;
}
@media (min-width: 960px) {
  .hero-vis { min-height: 540px; }
}
.hero-badge {
  position: absolute; padding: 10px 14px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: var(--shadow-md); font-size: 12.5px;
  display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--ink-2);
  animation: float 4s var(--ease-in-out) infinite;
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green-500);
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.15);
}
.hero-badge.b1 { top: 10%; left: -10px; animation-delay: 0s; }
.hero-badge.b2 { top: 50%; right: -10px; animation-delay: 1.5s; }
.hero-badge.b3 { bottom: 6%; left: 8%; animation-delay: 3s; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

/* ─── Laptop mockup ───────────────────────────────────────────────── */
.laptop {
  width: 100%; max-width: 560px; position: relative;
}
.laptop-screen {
  background: linear-gradient(180deg, #1A1F2B, #0F1420);
  border-radius: 16px 16px 4px 4px;
  padding: 12px;
  box-shadow:
    0 0 0 1.5px #2a3142,
    0 0 0 2.5px rgba(255,255,255,0.04) inset,
    var(--shadow-xl);
}
.laptop-base {
  height: 14px; margin: 0 -18px;
  background: linear-gradient(180deg, #C8CCD3 0%, #9CA1AB 100%);
  border-radius: 0 0 14px 14px;
  position: relative;
}
.laptop-base::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 90px; height: 6px; background: #8a8f9a; border-radius: 0 0 8px 8px;
}

/* ─── ERP dashboard mockup ────────────────────────────────────────── */
.erp {
  background: var(--bg);
  border-radius: 7px; overflow: hidden;
  display: grid; grid-template-columns: 64px 1fr;
  font-size: 12px; min-height: 320px;
}
.erp-rail {
  background: #0F1420;
  padding: 14px 0;
  display: flex; flex-direction: column; gap: 4px; align-items: center;
  border-right: 1px solid #1F2937;
}
.erp-rail .logo {
  width: 32px; height: 32px; border-radius: 8px;
  background: linear-gradient(135deg, var(--green-400), var(--green-600));
  display: flex; align-items: center; justify-content: center; color: #fff;
  font-weight: 800; font-size: 13px; margin-bottom: 12px;
}
.erp-rail .ic {
  width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #6B7280; transition: 0.15s;
}
.erp-rail .ic.on { background: rgba(37, 211, 102, 0.16); color: var(--green-400); }
.erp-rail .ic svg { width: 18px; height: 18px; }
.erp-main { padding: 16px 18px; display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.erp-top {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 12px; border-bottom: 1px solid var(--line-soft);
}
.erp-top h4 { font-size: 14px; color: var(--ink-0); margin: 0; font-weight: 700; }
.erp-top .ts { font-size: 10.5px; color: var(--muted-2); display: block; margin-bottom: 2px; font-weight: 500; }
.erp-search {
  display: inline-flex; gap: 8px; align-items: center;
  padding: 6px 12px; border: 1px solid var(--line); border-radius: var(--r-pill);
  font-size: 11px; color: var(--muted);
}
.erp-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 10px; }
.erp-card {
  border: 1px solid var(--line-soft); border-radius: var(--r-sm);
  padding: 12px 14px; background: #fff;
}
.erp-card h5 {
  margin: 0 0 6px; font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted);
}
.erp-stat { font-size: 22px; font-weight: 800; color: var(--ink-0); letter-spacing: -0.02em; line-height: 1; }
.erp-delta {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 700; margin-top: 4px;
  color: var(--green-600);
}
.erp-chart { height: 52px; margin-top: 6px; }
.erp-bars {
  display: flex; gap: 4px; align-items: flex-end; height: 40px; margin-top: 8px;
}
.erp-bars .bar { flex: 1; background: rgba(37,211,102,0.22); border-radius: 3px; }
.erp-bars .bar.hi { background: var(--green-500); }
.erp-table { font-size: 11.5px; }
.erp-table .row {
  display: grid; grid-template-columns: 1fr 70px 60px;
  padding: 7px 0; border-bottom: 1px solid var(--line-soft);
  align-items: center; color: var(--ink-2);
}
.erp-table .row:last-child { border-bottom: none; }
.erp-table .row .val { font-weight: 700; color: var(--ink-1); text-align: right; }
.erp-table .row .tag {
  font-size: 9.5px; padding: 3px 7px; border-radius: var(--r-pill);
  text-align: center; font-weight: 700; letter-spacing: 0.03em;
}
.erp-table .row .tag.ok { background: var(--ok-bg); color: var(--green-700); }
.erp-table .row .tag.warn { background: var(--warn-bg); color: var(--warn); }
.erp-table .row .wa-tag {
  display: inline-flex; align-items: center; gap: 4px; font-size: 9.5px;
  background: rgba(37,211,102,0.12); color: var(--green-700);
  padding: 2px 6px; border-radius: var(--r-pill); font-weight: 700; margin-left: 6px;
}

/* ─── WhatsApp phone mockup ───────────────────────────────────────── */
.wa-phone {
  width: 240px;
  background: #0B1220;
  border-radius: 38px; padding: 8px;
  box-shadow:
    0 0 0 2px rgba(255,255,255,0.06) inset,
    var(--shadow-xl);
}
.wa-screen {
  background: #E5DDD5;
  border-radius: 30px; overflow: hidden;
  position: relative;
  display: flex; flex-direction: column;
  height: 480px;
}
.wa-notch {
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 90px; height: 22px; background: #0B1220; border-radius: 12px; z-index: 2;
}
.wa-header {
  background: linear-gradient(180deg, #075E54, #054C44);
  color: #fff; padding: 32px 14px 12px;
  display: flex; align-items: center; gap: 10px;
}
.wa-back { color: rgba(255,255,255,0.6); font-size: 14px; }
.wa-av {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-400), var(--green-600));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 11px;
}
.wa-meta .nm { font-size: 13px; font-weight: 700; line-height: 1.1; }
.wa-meta .st { font-size: 10px; opacity: 0.8; line-height: 1.1; margin-top: 2px;
  display: inline-flex; align-items: center; gap: 4px; }
.wa-meta .st::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #4ADE80; }

.wa-body {
  flex: 1;
  background:
    radial-gradient(circle at 10% 20%, rgba(255,255,255,0.5) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 40%, rgba(0,0,0,0.04) 0 1px, transparent 1px),
    #E5DDD5;
  background-size: 24px 24px, 32px 32px;
  padding: 12px 10px; display: flex; flex-direction: column; gap: 6px;
  overflow: hidden;
}
.wa-bubble {
  max-width: 82%; padding: 7px 10px 5px; border-radius: 8px;
  font-size: 11.5px; line-height: 1.4; position: relative;
  box-shadow: 0 1px 1px rgba(0,0,0,0.05);
}
.wa-bubble.in { background: #fff; align-self: flex-start; border-top-left-radius: 2px; }
.wa-bubble.out { background: #DCF8C6; align-self: flex-end; border-top-right-radius: 2px; }
.wa-bubble .ai-tag {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 9px; color: var(--green-700); font-weight: 800; letter-spacing: 0.04em;
  text-transform: uppercase; margin-bottom: 3px;
}
.wa-bubble .ai-tag::before {
  content: '✦'; color: var(--green-600);
}
.wa-bubble .t {
  font-size: 9px; color: rgba(0,0,0,0.4); display: block; text-align: right;
  margin-top: 3px; line-height: 1;
}
.wa-bubble .check { color: #34B7F1; font-weight: 700; margin-left: 2px; }
.wa-typing {
  display: inline-flex; gap: 3px; align-items: center; padding: 3px 0;
}
.wa-typing span {
  width: 5px; height: 5px; border-radius: 50%; background: var(--muted-2);
  animation: typing 1.2s infinite var(--ease-in-out);
}
.wa-typing span:nth-child(2) { animation-delay: 0.15s; }
.wa-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typing { 0%,60%,100%{transform:translateY(0);opacity:0.4} 30%{transform:translateY(-4px);opacity:1} }

.wa-foot {
  padding: 6px 8px;
  display: flex; gap: 6px; align-items: center;
  background: rgba(229,221,213,0.6);
}
.wa-input {
  flex: 1; background: #fff; border-radius: var(--r-pill);
  padding: 7px 12px; font-size: 11px; color: var(--muted-2);
}
.wa-send {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--green-500); display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 14px;
}

/* Hero phone position (overlapping laptop bottom-right) */
.hero-vis .laptop { z-index: 1; }
.hero-vis .wa-phone {
  position: absolute; right: -10px; bottom: -10px; z-index: 2;
  transform: rotate(2.5deg);
  transition: transform 0.4s var(--ease-out);
}
.hero-vis:hover .wa-phone { transform: rotate(0deg); }
@media (max-width: 720px) {
  .hero-vis .wa-phone { position: relative; right: auto; bottom: auto; transform: none; margin-top: -100px; align-self: flex-end; }
  .hero-vis { flex-direction: column; gap: 20px; }
}

/* ─── Logo strip ──────────────────────────────────────────────────── */
.logos {
  padding-block: 40px;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg);
}
.logos-row {
  display: flex; gap: clamp(24px, 4vw, 56px);
  align-items: center; justify-content: space-between; flex-wrap: wrap;
}
.logos-label { font-size: 12px; font-weight: 700; color: var(--muted); letter-spacing: 0.05em; text-transform: uppercase; flex-shrink: 0; }
.logo-item {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--muted); font-weight: 700; font-size: 16px;
  letter-spacing: -0.02em; opacity: 0.6;
  transition: opacity 0.15s, color 0.15s;
}
.logo-item:hover { opacity: 1; color: var(--ink-1); }
.logo-item .gl { width: 22px; height: 22px; background: currentColor; border-radius: 5px; flex-shrink: 0; opacity: 0.7; }

/* ─── Video section ───────────────────────────────────────────────── */
.video-frame {
  position: relative; max-width: 920px; margin: 56px auto 0;
  aspect-ratio: 16/9; border-radius: var(--r-xl); overflow: hidden;
  background: #0F1420;
  box-shadow: var(--shadow-xl);
  isolation: isolate;
}
.video-frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: 0; display: block;
}
.video-frame::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(37,211,102,0.18), transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(37,113,200,0.12), transparent 50%);
}
.video-thumb {
  position: absolute; inset: 24px;
  border-radius: 12px; background: var(--bg);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.05);
  overflow: hidden;
  display: grid; grid-template-columns: 64px 1fr;
  opacity: 0.92;
}
.video-thumb .erp-rail { padding: 8px 0; }
.video-thumb .erp-rail .ic { width: 28px; height: 28px; }
.video-thumb .erp-rail .ic svg { width: 14px; height: 14px; }
.video-thumb .erp-main { padding: 10px; gap: 8px; }
.video-thumb-wa {
  position: absolute; right: 16px; bottom: 16px;
  width: 180px; transform: rotate(2deg) scale(0.85); transform-origin: bottom right;
  box-shadow: var(--shadow-lg);
}
.video-thumb-wa .wa-screen { height: 320px; }

.video-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 96px; height: 96px; border-radius: 50%;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 40px rgba(0,0,0,0.4), 0 0 0 12px rgba(255,255,255,0.08);
  cursor: pointer; transition: transform 0.2s var(--ease-out);
  z-index: 2;
}
.video-play:hover { transform: translate(-50%, -50%) scale(1.06); }
.video-play::after {
  content: '';
  border-left: 24px solid var(--ink-0);
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  margin-left: 6px;
}
.video-meta {
  position: absolute; bottom: 18px; left: 24px; right: 24px; z-index: 2;
  display: flex; justify-content: space-between; align-items: center;
  color: rgba(255,255,255,0.86); font-size: 12.5px; font-weight: 500;
}
.video-meta .badge {
  background: rgba(11,18,32,0.5); backdrop-filter: blur(8px);
  padding: 4px 10px; border-radius: var(--r-pill);
}
.video-cap {
  margin-top: 16px; color: var(--muted); font-size: 13.5px; text-align: center;
}

/* ─── Pain section ────────────────────────────────────────────────── */
.pain-grid {
  margin-top: 56px;
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.pain-card {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 22px 22px 22px 20px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-xs);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.pain-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: #FECACA; }
.pain-x {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 10px;
  background: var(--danger-bg); color: var(--danger);
  display: flex; align-items: center; justify-content: center; font-weight: 800;
}
.pain-x svg { width: 18px; height: 18px; }
.pain-card p { margin: 0; font-size: 15px; color: var(--ink-2); font-weight: 500; line-height: 1.45; }
.pain-closing {
  margin-top: 48px; padding: 24px 28px;
  background: linear-gradient(135deg, var(--ink-0), var(--ink-2));
  color: #fff; border-radius: var(--r-lg);
  display: flex; gap: 18px; align-items: center;
  max-width: 720px;
}
.pain-closing .ic {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
  background: rgba(37,211,102,0.15); color: var(--green-400);
  display: flex; align-items: center; justify-content: center;
}
.pain-closing p { margin: 0; font-size: 17px; font-weight: 600; line-height: 1.45; }
.pain-closing p b { color: var(--green-400); font-weight: 700; }

/* ─── Pain section on dark ────────────────────────────────────────── */
.on-dark .pain-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
}
.on-dark .pain-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(252, 165, 165, 0.28);
  box-shadow: 0 14px 36px -16px rgba(0,0,0,0.5);
}
.on-dark .pain-card p { color: #E5E7EB; }
.on-dark .pain-x {
  background: rgba(220, 38, 38, 0.20);
  color: #FCA5A5;
}
.on-dark .pain-closing {
  background: linear-gradient(135deg, var(--green-600), var(--green-800));
  box-shadow: 0 18px 40px -16px rgba(37, 211, 102, 0.40);
}
.on-dark .pain-closing .ic {
  background: rgba(255,255,255,0.18);
  color: #fff;
}
.on-dark .pain-closing p { color: #fff; }
.on-dark .pain-closing p b { color: #FFD400; }
.on-dark .section-head .lead { color: rgba(255,255,255,0.72); }
.on-dark .underline-green::after { background: var(--green-400); opacity: 0.55; }

/* ─── Solution flow ──────────────────────────────────────────────── */
.flow {
  margin-top: 64px; display: grid; gap: 28px;
  grid-template-columns: 1fr; position: relative;
}
@media (min-width: 760px) {
  .flow { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .flow::before {
    content: ''; position: absolute; top: 28px; left: 12%; right: 12%; height: 2px;
    background: repeating-linear-gradient(90deg, var(--green-300) 0 8px, transparent 8px 16px);
    z-index: 0;
  }
}
.flow-step { position: relative; z-index: 1; }
.flow-num {
  width: 56px; height: 56px; border-radius: 16px;
  background: linear-gradient(135deg, var(--green-400), var(--green-600));
  color: #fff; font-weight: 800; font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 8px var(--bg-soft), var(--shadow-green);
  margin-bottom: 18px;
  position: relative;
}
.flow-step h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; color: var(--ink-0); }
.flow-step p { font-size: 14px; color: var(--muted); margin: 0; }
.flow-final {
  margin-top: 56px; text-align: center;
  font-size: clamp(20px, 2.4vw, 26px); font-weight: 700; color: var(--ink-0);
  letter-spacing: -0.02em;
}
.flow-final .accent { color: var(--green-600); }

/* ─── Features ────────────────────────────────────────────────────── */
.feat-grid {
  margin-top: 56px; display: grid; gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .feat-grid { grid-template-columns: repeat(3, 1fr); } }
.feat-card {
  padding: 30px 26px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  position: relative; overflow: hidden;
}
.feat-card:hover {
  transform: translateY(-3px); box-shadow: var(--shadow-md);
  border-color: var(--green-300);
}
.feat-card::before {
  content: ''; position: absolute; top: 0; right: 0; width: 120px; height: 120px;
  background: radial-gradient(circle at top right, rgba(37,211,102,0.10), transparent 70%);
  pointer-events: none; opacity: 0; transition: opacity 0.25s;
}
.feat-card:hover::before { opacity: 1; }
.feat-card .ic {
  display: inline-flex; width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, var(--green-50), var(--green-100));
  color: var(--green-700); margin-bottom: 18px;
  align-items: center; justify-content: center;
}
.feat-card .ic svg { width: 24px; height: 24px; }
.feat-card.highlight .ic { background: linear-gradient(135deg, var(--green-500), var(--green-700)); color: #fff; }
.feat-card.highlight { border-color: var(--green-200); background: linear-gradient(180deg, var(--green-50) 0%, #fff 40%); }
.feat-card .title { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.feat-card .desc { font-size: 14.5px; color: var(--muted); }
.feat-card .badge {
  position: absolute; top: 22px; right: 22px;
  font-size: 10px; font-weight: 800; letter-spacing: 0.06em;
  padding: 4px 10px; border-radius: var(--r-pill);
  background: var(--green-500); color: #fff; text-transform: uppercase;
}

/* ─── Audience (3 columns) ────────────────────────────────────────── */
.aud-grid {
  margin-top: 56px; display: grid; gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .aud-grid { grid-template-columns: repeat(3, 1fr); } }
.aud-card {
  padding: 32px 28px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl);
  display: flex; flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative; overflow: hidden;
}
.aud-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.aud-card .ic {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--green-50), var(--green-100));
  color: var(--green-700);
}
.aud-card .ic svg { width: 28px; height: 28px; }
.aud-card h3 { font-size: 22px; line-height: 1.2; margin-bottom: 10px; }
.aud-card .sub { color: var(--muted); font-size: 14.5px; margin-bottom: 22px; }
.aud-list { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 12px; }
.aud-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; color: var(--ink-2); }
.aud-list li svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--green-600); margin-top: 2px; }
.aud-card .more {
  margin-top: auto; padding-top: 16px;
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 700; font-size: 13.5px; color: var(--green-700);
  border-top: 1px solid var(--line-soft);
}

/* ─── Results ─────────────────────────────────────────────────────── */
.res-stats {
  margin-top: 56px; display: grid; gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 760px) { .res-stats { grid-template-columns: repeat(4, 1fr); } }
.res-stat {
  padding: 28px 22px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  position: relative; overflow: hidden;
}
.res-stat::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(180deg, var(--green-400), var(--green-600));
}
.res-stat .n {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 44px); font-weight: 800; color: var(--green-600);
  letter-spacing: -0.03em; line-height: 1;
}
.res-stat .n .unit { font-size: 0.6em; color: var(--ink-2); }
.res-stat .l { margin-top: 10px; font-size: 14px; color: var(--ink-3); font-weight: 500; }
.res-closing {
  margin-top: 48px; padding: 28px 36px;
  background: var(--ink-0); color: #fff; border-radius: var(--r-xl);
  display: flex; gap: 22px; align-items: center;
  box-shadow: var(--shadow-xl);
}
@media (max-width: 640px) {
  .res-closing { flex-direction: column; align-items: flex-start; padding: 24px; }
}
.res-closing .lamp {
  flex-shrink: 0; width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, var(--green-400), var(--green-600));
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-green);
}
.res-closing .lamp svg { width: 28px; height: 28px; color: #fff; }
.res-closing p { margin: 0; font-size: clamp(16px, 1.8vw, 19px); font-weight: 500; line-height: 1.5; }
.res-closing p b { color: var(--green-400); font-weight: 700; }

/* ─── Testimonials ────────────────────────────────────────────────── */
.testi-grid {
  margin-top: 48px; display: grid; gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) { .testi-grid { grid-template-columns: repeat(2, 1fr); } }
.testi-card {
  padding: 30px 28px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  display: flex; flex-direction: column; gap: 18px;
  box-shadow: var(--shadow-xs);
}
.testi-stars { display: flex; gap: 2px; color: var(--green-500); }
.testi-stars svg { width: 16px; height: 16px; fill: currentColor; }
.testi-quote { font-size: 16.5px; line-height: 1.55; color: var(--ink-1); font-weight: 500; flex: 1; }
.testi-quote::before { content: '"'; color: var(--green-500); font-weight: 900; font-size: 32px; margin-right: 4px; vertical-align: -10px; line-height: 0; }
.testi-meta { display: flex; gap: 14px; align-items: center; padding-top: 18px; border-top: 1px solid var(--line-soft); }
.testi-av {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-400), var(--green-700));
  color: #fff; font-weight: 800; font-size: 14px;
  display: flex; align-items: center; justify-content: center; letter-spacing: 0;
  flex-shrink: 0;
}
.testi-info { line-height: 1.3; }
.testi-info .nm { font-weight: 700; font-size: 14px; color: var(--ink-0); }
.testi-info .ro { font-size: 13px; color: var(--muted); }

/* ─── Testimonials carousel ───────────────────────────────────────── */
.testi-carousel {
  margin-top: 48px; position: relative;
}
.testi-viewport {
  overflow: hidden;
  margin: 0 -8px;       /* counter-pad track gutters so cards align with section edges */
  padding: 8px;          /* room for card shadow */
}
.testi-track {
  display: flex;
  gap: 20px;
  transition: transform 0.7s var(--ease-out);
  will-change: transform;
}
.testi-track .testi-card {
  flex: 0 0 calc((100% - 20px) / 2);  /* desktop: 2 cards visible */
  min-width: 0;
  margin-top: 0;
  /* override grid-item reveal opacity since track manages visibility */
  opacity: 1;
  transform: none;
}
@media (max-width: 800px) {
  .testi-track { gap: 16px; }
  .testi-track .testi-card { flex-basis: 100%; }
}
.testi-controls {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  margin-top: 32px;
}
.testi-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--line);
  background: #fff; color: var(--ink-2);
  display: inline-flex; align-items: center; justify-content: center;
  transition: border-color 0.15s, color 0.15s, transform 0.15s, background 0.15s;
}
.testi-arrow:hover {
  border-color: var(--green-500); color: var(--green-700);
  background: var(--green-50);
  transform: translateY(-1px);
}
.testi-arrow:active { transform: translateY(0); }
.testi-arrow:disabled { opacity: 0.4; cursor: default; transform: none; }
.testi-dots {
  display: flex; gap: 8px; align-items: center;
}
.testi-dots button {
  width: 8px; height: 8px; border-radius: 50%; padding: 0;
  border: 0; background: var(--line);
  transition: background 0.15s, transform 0.2s, width 0.25s var(--ease-out);
}
.testi-dots button[aria-selected="true"] {
  background: var(--green-500);
  width: 22px; border-radius: 4px;
}
.testi-dots button:hover { background: var(--green-400); }
.testi-dots button[aria-selected="true"]:hover { background: var(--green-600); }
.faq-list { margin-top: 40px; max-width: 760px; }
.faq-item {
  border: 1px solid var(--line); border-radius: var(--r-md);
  background: #fff; margin-bottom: 12px; overflow: hidden;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.faq-item[open] { border-color: var(--green-300); box-shadow: var(--shadow-sm); }
.faq-item summary {
  cursor: pointer; list-style: none;
  padding: 20px 22px; font-weight: 700; font-size: 16px; color: var(--ink-0);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .pls {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: var(--green-50); color: var(--green-700);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s, background 0.2s;
}
.faq-item[open] summary .pls { transform: rotate(45deg); background: var(--green-500); color: #fff; }
.faq-item .ans { padding: 0 22px 20px; color: var(--ink-3); font-size: 15px; line-height: 1.6; }

/* ─── Final CTA + form ────────────────────────────────────────────── */
.final {
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse at top, rgba(255,255,255,0.16), transparent 50%),
    linear-gradient(135deg, var(--green-600), var(--green-700));
}
.final::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.08) 0 1px, transparent 1px),
    radial-gradient(circle at 75% 65%, rgba(255,255,255,0.06) 0 2px, transparent 2px);
  background-size: 40px 40px, 60px 60px;
  pointer-events: none;
}
.final-wrap { position: relative; display: grid; gap: 56px; align-items: start; }
@media (min-width: 920px) { .final-wrap { grid-template-columns: 1fr 1fr; align-items: center; gap: 80px; } }
.final-copy { color: #fff; }
.final-copy .eyebrow { color: rgba(255,255,255,0.92); }
.final-copy .eyebrow::before { background: rgba(255,255,255,0.92); }
.final-copy h2 { color: #fff; font-size: clamp(28px, 4vw, 44px); }
.final-copy .lead { color: rgba(255,255,255,0.92); margin-top: 18px; font-size: 17px; }
.final-bullets { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.final-bullets li {
  display: flex; gap: 12px; align-items: flex-start; color: #fff; font-size: 15.5px; font-weight: 500;
}
.final-bullets li svg { flex-shrink: 0; width: 22px; height: 22px; color: var(--green-200); margin-top: 1px; }
.final-urg {
  margin-top: 28px; display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px; border-radius: var(--r-pill);
  background: rgba(0,0,0,0.2); font-size: 13px; font-weight: 600; color: #fff;
}
.final-urg .pulse {
  width: 9px; height: 9px; border-radius: 50%; background: var(--green-200);
  box-shadow: 0 0 0 0 rgba(255,255,255,0.7); animation: pulse 6s var(--ease-out) infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,255,255,0.55); }
  45%  { box-shadow: 0 0 0 14px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

.lead-form {
  background: #fff; border-radius: var(--r-xl);
  padding: clamp(24px, 4vw, 36px);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.30), 0 14px 30px -16px rgba(0,0,0,0.18);
}
.lead-form h3 { font-size: 22px; margin-bottom: 6px; }
.lead-form .desc { color: var(--muted); font-size: 14.5px; margin-bottom: 24px; }
.form-grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 540px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.wide { grid-column: 1 / -1; }
.field label {
  font-size: 12.5px; font-weight: 700; color: var(--ink-2);
  letter-spacing: 0.01em;
}
.field label .req { color: var(--green-600); }
.field input, .field select {
  font: inherit; font-size: 15px; padding: 13px 14px;
  border: 1.5px solid var(--line); border-radius: var(--r-md);
  background: #fff; color: var(--ink-0);
  outline: none; transition: border-color 0.15s, box-shadow 0.15s;
  width: 100%;
}
.field input::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus {
  border-color: var(--green-500); box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.18);
}
.field input:invalid:not(:placeholder-shown) { border-color: #FCA5A5; }
.field select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='10' viewBox='0 0 14 10'><path fill='%236B7280' d='M0 0h14L7 10z'/></svg>");
  background-repeat: no-repeat; background-position: right 16px center;
  padding-right: 40px;
}
.lead-form .submit {
  display: flex; gap: 14px; align-items: center; margin-top: 24px; flex-wrap: wrap;
}
.lead-form button[type="submit"] {
  flex: 1; min-width: 200px;
  background: var(--green-600); color: #fff; border: none;
  padding: 16px 22px; border-radius: var(--r-md);
  font-size: 15.5px; font-weight: 700; letter-spacing: -0.005em;
  transition: background 0.15s, transform 0.15s, box-shadow 0.2s;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: var(--shadow-green);
}
.lead-form button[type="submit"]:hover { background: var(--green-700); transform: translateY(-1px); }
.lead-form .alt-wa {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 700; color: var(--green-700);
  padding: 14px 4px;
  text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 1.5px;
}
.lead-form .privacy {
  font-size: 11.5px; color: var(--muted); margin-top: 18px; line-height: 1.5;
}
.lead-form .privacy a { color: var(--green-700); text-decoration: underline; }

/* ─── Navigation ──────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 18, 32, 0.82);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s, border-color 0.2s;
}
.nav.scrolled {
  background: rgba(11, 18, 32, 0.96);
  border-bottom-color: rgba(255,255,255,0.10);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 14px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 800; font-size: 18px;
  color: #ffffff; letter-spacing: -0.02em;
  text-decoration: none;
}
.brand-logo {
  height: 48px; width: auto; display: block;
}
@media (max-width: 540px) {
  .brand-logo { height: 40px; }
}
.brand .mk {
  width: 30px; height: 30px; border-radius: 8px;
  background: linear-gradient(135deg, #FFD400, #F59E0B);
  box-shadow: 0 4px 14px rgba(250, 204, 21, 0.30), 0 0 0 1px rgba(255, 220, 130, 0.4) inset;
  position: relative;
}
.brand .mk::after {
  content: ''; position: absolute; inset: 6px;
  background: #fff; border-radius: 4px;
  clip-path: polygon(20% 30%, 60% 30%, 60% 60%, 80% 60%, 80% 80%, 20% 80%);
}
.brand-sub {
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  margin-left: 6px;
}
.nav-links {
  display: none;
  gap: 28px; font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,0.72);
}
@media (min-width: 960px) { .nav-links { display: flex; } }
.nav-links a { color: inherit; transition: color 0.15s; }
.nav-links a:hover { color: #ffffff; }
.nav-cta { display: flex; gap: 10px; align-items: center; }
.nav-cta .btn-wa { display: none; }
@media (min-width: 720px) { .nav-cta .btn-wa { display: inline-flex; } }
.nav-burger {
  display: none; padding: 8px; background: transparent; border: 0;
  color: #ffffff;
}
@media (max-width: 959px) { .nav-burger { display: inline-flex; } }
.nav-burger svg { width: 24px; height: 24px; color: inherit; }

/* Mobile menu overlay — dark to match nav */
.mob-menu {
  display: none; position: fixed; inset: 0; z-index: 60;
  background: var(--bg-dark);
  color: #ffffff;
  padding: 16px var(--wrap-px) 32px;
  flex-direction: column; gap: 22px;
}
.mob-menu.open { display: flex; }
.mob-menu .brand { color: #ffffff; }
.mob-menu-top {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 6px;
}
.mob-menu-close {
  width: 38px; height: 38px; border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.05);
  color: #ffffff;
  display: flex; align-items: center; justify-content: center;
}
.mob-menu-close svg { color: inherit; }
.mob-menu-links { display: flex; flex-direction: column; gap: 4px; }
.mob-menu-links a {
  padding: 14px 0; font-size: 18px; font-weight: 700; color: #ffffff;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mob-menu-cta { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }

/* ─── Footer ──────────────────────────────────────────────────────── */
footer {
  background: var(--bg-dark); color: #C9CFD8;
  padding-block: 64px 28px; font-size: 14px;
}
.foot-grid {
  display: grid; gap: 40px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .foot-grid { grid-template-columns: 1.4fr 1fr 1.2fr; gap: 56px; } }
footer .brand { color: #fff; }
footer .brand .brand-logo { height: 60px; }
footer .brand .mk { box-shadow: 0 0 0 1px rgba(255,255,255,0.08); }
.foot-desc { margin-top: 14px; color: #9CA3AF; font-size: 14px; line-height: 1.6; max-width: 36ch; }
.foot-h {
  font-size: 12px; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: 0.1em;
  margin: 0 0 18px;
}
.foot-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.foot-links a { color: #9CA3AF; transition: color 0.15s; }
.foot-links a:hover { color: #fff; }
.foot-contact { display: flex; flex-direction: column; gap: 14px; }
.foot-contact-row {
  display: flex; gap: 12px; align-items: flex-start; color: #C9CFD8;
}
.foot-contact-row .ic {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-400);
}
.foot-contact-row .ic svg { width: 17px; height: 17px; }
.foot-contact-row .lbl { font-size: 11px; color: var(--muted-2); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; }
.foot-contact-row .val { color: #fff; font-weight: 600; font-size: 15px; }
.foot-contact-row .val a { color: inherit; }
.foot-bottom {
  margin-top: 48px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-size: 12.5px; color: var(--muted-2); flex-wrap: wrap;
}
.foot-bottom .social { display: flex; gap: 10px; }
.foot-bottom .social a {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: inline-flex; align-items: center; justify-content: center;
  color: #C9CFD8; transition: background 0.15s, color 0.15s;
}
.foot-bottom .social a:hover { background: var(--green-500); color: #fff; }
.foot-bottom .social svg { width: 17px; height: 17px; }

/* ─── Floating WhatsApp button ────────────────────────────────────── */
.fab-wa {
  position: fixed; right: 20px; bottom: 20px; z-index: 40;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--green-500); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-green), 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.2s var(--ease-out);
}
.fab-wa:hover { transform: translateY(-3px) scale(1.04); }
.fab-wa svg { width: 30px; height: 30px; }
.fab-wa::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: var(--green-500); z-index: -1; opacity: 0.35;
  animation: fab-pulse 9s var(--ease-out) infinite;
}
@keyframes fab-pulse {
  0%   { transform: scale(1); opacity: 0.35; }
  40%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}
.fab-tt {
  position: absolute; right: calc(100% + 12px); top: 50%; transform: translateY(-50%);
  background: var(--ink-0); color: #fff; padding: 8px 14px; border-radius: var(--r-md);
  font-size: 13px; font-weight: 600; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity 0.2s;
  box-shadow: var(--shadow-md);
}
.fab-tt::after {
  content: ''; position: absolute; left: 100%; top: 50%; transform: translateY(-50%);
  border: 6px solid transparent; border-left-color: var(--ink-0);
}
.fab-wa:hover .fab-tt, .fab-wa:focus-visible .fab-tt { opacity: 1; }

@media (max-width: 540px) {
  .fab-wa { width: 56px; height: 56px; right: 16px; bottom: 16px; }
  .fab-wa svg { width: 26px; height: 26px; }
}

/* ─── Scroll-in animation ─────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="100"] { transition-delay: 0.08s; }
.reveal[data-delay="200"] { transition-delay: 0.16s; }
.reveal[data-delay="300"] { transition-delay: 0.24s; }

/* ─── Toast (form success) ────────────────────────────────────────── */
.toast {
  position: fixed; top: 24px; left: 50%; transform: translate(-50%, -120%);
  background: var(--ink-0); color: #fff;
  padding: 14px 22px; border-radius: var(--r-md);
  box-shadow: var(--shadow-xl);
  display: flex; gap: 12px; align-items: center;
  font-size: 14px; font-weight: 600; z-index: 100;
  transition: transform 0.4s var(--ease-out);
  max-width: calc(100% - 32px);
}
.toast.show { transform: translate(-50%, 0); }
.toast .ic {
  width: 28px; height: 28px; border-radius: 50%; background: var(--green-500);
  display: flex; align-items: center; justify-content: center;
}
.toast .ic svg { width: 16px; height: 16px; }
