/*!***************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[3]!./src/assets/styles/globals.css ***!
  \***************************************************************************************************************************************************************************************************************************************************************************/
:root {
    --bg: #f7faf8;
    --bg-2: #ffffff;
    --surface: rgba(255,255,255,0.7);
    --surface-2: rgba(255,255,255,0.95);
    --border: rgba(15,30,25,0.08);
    --border-strong: rgba(15,30,25,0.14);
    --text: #0c1310;
    --text-dim: #4a5852;
    --text-mute: #7a857f;
    --green: #1aaf52;
    --green-2: #25D366;
    --green-deep: #d6f5e2;
    --green-bubble: #e6faec;
    --display: "Plus Jakarta Sans", system-ui, sans-serif;
    --body: "Inter", system-ui, sans-serif;
    --mono: "JetBrains Mono", ui-monospace, monospace;
  }
  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; background: var(--bg); color: var(--text); font-family: var(--body); -webkit-font-smoothing: antialiased; }
  body {
    overflow-x: hidden;
    background:
      radial-gradient(900px 600px at 80% -10%, rgba(37,211,102,0.14), transparent 60%),
      radial-gradient(700px 500px at 5% 20%, rgba(37,211,102,0.08), transparent 60%),
      var(--bg);
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; }

  /* ───────────── Layout ───────────── */
  .wrap { max-width: 1240px; margin: 0 auto; padding: 0 28px; }

  /* ───────────── Nav ───────────── */
  .nav {
    position: sticky; top: 0; z-index: 50;
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    background: rgba(247,250,248,0.75);
    border-bottom: 1px solid var(--border);
  }
  .nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 68px;
  }
  .logo {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--display); font-weight: 800; font-size: 19px; letter-spacing: -0.01em;
  }
  .logo-mark {
    width: 30px; height: 30px; border-radius: 9px;
    background: linear-gradient(135deg, #25D366 0%, #15a64a 100%);
    display: grid; place-items: center;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.5) inset, 0 8px 22px rgba(37,211,102,0.4);
    position: relative;
  }
  .logo-mark svg { width: 16px; height: 16px; }
  .nav-links { display: flex; align-items: center; gap: 32px; font-size: 14px; color: var(--text-dim); }
  .nav-links a:hover { color: var(--text); }
  .nav-cta { display: flex; align-items: center; gap: 10px; }

  /* ───────────── Buttons ───────────── */
  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-family: var(--body); font-weight: 600; font-size: 14px;
    padding: 10px 18px; border-radius: 10px;
    border: 1px solid transparent; transition: all 160ms ease;
    white-space: nowrap;
  }
  .btn-primary {
    background: linear-gradient(180deg, #25D366, #1aaf52);
    color: #042b13;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.4) inset, 0 -1px 0 rgba(0,0,0,0.15) inset, 0 10px 26px rgba(37,211,102,0.35);
  }
  .btn-primary:hover { background: linear-gradient(180deg, #2bdf72, #1fc760); transform: translateY(-1px); box-shadow: 0 14px 32px rgba(37,211,102,0.45); }
  .btn-ghost { background: rgba(255,255,255,0.7); color: var(--text); border-color: var(--border-strong); backdrop-filter: blur(8px); }
  .btn-ghost:hover { background: rgba(255,255,255,1); border-color: rgba(15,30,25,0.22); }
  .btn-lg { padding: 14px 22px; font-size: 15px; border-radius: 12px; }

  /* ───────────── Hero ───────────── */
  .hero { position: relative; padding: 90px 0 80px; overflow: hidden; }
  .hero-grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(15,30,25,0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(15,30,25,0.05) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 75%);
    pointer-events: none;
  }
  .hero-glow {
    position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
    width: 900px; height: 600px;
    background: radial-gradient(closest-side, rgba(37,211,102,0.28), transparent 70%);
    filter: blur(40px); pointer-events: none;
  }
  .hero-inner { position: relative; text-align: center; }
  .pill {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 12px 6px 6px;
    border-radius: 999px;
    background: rgba(255,255,255,0.8); border: 1px solid var(--border);
    backdrop-filter: blur(8px);
    font-size: 13px; color: var(--text-dim);
    box-shadow: 0 4px 12px rgba(15,30,25,0.04);
  }
  .pill .pill-tag {
    background: var(--green); color: white;
    font-weight: 700; font-size: 11px; padding: 3px 10px; border-radius: 999px;
    letter-spacing: 0.04em; text-transform: uppercase;
  }
  h1.hero-title {
    font-family: var(--display); font-weight: 800;
    font-size: clamp(40px, 6.4vw, 84px);
    line-height: 0.98; letter-spacing: -0.035em;
    margin: 22px auto 22px; max-width: 980px;
  }
  .hero-title .accent {
    background: linear-gradient(180deg, #2bdf72 0%, #1aaf52 60%, #0e7a3a 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
  }
  .hero-title .dot { color: var(--green); }
  .hero-sub {
    max-width: 640px; margin: 0 auto;
    font-size: 18px; line-height: 1.55; color: var(--text-dim);
    text-wrap: pretty;
  }
  .hero-actions { display: flex; gap: 12px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }
  .micro-trust {
    margin-top: 22px; display: flex; gap: 22px; justify-content: center;
    color: var(--text-mute); font-size: 13px; flex-wrap: wrap;
  }
  .micro-trust span { display: inline-flex; align-items: center; gap: 6px; }
  .micro-trust svg { color: var(--green); }

  /* ───────────── Hero mockup ───────────── */
  .mockup-wrap { position: relative; margin: 70px auto 0; max-width: 1120px; }
  .mockup-glow {
    position: absolute; inset: -40px -20px -80px;
    background: radial-gradient(60% 60% at 50% 50%, rgba(37,211,102,0.20), transparent 70%);
    filter: blur(40px); pointer-events: none;
  }
  .browser {
    position: relative;
    background: #ffffff;
    border: 1px solid var(--border-strong);
    border-radius: 18px;
    box-shadow:
      0 1px 0 rgba(255,255,255,0.8) inset,
      0 30px 80px -20px rgba(15,30,25,0.18),
      0 0 0 1px rgba(37,211,102,0.08);
    overflow: hidden;
  }
  .browser-bar {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    background: #fafbfc;
  }
  .traffic { display: flex; gap: 6px; }
  .traffic span { width: 11px; height: 11px; border-radius: 50%; background: #e6e9ec; }
  .traffic span:nth-child(1) { background: #ff5f57; }
  .traffic span:nth-child(2) { background: #febc2e; }
  .traffic span:nth-child(3) { background: #28c840; }
  .browser-url {
    flex: 1; max-width: 340px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 7px;
    padding: 5px 12px;
    font-family: var(--mono); font-size: 12px; color: var(--text-mute);
    display: flex; align-items: center; gap: 8px;
  }
  .browser-url svg { color: var(--green); }
  .browser-tabs { display: flex; gap: 4px; margin-left: auto; color: var(--text-mute); font-size: 12px; }

  .dash {
    display: grid;
    grid-template-columns: 220px 1fr 340px;
    min-height: 540px;
  }
  .dash-side {
    border-right: 1px solid var(--border);
    padding: 18px 14px;
    background: #fafbfc;
    display: flex; flex-direction: column; gap: 4px;
  }
  .ds-section { padding: 10px 8px 4px; font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-mute); }
  .ds-item {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 10px; border-radius: 8px; color: var(--text-dim); font-size: 13px;
  }
  .ds-item.active { background: #ffffff; color: var(--text); box-shadow: 0 1px 2px rgba(15,30,25,0.06), 0 0 0 1px var(--border); }
  .ds-item .ds-ic { width: 16px; height: 16px; color: var(--text-mute); }
  .ds-item.active .ds-ic { color: var(--green); }
  .ds-badge { margin-left: auto; font-size: 10px; padding: 2px 6px; border-radius: 999px; background: var(--green-bubble); color: var(--green); font-weight: 600; }

  .dash-main { padding: 22px; display: flex; flex-direction: column; gap: 18px; min-width: 0; }
  .dm-head { display: flex; justify-content: space-between; align-items: flex-start; }
  .dm-title { font-family: var(--display); font-weight: 700; font-size: 18px; letter-spacing: -0.01em; }
  .dm-sub { font-size: 12px; color: var(--text-mute); margin-top: 2px; }
  .dm-period {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 10px; border-radius: 8px;
    background: #ffffff; border: 1px solid var(--border);
    font-size: 12px; color: var(--text-dim);
  }
  .kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .kpi {
    background: #ffffff; border: 1px solid var(--border);
    border-radius: 11px; padding: 14px;
    box-shadow: 0 1px 2px rgba(15,30,25,0.03);
  }
  .kpi-label { font-size: 11px; color: var(--text-mute); text-transform: uppercase; letter-spacing: 0.06em; }
  .kpi-value { font-family: var(--display); font-weight: 700; font-size: 22px; letter-spacing: -0.02em; margin-top: 6px; }
  .kpi-delta { font-size: 11px; color: var(--green); margin-top: 4px; display: inline-flex; align-items: center; gap: 4px; font-weight: 600; }
  .kpi-delta.down { color: #e1495d; }

  .chart-card {
    background: #ffffff; border: 1px solid var(--border); border-radius: 12px;
    padding: 16px; flex: 1; min-height: 220px; position: relative;
    box-shadow: 0 1px 2px rgba(15,30,25,0.03);
  }
  .chart-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
  .chart-title { font-size: 13px; font-weight: 600; }
  .chart-legend { display: flex; gap: 12px; font-size: 11px; color: var(--text-mute); }
  .chart-legend span { display: inline-flex; align-items: center; gap: 5px; }
  .chart-legend i { width: 8px; height: 8px; border-radius: 2px; display: inline-block; }
  .chart-svg { width: 100%; height: 170px; }

  /* Dash chat panel */
  .dash-chat {
    border-left: 1px solid var(--border);
    background: #fafbfc;
    display: flex; flex-direction: column;
  }
  .dc-head {
    padding: 14px 16px; border-bottom: 1px solid var(--border);
    display: flex; align-items: center; gap: 10px;
  }
  .dc-avatar {
    width: 32px; height: 32px; border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    display: grid; place-items: center; font-weight: 700; color: #ffffff; font-size: 13px;
  }
  .dc-name { font-size: 13px; font-weight: 600; }
  .dc-status { font-size: 11px; color: var(--green); display: flex; align-items: center; gap: 5px; }
  .dc-status::before { content: ""; width: 6px; height: 6px; background: var(--green); border-radius: 50%; box-shadow: 0 0 8px var(--green); }
  .dc-body {
    flex: 1; padding: 16px 14px; display: flex; flex-direction: column; gap: 10px;
    background:
      radial-gradient(circle at 20% 20%, rgba(37,211,102,0.05), transparent 50%),
      #ece5dd;
    font-size: 13px;
  }
  .bubble {
    max-width: 78%; padding: 8px 12px;
    border-radius: 12px; line-height: 1.4;
    position: relative;
    box-shadow: 0 1px 1px rgba(15,30,25,0.06);
  }
  .bubble.in { background: #ffffff; color: var(--text); border-bottom-left-radius: 4px; align-self: flex-start; }
  .bubble.out { background: #dcf8c6; color: #0c2419; border-bottom-right-radius: 4px; align-self: flex-end; }
  .bubble .time { font-size: 9.5px; color: rgba(15,30,25,0.4); margin-left: 6px; vertical-align: bottom; }
  .bot-tag {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 9px; padding: 2px 6px; border-radius: 999px;
    background: rgba(37,211,102,0.15); color: #0e7a3a;
    margin-bottom: 4px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  }
  .quick-replies { display: flex; flex-wrap: wrap; gap: 6px; align-self: flex-start; max-width: 90%; }
  .quick-reply {
    font-size: 11px; padding: 5px 10px; border-radius: 999px;
    background: #ffffff; border: 1px solid var(--border);
    color: var(--text-dim);
    box-shadow: 0 1px 1px rgba(15,30,25,0.04);
  }
  .typing {
    align-self: flex-start; padding: 10px 14px;
    background: #ffffff; border-radius: 12px;
    display: inline-flex; gap: 4px;
    box-shadow: 0 1px 1px rgba(15,30,25,0.06);
  }
  .typing i { width: 6px; height: 6px; border-radius: 50%; background: var(--text-mute); animation: bounce 1.2s infinite; }
  .typing i:nth-child(2) { animation-delay: 0.15s; }
  .typing i:nth-child(3) { animation-delay: 0.3s; }
  @keyframes bounce { 0%,60%,100% { transform: translateY(0); opacity: 0.4; } 30% { transform: translateY(-4px); opacity: 1; } }

  /* Decorative floating bubbles around hero */
  .float-bubble {
    position: absolute; padding: 10px 14px; border-radius: 14px;
    font-size: 13px; max-width: 220px; line-height: 1.4;
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    box-shadow: 0 18px 40px -10px rgba(15,30,25,0.18);
    z-index: 2;
  }
  .float-bubble.in { background: rgba(255,255,255,0.95); color: var(--text); border-bottom-left-radius: 4px; }
  .float-bubble.out { background: #dcf8c6; color: #0c2419; border-bottom-right-radius: 4px; border-color: rgba(37,211,102,0.25); }
  .fb-meta { display: block; font-size: 10px; color: var(--text-mute); margin-top: 4px; }
  .float-bubble.out .fb-meta { color: rgba(12,36,25,0.55); }
  .fb-1 { top: 12%; left: -10px; transform: rotate(-3deg); }
  .fb-2 { top: 36%; right: -10px; transform: rotate(2deg); }
  .fb-3 { bottom: -10px; left: 8%; transform: rotate(-1.5deg); }
  @media (max-width: 900px) { .float-bubble { display: none; } }

  /* ───────────── Logo bar ───────────── */
  .logos {
    padding: 60px 0 20px;
    text-align: center;
  }
  .logos-label {
    font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--text-mute); margin-bottom: 28px;
  }
  .logos-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    align-items: center;
    opacity: 0.7;
  }
  .logo-ph {
    height: 32px;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-dim);
    font-family: var(--display); font-weight: 700; font-size: 16px;
    letter-spacing: -0.01em;
    gap: 8px;
  }
  .logo-ph svg { color: var(--text-dim); }
  @media (max-width: 800px) { .logos-row { grid-template-columns: repeat(3, 1fr); } }

  /* ───────────── Section chrome ───────────── */
  section { position: relative; }
  .sec { padding: 110px 0; }
  .sec-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
  .eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--green); font-weight: 600;
  }
  .eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); }
  .sec-title {
    font-family: var(--display); font-weight: 700;
    font-size: clamp(30px, 4vw, 48px);
    letter-spacing: -0.025em; line-height: 1.05;
    margin: 16px 0 14px;
  }
  .sec-sub { color: var(--text-dim); font-size: 17px; line-height: 1.55; text-wrap: pretty; }

  /* ───────────── Features ───────────── */
  .features {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  }
  @media (max-width: 980px) { .features { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 640px) { .features { grid-template-columns: 1fr; } }
  .card {
    position: relative;
    background: rgba(255,255,255,0.7);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(20px);
    overflow: hidden;
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
    box-shadow: 0 1px 2px rgba(15,30,25,0.03);
  }
  .card:hover { transform: translateY(-3px); border-color: rgba(37,211,102,0.4); box-shadow: 0 20px 40px -20px rgba(37,211,102,0.25); }
  .card::after {
    content: ""; position: absolute; inset: -1px; border-radius: 16px;
    background: radial-gradient(400px 200px at var(--mx, 50%) var(--my, 0%), rgba(37,211,102,0.14), transparent 60%);
    opacity: 0; transition: opacity 280ms ease; pointer-events: none;
  }
  .card:hover::after { opacity: 1; }
  .card-icon {
    width: 44px; height: 44px; border-radius: 11px;
    background: linear-gradient(135deg, #25D366, #15a64a);
    border: 1px solid rgba(37,211,102,0.35);
    display: grid; place-items: center;
    color: #ffffff;
    box-shadow: 0 8px 20px -6px rgba(37,211,102,0.45);
    margin-bottom: 18px;
  }
  .card-icon svg { width: 22px; height: 22px; }
  .card h3 { font-family: var(--display); font-weight: 700; font-size: 18px; margin: 0 0 6px; letter-spacing: -0.01em; }
  .card p { margin: 0; color: var(--text-dim); font-size: 14.5px; line-height: 1.55; }
  .card-mini { margin-top: 18px; padding-top: 16px; border-top: 1px dashed var(--border); font-size: 12px; color: var(--text-mute); display: flex; gap: 10px; align-items: center; }
  .card-mini b { color: var(--green); font-weight: 600; }

  /* ───────────── How it works ───────────── */
  .steps {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
    position: relative;
  }
  .steps::before {
    content: ""; position: absolute; top: 36px; left: 8%; right: 8%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--green), transparent);
    opacity: 0.35;
  }
  @media (max-width: 820px) { .steps { grid-template-columns: 1fr; } .steps::before { display: none; } }
  .step {
    background: rgba(255,255,255,0.7); border: 1px solid var(--border);
    border-radius: 16px; padding: 28px 24px; position: relative;
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 2px rgba(15,30,25,0.03);
  }
  .step-num {
    width: 36px; height: 36px; border-radius: 50%;
    background: #ffffff; border: 1px solid var(--border-strong);
    font-family: var(--display); font-weight: 700; font-size: 15px;
    display: grid; place-items: center; color: var(--green);
    box-shadow: 0 0 24px rgba(37,211,102,0.35), 0 0 0 4px rgba(37,211,102,0.1);
    margin-bottom: 18px;
  }
  .step h3 { font-family: var(--display); font-weight: 700; font-size: 20px; margin: 0 0 8px; letter-spacing: -0.015em; }
  .step p { color: var(--text-dim); font-size: 14.5px; line-height: 1.55; margin: 0 0 16px; }
  /* ───────────── Step mockups (WhatsApp-style demo UI) ───────────── */
  .step-mock {
    border-radius: 12px;
    border: 1px solid var(--border);
    min-height: 220px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 8px 24px -12px rgba(15,30,25,0.18), 0 1px 2px rgba(15,30,25,0.04);
    position: relative;
  }

  /* Step 1 — Facebook OAuth */
  .mk-fb-head {
    background: linear-gradient(180deg, #1877f2, #1264d2);
    color: #fff; padding: 10px 14px;
    font-family: var(--display); font-weight: 800; font-size: 13px;
    display: flex; align-items: center; gap: 8px;
    letter-spacing: -0.01em;
  }
  .mk-fb-head svg { width: 16px; height: 16px; flex: none; }
  .mk-fb-body { padding: 14px; }
  .mk-fb-title { font-family: var(--display); font-size: 12.5px; font-weight: 700; color: var(--text); margin-bottom: 10px; line-height: 1.35; }
  .mk-fb-user {
    display: flex; align-items: center; gap: 10px;
    padding: 10px; border: 1px solid var(--border); border-radius: 9px;
    margin-bottom: 10px; background: #fafbfc;
  }
  .mk-fb-avatar {
    width: 30px; height: 30px; border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    display: grid; place-items: center; font-weight: 700; color: #fff; font-size: 11px;
    font-family: var(--display); flex: none;
  }
  .mk-fb-user-name { font-size: 12px; font-weight: 700; color: var(--text); }
  .mk-fb-user-sub { font-size: 10.5px; color: var(--text-mute); margin-top: 1px; }
  .mk-fb-radio { width: 14px; height: 14px; border-radius: 50%; border: 2px solid #1877f2; margin-left: auto; flex: none; position: relative; }
  .mk-fb-radio::after { content: ""; position: absolute; inset: 2px; background: #1877f2; border-radius: 50%; }
  .mk-fb-btn {
    background: #1877f2; color: #fff; text-align: center;
    padding: 9px; border-radius: 8px; font-weight: 700; font-size: 12.5px;
    box-shadow: 0 4px 12px rgba(24,119,242,0.35);
  }

  /* Step 2 — WhatsApp connect */
  .mk-wa-head {
    background: linear-gradient(180deg, #008069, #00604f);
    color: #fff; padding: 10px 14px;
    font-family: var(--display); font-weight: 700; font-size: 13px;
    display: flex; align-items: center; gap: 8px;
  }
  .mk-wa-head svg { width: 16px; height: 16px; flex: none; }
  .mk-wa-body { padding: 14px; }
  .mk-wa-label { font-size: 10px; font-weight: 700; color: var(--text-mute); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
  .mk-wa-phone {
    display: flex; align-items: center; gap: 8px;
    border: 1.5px solid #008069; border-radius: 8px;
    padding: 8px 10px; font-size: 12.5px; color: var(--text); font-weight: 600;
    background: #fff;
    margin-bottom: 12px;
  }
  .mk-wa-flag { background: #f0f4f1; padding: 2px 7px; border-radius: 5px; font-size: 11px; font-weight: 700; }
  .mk-wa-otp { display: flex; gap: 5px; margin-bottom: 12px; }
  .mk-wa-otp span {
    flex: 1; aspect-ratio: 1; max-width: 28px;
    border: 1.5px solid var(--border-strong); border-radius: 6px;
    display: grid; place-items: center;
    font-family: var(--mono); font-weight: 700; font-size: 13px; color: var(--text);
  }
  .mk-wa-otp span.filled { border-color: #008069; background: #e6faec; color: #008069; }
  .mk-wa-status {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 11.5px; font-weight: 700; color: #008069;
  }
  .mk-wa-status::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #25D366; box-shadow: 0 0 8px #25D366; }

  /* Step 3 — Live bot conversation */
  .mk-chat {
    background:
      radial-gradient(circle at 30% 0%, rgba(37,211,102,0.06), transparent 50%),
      #ece5dd;
    padding: 14px 12px;
    display: flex; flex-direction: column; gap: 7px;
    height: 100%; min-height: 220px;
  }
  .mk-bub {
    max-width: 80%; padding: 6px 9px 4px;
    border-radius: 8px; font-size: 12px; line-height: 1.35;
    position: relative; box-shadow: 0 1px 1px rgba(15,30,25,0.08);
    color: #0c2419;
  }
  .mk-bub.in { background: #fff; border-top-left-radius: 0; align-self: flex-start; }
  .mk-bub.out { background: #d9fdd3; border-top-right-radius: 0; align-self: flex-end; }
  .mk-bub .mk-meta { display: inline-flex; align-items: center; gap: 4px; font-size: 9px; color: rgba(12,36,25,0.45); float: right; margin: 4px -2px -2px 8px; }
  .mk-bot-pill {
    align-self: flex-end;
    display: inline-flex; align-items: center; gap: 5px;
    background: rgba(37,211,102,0.18); color: #0e7a3a;
    padding: 3px 8px; border-radius: 999px;
    font-size: 9.5px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  }
  .mk-bot-pill::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: #25D366; box-shadow: 0 0 6px #25D366; }

  /* ───────────── Templates showcase (wide) ───────────── */
  .tpl-wide {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 48px;
    background: rgba(255,255,255,0.75);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 48px;
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 2px rgba(15,30,25,0.04), 0 30px 60px -30px rgba(15,30,25,0.12);
    align-items: center;
  }
  @media (max-width: 900px) {
    .tpl-wide { grid-template-columns: 1fr; gap: 32px; padding: 28px; }
  }
  .tpl-wide-left { padding: 8px 0; }
  .tpl-wide-title { font-family: var(--display); font-weight: 700; font-size: 28px; letter-spacing: -0.02em; margin: 0 0 12px; }
  .tpl-wide-desc { color: var(--text-dim); font-size: 16px; line-height: 1.55; margin: 0 0 22px; text-wrap: pretty; }
  .tpl-wide-list { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 10px; }
  .tpl-wide-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--text); }
  .tpl-wide-list svg { color: var(--green); flex: none; margin-top: 3px; }
  .tpl-wide-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin: 0 0 28px; padding: 18px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .tpl-wide-stat { text-align: left; }
  .tpl-wide-stat + .tpl-wide-stat { border-left: 1px solid var(--border); padding-left: 18px; }
  .tpl-wide-stat-num { font-family: var(--display); font-weight: 800; font-size: 24px; letter-spacing: -0.02em; color: var(--text); }
  .tpl-wide-stat-lbl { font-size: 11.5px; color: var(--text-mute); text-transform: uppercase; letter-spacing: 0.04em; margin-top: 2px; }

  /* Right side chat preview */
  .tpl-chat {
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--border-strong);
    box-shadow: 0 30px 70px -20px rgba(15,30,25,0.18);
  }
  .tpl-chat-head {
    background: linear-gradient(180deg, #008069, #00604f);
    padding: 10px 14px;
    display: flex; align-items: center; gap: 10px;
    color: #fff;
  }
  .tpl-chat-head .dc-avatar { width: 32px; height: 32px; }
  .tpl-chat-body {
    background-color: #ece5dd;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40'><circle cx='5' cy='5' r='0.6' fill='%23000' opacity='0.04'/><circle cx='25' cy='15' r='0.6' fill='%23000' opacity='0.04'/><circle cx='15' cy='30' r='0.6' fill='%23000' opacity='0.04'/></svg>");
    padding: 16px 14px;
    display: flex; flex-direction: column; gap: 8px;
    min-height: 360px;
  }

  /* ───────────── WhatsApp Flows section ───────────── */
  .flows-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  @media (max-width: 980px) { .flows-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; } }

  .fl-phone {
    position: relative;
    background:
      linear-gradient(135deg,
        #7a838d 0%,
        #4a5057 10%,
        #2c3034 22%,
        #1a1d20 40%,
        #1a1d20 60%,
        #2c3034 78%,
        #4a5057 90%,
        #7a838d 100%);
    border-radius: 48px;
    padding: 10px;
    box-shadow:
      inset 0 0 0 0.5px rgba(255,255,255,0.06),
      inset 0 1.5px 0 rgba(255,255,255,0.18),
      inset 0 -1.5px 0 rgba(0,0,0,0.6),
      0 0 0 1px rgba(0,0,0,0.55),
      0 28px 60px -20px rgba(0,0,0,0.4),
      0 50px 90px -30px rgba(15,30,25,0.25);
  }
  /* Side buttons */
  .fl-side {
    position: absolute;
    background: linear-gradient(90deg, #1a1d20 0%, #6a7178 45%, #7a838d 55%, #1a1d20 100%);
    border-radius: 1px;
    width: 3px;
    z-index: 0;
  }
  .fl-side.left { left: -2px; background: linear-gradient(-90deg, #1a1d20 0%, #6a7178 45%, #7a838d 55%, #1a1d20 100%); }
  .fl-side.action { top: 13%; height: 4.5%; background: linear-gradient(-90deg, #b35a1f 0%, #d97726 50%, #f5a242 100%); border-radius: 1.5px; }
  .fl-side.vol-up   { top: 21%; height: 8.5%; }
  .fl-side.vol-down { top: 32%; height: 8.5%; }
  .fl-side.power    { right: -2px; top: 23%; height: 14%; }
  /* Dynamic island */
  .fl-island {
    position: absolute;
    top: 22px; left: 50%; transform: translateX(-50%);
    width: 96px; height: 28px;
    background: #000;
    border-radius: 999px;
    z-index: 10;
    box-shadow: inset 0 1px 1px rgba(255,255,255,0.06);
  }
  .fl-island::after {
    content: "";
    position: absolute;
    right: 10px; top: 50%; transform: translateY(-50%);
    width: 7px; height: 7px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #4a8fd6, #1a3a5c 60%, #0a1a2c);
    box-shadow: 0 0 4px rgba(74,143,214,0.5);
  }
  .fl-screen {
    background: #ffffff;
    border-radius: 38px;
    overflow: hidden;
    aspect-ratio: 9/19.5;
    display: flex; flex-direction: column;
    position: relative;
  }
  .fl-statusbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 18px 28px 14px;
    font-size: 13px; font-weight: 700; color: #0c1310;
    position: relative;
  }
  .fl-statusbar > span:first-child { padding-left: 6px; }
  .fl-statusbar-right { display: flex; gap: 6px; align-items: center; padding-right: 6px; }
  .fl-statusbar-right svg { width: 14px; height: 14px; }
  .fl-header {
    background: linear-gradient(180deg, #008069, #00604f);
    color: #fff; padding: 10px 14px;
    display: flex; align-items: center; gap: 10px;
  }
  .fl-header svg { width: 18px; height: 18px; flex: none; }
  .fl-header-title { font-family: var(--display); font-weight: 700; font-size: 14px; flex: 1; letter-spacing: -0.01em; }
  .fl-header-x { font-size: 18px; opacity: 0.8; line-height: 1; }
  .fl-progress { height: 3px; background: rgba(0,0,0,0.08); position: relative; }
  .fl-progress::before { content: ""; position: absolute; left: 0; top: 0; height: 100%; width: var(--p, 60%); background: linear-gradient(90deg, #25D366, #128C7E); }
  .fl-body { padding: 16px 16px 14px; flex: 1; display: flex; flex-direction: column; }
  .fl-step { font-size: 10.5px; font-weight: 700; color: var(--text-mute); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 6px; }
  .fl-q { font-family: var(--display); font-weight: 700; font-size: 17px; line-height: 1.25; letter-spacing: -0.015em; color: var(--text); margin-bottom: 4px; }
  .fl-hint { font-size: 12px; color: var(--text-mute); margin-bottom: 14px; line-height: 1.4; }

  /* Date picker style */
  .fl-dates { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; margin-bottom: 16px; }
  .fl-date {
    border: 1.5px solid var(--border-strong); border-radius: 10px;
    padding: 8px 4px; text-align: center;
    display: flex; flex-direction: column; gap: 2px;
    background: #fff;
  }
  .fl-date-dow { font-size: 9.5px; color: var(--text-mute); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
  .fl-date-d { font-family: var(--display); font-weight: 700; font-size: 16px; color: var(--text); }
  .fl-date.on { background: #008069; border-color: #008069; }
  .fl-date.on .fl-date-dow, .fl-date.on .fl-date-d { color: #fff; }
  .fl-times { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-bottom: auto; }
  .fl-time { border: 1.5px solid var(--border); border-radius: 8px; padding: 7px; text-align: center; font-size: 12px; font-weight: 600; color: var(--text); }
  .fl-time.on { background: #e6faec; border-color: #008069; color: #008069; }
  .fl-time.off { color: var(--text-mute); border-style: dashed; }

  /* Radio choice style */
  .fl-choices { display: flex; flex-direction: column; gap: 8px; margin-bottom: auto; }
  .fl-choice {
    display: flex; align-items: center; gap: 10px;
    border: 1.5px solid var(--border-strong); border-radius: 10px;
    padding: 11px 12px; font-size: 12.5px; font-weight: 600; color: var(--text);
  }
  .fl-choice .fl-dot { width: 16px; height: 16px; border-radius: 50%; border: 2px solid var(--border-strong); flex: none; position: relative; }
  .fl-choice.on { border-color: #008069; background: #e6faec; }
  .fl-choice.on .fl-dot { border-color: #008069; }
  .fl-choice.on .fl-dot::after { content: ""; position: absolute; inset: 2px; background: #008069; border-radius: 50%; }
  .fl-choice-meta { margin-left: auto; font-size: 11px; color: var(--text-mute); font-weight: 500; }

  /* NPS rating style */
  .fl-rating { display: flex; justify-content: space-between; padding: 6px 0 4px; margin-bottom: 12px; }
  .fl-emoji {
    width: 44px; height: 44px; border-radius: 50%;
    border: 1.5px solid var(--border); display: grid; place-items: center;
    font-size: 22px; background: #fff;
  }
  .fl-emoji.on { border-color: #008069; background: #e6faec; transform: scale(1.08); box-shadow: 0 6px 14px -4px rgba(37,211,102,0.4); }
  .fl-textarea {
    border: 1.5px solid var(--border); border-radius: 10px;
    padding: 10px; min-height: 80px;
    font-size: 12px; color: var(--text-dim); line-height: 1.45;
    background: #fafbfc;
    margin-bottom: auto;
  }
  .fl-textarea .fl-cursor { display: inline-block; width: 2px; height: 13px; background: #008069; vertical-align: -2px; animation: caret 1s steps(2) infinite; margin-left: 1px; }
  @keyframes caret { 50% { opacity: 0; } }

  .fl-cta {
    background: linear-gradient(180deg, #25D366, #1aaf52); color: #fff;
    text-align: center; padding: 11px; border-radius: 999px;
    font-weight: 700; font-size: 13px;
    box-shadow: 0 8px 20px -6px rgba(37,211,102,0.45);
    margin-top: 12px;
  }

  .fl-label {
    text-align: center; margin-top: 18px;
    font-family: var(--display); font-weight: 700; font-size: 15px; color: var(--text);
    letter-spacing: -0.01em;
  }
  .fl-label-sub {
    text-align: center; font-size: 13px; color: var(--text-dim); margin-top: 4px; text-wrap: pretty;
  }
  .templates {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  }
  @media (max-width: 1100px) { .templates { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 560px) { .templates { grid-template-columns: 1fr; } }
  .tpl {
    background: rgba(255,255,255,0.75);
    border: 1px solid var(--border); border-radius: 18px; padding: 18px;
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 2px rgba(15,30,25,0.04);
  }
  .tpl-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
  .tpl-name { font-family: var(--display); font-weight: 700; font-size: 14.5px; letter-spacing: -0.01em; }
  .tpl-tag { font-size: 10px; padding: 3px 7px; border-radius: 5px; background: var(--green-bubble); color: #0e7a3a; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
  .tpl-canvas {
    background:
      radial-gradient(circle at 20% 0%, rgba(37,211,102,0.08), transparent 50%),
      #ece5dd;
    background-image:
      radial-gradient(circle at 20% 0%, rgba(37,211,102,0.06), transparent 50%),
      url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40'><circle cx='5' cy='5' r='0.6' fill='%23000' opacity='0.04'/><circle cx='25' cy='15' r='0.6' fill='%23000' opacity='0.04'/><circle cx='15' cy='30' r='0.6' fill='%23000' opacity='0.04'/></svg>");
    background-color: #ece5dd;
    border-radius: 12px; padding: 14px;
    min-height: 380px;
    border: 1px solid var(--border);
    display: flex; flex-direction: column; gap: 8px;
  }

  /* Generic WhatsApp-style bubble inside template canvas */
  .tpl-bubble {
    background: #ffffff; border-radius: 8px;
    border-top-left-radius: 0;
    padding: 7px 9px 5px; align-self: flex-start;
    max-width: 95%; font-size: 12.5px; line-height: 1.4;
    color: #0c2419;
    box-shadow: 0 1px 1px rgba(15,30,25,0.08);
  }
  .tpl-bubble.out { background: #d9fdd3; border-top-left-radius: 8px; border-top-right-radius: 0; align-self: flex-end; }
  .tpl-bubble b { font-weight: 700; }
  .tpl-meta {
    display: inline-flex; align-items: center; gap: 3px;
    font-size: 9px; color: rgba(12,36,25,0.45);
    float: right; margin: 4px -2px -2px 8px;
  }
  .tpl-meta svg { vertical-align: -1px; }

  /* Carousel — vertical product cards in horizontal scroll */
  .tpl-carousel {
    display: flex; gap: 6px; overflow: hidden;
    padding: 2px 0; align-self: stretch;
  }
  .tpl-card {
    flex: 0 0 105px;
    background: #ffffff; border: 1px solid var(--border);
    border-radius: 8px; overflow: hidden;
    box-shadow: 0 1px 2px rgba(15,30,25,0.08);
  }
  .tpl-card-img {
    height: 70px;
    background:
      linear-gradient(135deg, #25D366, #128C7E),
      repeating-linear-gradient(45deg, rgba(255,255,255,0.18) 0 6px, transparent 6px 12px);
    position: relative;
    display: grid; place-items: center;
  }
  .tpl-card-img.b { background: linear-gradient(135deg, #f59e0b, #d97706); }
  .tpl-card-img.c { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }
  .tpl-card-img svg { width: 28px; height: 28px; opacity: 0.85; color: #fff; }
  .tpl-card-body { padding: 6px 8px; }
  .tpl-card-title { font-size: 10.5px; font-weight: 700; color: #0c1310; }
  .tpl-card-price { font-size: 10px; color: #0e7a3a; margin-top: 1px; font-weight: 700; }
  .tpl-card-btn {
    text-align: center; font-size: 10px; font-weight: 700;
    color: #128C7E; padding: 5px; border-top: 1px solid var(--border);
  }

  /* Button message — quick replies / list buttons attached below bubble */
  .tpl-btns { display: flex; flex-direction: column; gap: 1px; align-self: flex-start; max-width: 95%; width: 100%; }
  .tpl-btn {
    background: #ffffff; border: none;
    border-top: 1px solid #efeae2;
    padding: 9px 10px;
    text-align: center; font-size: 12px; font-weight: 600; color: #128C7E;
    display: flex; align-items: center; justify-content: center; gap: 6px;
  }
  .tpl-btn:first-child { border-top: none; border-top-left-radius: 0; border-top-right-radius: 8px; }
  .tpl-btn:last-child { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; }
  .tpl-btn svg { width: 13px; height: 13px; }
  .tpl-bubble.has-btns { border-bottom-left-radius: 0; padding-bottom: 5px; }

  /* Link preview message */
  .tpl-link {
    background: #ffffff; border-radius: 8px; border-top-left-radius: 0;
    overflow: hidden; align-self: flex-start; max-width: 95%;
    box-shadow: 0 1px 1px rgba(15,30,25,0.08);
    border-left: 3px solid #25D366;
  }
  .tpl-link-img {
    height: 110px;
    background:
      linear-gradient(135deg, #1f2937 0%, #111827 100%);
    position: relative; overflow: hidden;
    display: grid; place-items: center;
  }
  .tpl-link-img::before {
    content: ""; position: absolute; inset: 0;
    background:
      radial-gradient(circle at 30% 30%, rgba(37,211,102,0.35), transparent 50%),
      radial-gradient(circle at 80% 70%, rgba(139,92,246,0.25), transparent 50%);
  }
  .tpl-link-img-fg { position: relative; font-family: var(--display); font-weight: 800; font-size: 18px; color: #fff; letter-spacing: -0.02em; text-shadow: 0 2px 10px rgba(0,0,0,0.4); }
  .tpl-link-img-fg span { color: #25D366; }
  .tpl-link-body { padding: 8px 10px; }
  .tpl-link-title { font-size: 11.5px; font-weight: 700; color: #0c1310; line-height: 1.3; }
  .tpl-link-desc { font-size: 10.5px; color: var(--text-dim); line-height: 1.35; margin-top: 2px; }
  .tpl-link-url { font-size: 10px; color: var(--text-mute); margin-top: 4px; text-transform: lowercase; }

  /* Flow template — "Open form" CTA inside bubble */
  .tpl-flow-cta {
    margin-top: 8px;
    border-top: 1px solid #efeae2;
    padding: 8px 0 2px;
    text-align: center; font-size: 12px; font-weight: 700;
    color: #128C7E;
    display: flex; align-items: center; justify-content: center; gap: 6px;
  }
  .tpl-flow-cta svg { width: 13px; height: 13px; }

  /* Flow form (mini WhatsApp Flow sheet) */
  .tpl-form {
    background: #ffffff; border: 1px solid var(--border);
    border-radius: 10px; padding: 12px; align-self: stretch;
    box-shadow: 0 4px 12px rgba(15,30,25,0.08);
    margin-top: 4px;
  }
  .tpl-form-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
  .tpl-form h4 { margin: 0; font-size: 12.5px; font-family: var(--display); font-weight: 700; color: var(--text); }
  .tpl-form-close { font-size: 14px; color: var(--text-mute); line-height: 1; }
  .tpl-field {
    background: #f7faf8; border: 1px solid var(--border);
    border-radius: 7px; padding: 7px 9px; margin-bottom: 6px;
    font-size: 10.5px; color: var(--text-mute);
    display: flex; justify-content: space-between; align-items: center;
  }
  .tpl-field b { color: var(--text); font-weight: 600; font-size: 11px; }
  .tpl-radio { display: flex; gap: 4px; margin-bottom: 8px; flex-wrap: wrap; }
  .tpl-radio span {
    font-size: 10px; padding: 4px 8px; border-radius: 999px;
    border: 1px solid var(--border); color: var(--text-dim); background: #ffffff;
  }
  .tpl-radio span.on { background: #25D366; color: #ffffff; border-color: #25D366; }
  .tpl-submit {
    background: #25D366; color: #ffffff; font-weight: 700;
    padding: 8px; border-radius: 7px; text-align: center; font-size: 11.5px;
  }

  /* ───────────── Pricing ───────────── */
  .pricing {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  }
  @media (max-width: 940px) { .pricing { grid-template-columns: 1fr; } }
  .price {
    position: relative;
    background: rgba(255,255,255,0.75);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 30px 26px;
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 2px rgba(15,30,25,0.03);
  }
  .price.featured {
    border-color: rgba(37,211,102,0.5);
    box-shadow: 0 0 0 1px rgba(37,211,102,0.2), 0 30px 60px -20px rgba(37,211,102,0.4);
    background:
      radial-gradient(closest-side at 50% 0%, rgba(37,211,102,0.14), transparent 70%),
      #ffffff;
  }
  .price-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--green); color: #ffffff;
    font-size: 11px; font-weight: 700; padding: 5px 12px; border-radius: 999px;
    letter-spacing: 0.04em; text-transform: uppercase;
    box-shadow: 0 6px 18px rgba(37,211,102,0.5);
  }
  .price-name { font-family: var(--display); font-weight: 700; font-size: 18px; }
  .price-desc { color: var(--text-mute); font-size: 13px; margin-top: 4px; }
  .price-cost { margin: 22px 0 6px; display: flex; align-items: baseline; gap: 6px; }
  .price-cost .num { font-family: var(--display); font-weight: 800; font-size: 48px; letter-spacing: -0.03em; }
  .price-cost .per { color: var(--text-mute); font-size: 13px; }
  .price-meta { color: var(--text-mute); font-size: 12px; margin-bottom: 22px; }
  .price ul { list-style: none; padding: 0; margin: 0 0 26px; display: flex; flex-direction: column; gap: 10px; }
  .price li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--text-dim); }
  .price li svg { flex: none; color: var(--green); margin-top: 3px; }
  .price .btn { width: 100%; }

  /* ───────────── Testimonials ───────────── */
  .quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
  @media (max-width: 940px) { .quotes { grid-template-columns: 1fr; } }
  .quote {
    background: rgba(255,255,255,0.8); border: 1px solid var(--border);
    border-radius: 16px; padding: 26px;
    backdrop-filter: blur(20px);
    display: flex; flex-direction: column; gap: 18px;
    box-shadow: 0 1px 2px rgba(15,30,25,0.03);
  }
  .quote-mark { color: var(--green); font-family: var(--display); font-weight: 800; font-size: 36px; line-height: 0.6; height: 18px; }
  .quote-body { font-size: 16px; line-height: 1.55; color: var(--text); text-wrap: pretty; }
  .quote-who { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--border); }
  .quote-avatar {
    width: 38px; height: 38px; border-radius: 50%;
    display: grid; place-items: center; color: #ffffff; font-weight: 700; font-size: 14px;
    font-family: var(--display);
  }
  .quote-name { font-size: 14px; font-weight: 600; }
  .quote-role { font-size: 12px; color: var(--text-mute); }
  .quote-stat {
    background: var(--green-bubble); color: #0e7a3a;
    padding: 6px 10px; border-radius: 8px;
    font-size: 11px; font-weight: 700;
    margin-left: auto; align-self: center;
    letter-spacing: 0.02em;
  }

  /* ───────────── CTA banner ───────────── */
  .cta-banner {
    position: relative;
    background:
      radial-gradient(ellipse at 0% 0%, rgba(37,211,102,0.35), transparent 60%),
      radial-gradient(ellipse at 100% 100%, rgba(37,211,102,0.22), transparent 60%),
      linear-gradient(180deg, #0c1310, #081a12);
    border: 1px solid rgba(37,211,102,0.4);
    border-radius: 24px;
    padding: 64px 48px;
    overflow: hidden;
    text-align: center;
    color: #ffffff;
  }
  .cta-banner::before, .cta-banner::after {
    content: ""; position: absolute; border-radius: 50%;
    background: radial-gradient(closest-side, rgba(37,211,102,0.25), transparent);
    filter: blur(20px);
  }
  .cta-banner::before { width: 400px; height: 400px; top: -180px; left: -120px; }
  .cta-banner::after { width: 350px; height: 350px; bottom: -180px; right: -100px; }
  .cta-banner h2 {
    position: relative;
    font-family: var(--display); font-weight: 800;
    font-size: clamp(30px, 4.5vw, 52px); letter-spacing: -0.03em; line-height: 1.05;
    margin: 0 0 14px;
    color: #ffffff;
  }
  .cta-banner p { position: relative; color: rgba(255,255,255,0.7); font-size: 17px; max-width: 540px; margin: 0 auto 30px; }
  .cta-banner .cta-actions { position: relative; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

  /* Decorative bubbles in CTA */
  .cta-bubble {
    position: absolute; padding: 9px 13px; border-radius: 12px;
    font-size: 12px; backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12); pointer-events: none;
    display: none;
  }
  @media (min-width: 900px) { .cta-bubble { display: block; } }
  .cta-bubble.b1 { top: 36px; left: 40px; background: rgba(255,255,255,0.08); color: #ffffff; transform: rotate(-4deg); }
  .cta-bubble.b2 { bottom: 32px; right: 40px; background: #dcf8c6; color: #0c2419; border-color: rgba(37,211,102,0.4); transform: rotate(3deg); }

  /* ───────────── Footer (landing) ───────────── */
  footer:not(.legal-footer) {
    border-top: 1px solid var(--border);
    padding: 72px 0 40px;
    background: linear-gradient(180deg, transparent, rgba(15,30,25,0.03));
  }
  .ft-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 56px;
  }
  @media (max-width: 820px) { .ft-grid { grid-template-columns: 1fr 1fr; } }
  .ft-brand p { color: var(--text-mute); font-size: 14px; line-height: 1.6; margin: 16px 0 20px; max-width: 280px; }
  .ft-social { display: flex; gap: 10px; }
  .ft-social a {
    width: 36px; height: 36px; border-radius: 9px;
    background: #ffffff; border: 1px solid var(--border);
    display: grid; place-items: center; color: var(--text-dim);
    transition: all 160ms ease;
  }
  .ft-social a:hover { color: var(--green); border-color: rgba(37,211,102,0.4); background: var(--green-bubble); }
  .ft-col h4 {
    font-family: var(--display); font-size: 13px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--text); margin: 0 0 18px;
  }
  .ft-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
  .ft-col a { color: var(--text-dim); font-size: 14px; }
  .ft-col a:hover { color: var(--green); }
  .ft-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 28px; border-top: 1px solid var(--border);
    color: var(--text-mute); font-size: 13px;
  }
  .ft-bottom-right { display: flex; gap: 22px; }

  /* Mobile nav adjustments */
  @media (max-width: 760px) {
    .nav-links { display: none; }
    .nav-cta .btn-ghost { display: none; }
    .sec { padding: 80px 0; }
    .hero { padding: 60px 0 50px; }
    .dash { grid-template-columns: 1fr; min-height: auto; }
    .dash-side, .dash-chat { display: none; }
    .kpis { grid-template-columns: 1fr 1fr; }
  }

  /* ───────────── Animations ───────────── */
  @keyframes reveal-up {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  [data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    will-change: opacity, transform;
  }
  [data-reveal].rv-in {
    animation: reveal-up 800ms cubic-bezier(0.16, 1, 0.3, 1) var(--delay, 0ms) both;
  }
  @media (prefers-reduced-motion: reduce) {
    [data-reveal], [data-reveal].rv-in { opacity: 1; transform: none; animation: none; }
  }

  /* Float for floating hero bubbles */
  @keyframes hero-float {
    0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
    50% { transform: translateY(-9px) rotate(var(--rot, 0deg)); }
  }
  .float-bubble.fb-1 { --rot: -3deg; animation: hero-float 5.4s ease-in-out infinite; }
  .float-bubble.fb-2 { --rot: 2deg; animation: hero-float 6.2s ease-in-out infinite 1.6s; }
  .float-bubble.fb-3 { --rot: -1.5deg; animation: hero-float 5.8s ease-in-out infinite 3.2s; }

  /* Pulse for live status dots */
  @keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
    70% { box-shadow: 0 0 0 7px rgba(37,211,102,0); }
  }
  .dc-status::before, .mk-wa-status::before, .mk-bot-pill::before, .fl-dot-live {
    animation: pulse-dot 1.9s ease-out infinite;
  }

  /* Subtle CTA pulse */
  @keyframes cta-pulse {
    0%, 100% { box-shadow: 0 0 0 1px rgba(255,255,255,0.4) inset, 0 -1px 0 rgba(0,0,0,0.15) inset, 0 10px 26px rgba(37,211,102,0.35); }
    50% { box-shadow: 0 0 0 1px rgba(255,255,255,0.4) inset, 0 -1px 0 rgba(0,0,0,0.15) inset, 0 16px 40px rgba(37,211,102,0.55); }
  }
  .hero-actions .btn-primary { animation: cta-pulse 2.6s ease-in-out infinite; }

  /* Bubble entry & typing */
  @keyframes bub-in {
    0% { opacity: 0; transform: translateY(8px) scale(0.94); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
  }
  .bubble-anim, .typing-anim { animation: bub-in 320ms cubic-bezier(0.34, 1.56, 0.64, 1) both; }

  /* Flow cycling transitions */
  .fl-date, .fl-time, .fl-choice, .fl-emoji, .fl-progress::before {
    transition: background 320ms cubic-bezier(0.4, 0, 0.2, 1),
                border-color 320ms cubic-bezier(0.4, 0, 0.2, 1),
                color 320ms cubic-bezier(0.4, 0, 0.2, 1),
                transform 320ms cubic-bezier(0.4, 0, 0.2, 1),
                width 600ms cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 320ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  .fl-progress::before { transition: width 600ms cubic-bezier(0.4, 0, 0.2, 1); }
  .fl-emoji.on { transform: scale(1.12) translateY(-2px); }

  /* Number counter doesn't need CSS but reserve consistent width */
  .kpi-value, .tpl-wide-stat-num { font-variant-numeric: tabular-nums; }

  /* Chart line drawing */
  @keyframes draw-line {
    from { stroke-dashoffset: var(--len, 1400); }
    to { stroke-dashoffset: 0; }
  }
  .chart-svg path[stroke] {
    stroke-dasharray: var(--len, 1400);
    stroke-dashoffset: var(--len, 1400);
    animation: draw-line 2s cubic-bezier(0.65, 0, 0.35, 1) 0.4s forwards;
  }
  .chart-svg path[fill^="url"] {
    opacity: 0;
    animation: fade-in 1.4s ease 1.4s forwards;
  }
  @keyframes fade-in { to { opacity: 1; } }

  /* ───────────── Legal pages ───────────── */
  .legal-page { min-height: 100vh; display: flex; flex-direction: column; }
  .legal-main { flex: 1; padding: 48px 0 80px; }
  .legal-container { max-width: 820px; margin: 0 auto; width: 100%; }
  .legal-header { margin-bottom: 40px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
  .legal-eyebrow {
    font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--green); margin: 0 0 10px;
  }
  .legal-title {
    font-family: var(--display); font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; margin: 0 0 12px;
  }
  .legal-subtitle { font-size: 1.05rem; color: var(--text-dim); line-height: 1.6; margin: 0 0 14px; max-width: 62ch; }
  .legal-meta { font-size: 13px; color: var(--text-mute); margin: 0; }
  .legal-body { font-size: 15px; line-height: 1.75; color: var(--text-dim); }
  .legal-body section { margin-bottom: 36px; scroll-margin-top: 88px; }
  .legal-body h2 {
    font-family: var(--display); font-size: 1.35rem; font-weight: 700;
    color: var(--text); letter-spacing: -0.02em; margin: 0 0 14px;
  }
  .legal-body h3 {
    font-family: var(--display); font-size: 1.05rem; font-weight: 700;
    color: var(--text); margin: 22px 0 10px;
  }
  .legal-body h4 { font-size: 0.95rem; font-weight: 700; color: var(--text); margin: 18px 0 8px; }
  .legal-body p { margin: 0 0 14px; }
  .legal-body ul, .legal-body ol { margin: 0 0 14px; padding-left: 1.35rem; }
  .legal-body li { margin-bottom: 6px; }
  .legal-body a { color: #0e7a3a; text-decoration: underline; text-underline-offset: 2px; }
  .legal-body a:hover { color: var(--green); }
  .legal-body code {
    font-family: var(--mono); font-size: 0.85em;
    background: var(--green-bubble); padding: 2px 6px; border-radius: 4px; color: #0e5c32;
  }
  .legal-toc {
    background: rgba(255,255,255,0.75); border: 1px solid var(--border);
    border-radius: 16px; padding: 20px 22px; margin-bottom: 36px;
    backdrop-filter: blur(12px);
  }
  .legal-toc h2 { font-size: 0.95rem; margin: 0 0 12px; color: var(--text); }
  .legal-toc ol { margin: 0; padding-left: 1.2rem; -moz-columns: 2; columns: 2; -moz-column-gap: 24px; column-gap: 24px; }
  .legal-toc li { -moz-column-break-inside: avoid; break-inside: avoid; font-size: 14px; margin-bottom: 4px; }
  .legal-highlight {
    background: linear-gradient(180deg, rgba(37,211,102,0.08), rgba(37,211,102,0.02));
    border: 1px solid rgba(37,211,102,0.22); border-radius: 16px;
    padding: 24px 26px; margin-bottom: 36px;
  }
  .legal-footer {
    margin-top: 48px;
    padding: 24px 0 0;
    border-top: 1px solid var(--border);
    background: none;
    font-size: 14px;
    color: var(--text-mute);
    text-align: center;
  }
  .legal-footer p { margin: 0 0 8px; }
  .legal-footer a { color: #0e7a3a; text-decoration: underline; }
  .legal-footer a:hover { color: var(--green); }
  @media (max-width: 640px) {
    .legal-main { padding: 32px 0 56px; }
    .legal-toc ol { -moz-columns: 1; columns: 1; }
    .legal-highlight { padding: 18px 16px; }
  }

