﻿
    /* Esconde body até fontes carregarem (evita FOUT) */
    html:not(.fonts-loaded) body { visibility: hidden; }

    /* ========== RESET ========== */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; font-size: 16px; }

    :root {
      --bg:            #07070e;
      --bg-1:          #0d0d1a;
      --bg-2:          #111121;
      --bg-3:          #16162a;
      --violet:        #7c3aed;
      --violet-bright: #8b5cf6;
      --violet-light:  #c4b5fd;
      --violet-glow:   rgba(124,58,237,0.35);
      --violet-subtle: rgba(124,58,237,0.1);
      --green:         #10b981;
      --green-light:   #34d399;
      --green-glow:    rgba(16,185,129,0.3);
      --green-subtle:  rgba(16,185,129,0.1);
      --red:           #f43f5e;
      --amber:         #f59e0b;
      --text:          #eeeeff;
      --text-muted:    #8888aa;
      --text-dim:      #4a4a6a;
      --border:        rgba(124,58,237,0.18);
      --border-sub:    rgba(255,255,255,0.06);
      --glass:         rgba(255,255,255,0.03);
      --glass-b:       rgba(255,255,255,0.07);
      --r:             16px;
      --r-sm:          8px;
      --r-lg:          24px;
    }

    body {
      font-family: 'Inter', -apple-system, sans-serif;
      background: var(--bg);
      color: var(--text);
      overflow-x: hidden;
      line-height: 1.65;
    }

    /* dot grid */
    body::before {
      content: '';
      position: fixed; inset: 0;
      background-image: radial-gradient(circle, rgba(124,58,237,0.1) 1px, transparent 1px);
      background-size: 44px 44px;
      pointer-events: none; z-index: 0;
    }
    /* ambient glow top-left */
    body::after {
      content: '';
      position: fixed; top: -40%; left: -20%;
      width: 80%; height: 80%;
      background: radial-gradient(ellipse, rgba(124,58,237,0.07) 0%, transparent 70%);
      pointer-events: none; z-index: 0;
    }

    section, nav, footer, .logos-bar { position: relative; z-index: 1; }

    .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

    /* ========== TYPOGRAPHY ========== */
    .serif { font-family: 'DM Serif Display', Georgia, serif; }
    .mono  { font-family: 'JetBrains Mono', monospace; }

    .tag {
      display: inline-flex; align-items: center; gap: 7px;
      font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--violet-bright);
      background: var(--violet-subtle);
      border: 1px solid rgba(124,58,237,0.25);
      padding: 5px 14px; border-radius: 100px; margin-bottom: 20px;
    }
    .tag-green {
      color: var(--green-light);
      background: var(--green-subtle);
      border-color: rgba(16,185,129,0.25);
    }

    /* ========== NAVBAR ========== */
    nav {
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 1000; padding: 18px 0;
      transition: all 0.35s ease;
    }
    nav.scrolled {
      background: rgba(7,7,14,0.88);
      backdrop-filter: blur(24px) saturate(180%);
      border-bottom: 1px solid var(--border-sub);
      padding: 12px 0;
    }
    .nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }

    .logo {
      display: flex; align-items: center; gap: 10px;
      text-decoration: none; color: var(--text);
      font-weight: 800; font-size: 19px; letter-spacing: -0.03em;
    }
    .logo-mark {
      width: 34px; height: 34px;
      background: linear-gradient(135deg, var(--violet), #6d28d9);
      border-radius: 9px;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 0 16px var(--violet-glow);
    }

    .nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
    .nav-links a {
      color: var(--text-muted); text-decoration: none;
      font-size: 14px; font-weight: 500; transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--text); }

    .nav-end { display: flex; align-items: center; gap: 10px; }

    .btn {
      display: inline-flex; align-items: center; gap: 7px;
      padding: 9px 18px; border-radius: var(--r-sm);
      font-size: 14px; font-weight: 600; text-decoration: none;
      cursor: pointer; border: none; transition: all 0.22s;
      font-family: 'Inter', sans-serif;
    }
    .btn-ghost {
      background: transparent; color: var(--text-muted);
      border: 1px solid var(--border-sub);
    }
    .btn-ghost:hover { color: var(--text); border-color: var(--border); background: var(--glass); }
    .btn-violet {
      background: linear-gradient(135deg, var(--violet), #6d28d9);
      color: white; box-shadow: 0 0 18px var(--violet-glow);
    }
    .btn-violet:hover { transform: translateY(-1px); box-shadow: 0 0 32px rgba(124,58,237,0.55); }
    .btn-outline-violet {
      background: transparent; color: var(--violet-light);
      border: 1px solid rgba(124,58,237,0.4);
    }
    .btn-outline-violet:hover { background: var(--violet-subtle); border-color: var(--violet); }

    .nav-mobile { display: none; background: none; border: none; color: var(--text); cursor: pointer; }

    /* ========== HERO ========== */
    .hero {
      min-height: 100vh; display: flex; align-items: center;
      padding: 110px 0 80px;
    }
    .hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }

    .hero-live {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--green-subtle); border: 1px solid rgba(16,185,129,0.25);
      color: var(--green-light); font-size: 12px; font-weight: 600;
      padding: 5px 14px; border-radius: 100px; margin-bottom: 26px; letter-spacing: 0.03em;
    }
    .live-dot {
      width: 6px; height: 6px; background: var(--green);
      border-radius: 50%; animation: pulse 2s ease-in-out infinite;
    }
    @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.75)} }

    .hero-h1 {
      font-family: 'DM Serif Display', Georgia, serif;
      font-size: clamp(32px, 4.2vw, 54px);
      line-height: 1.05; letter-spacing: -0.03em;
      color: var(--text); margin-bottom: 26px;
    }
    .hero-h1 em { font-style: italic; color: var(--violet-light); }

    .rotator {
      display: inline-block;
      color: var(--green-light);
      font-style: normal;
      font-size: clamp(22px, 3.5vw, 44px);
      white-space: nowrap;
      opacity: 1;
      transform: translateY(0);
      transition: opacity 0.36s cubic-bezier(0.4,0,0.2,1),
                  transform 0.36s cubic-bezier(0.4,0,0.2,1);
    }

    .hero-p {
      font-size: 18px; color: var(--text-muted); line-height: 1.65;
      margin-bottom: 40px; max-width: 490px;
    }
    .hero-p strong { color: var(--text); font-weight: 600; }

    .hero-btns { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 50px; }

    .btn-lg {
      padding: 14px 28px; font-size: 16px; border-radius: var(--r-sm); font-weight: 700;
      text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
      transition: all 0.25s; border: none; cursor: pointer; font-family: 'Inter', sans-serif;
    }
    .btn-lg-primary {
      background: linear-gradient(135deg, var(--violet), #6d28d9);
      color: white; box-shadow: 0 0 28px var(--violet-glow), 0 4px 20px rgba(0,0,0,.4);
    }
    .btn-lg-primary:hover { transform: translateY(-2px); box-shadow: 0 0 48px rgba(124,58,237,.6), 0 8px 28px rgba(0,0,0,.4); }
    .btn-lg-ghost {
      background: transparent; color: var(--text-muted);
      border: 1px solid var(--border-sub);
    }
    .btn-lg-ghost:hover { color: var(--text); border-color: var(--border); background: var(--glass); }

    .hero-stats { display: flex; gap: 28px; align-items: center; }
    .stat { display: flex; flex-direction: column; gap: 2px; }
    .stat-n { font-size: 21px; font-weight: 800; letter-spacing: -0.03em; }
    .stat-l { font-size: 12px; color: var(--text-muted); }
    .stat-sep { width: 1px; height: 36px; background: var(--border-sub); }

    /* WhatsApp Phone */
    .hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }

    .phone {
      width: 295px;
      background: #12122a;
      border-radius: 38px;
      border: 2px solid rgba(255,255,255,0.09);
      padding: 14px;
      box-shadow:
        0 0 80px rgba(124,58,237,0.2),
        0 48px 80px rgba(0,0,0,.55),
        inset 0 0 0 1px rgba(255,255,255,0.04);
      position: relative; z-index: 2;
    }
    .phone-bar {
      width: 72px; height: 5px; background: rgba(255,255,255,0.14);
      border-radius: 3px; margin: 0 auto 14px;
    }

    /* WA header */
    .wa-head {
      display: flex; align-items: center; gap: 10px;
      background: #075e54; border-radius: 11px 11px 0 0;
      margin: -14px -14px 14px; padding: 10px 14px;
    }
    .wa-av {
      width: 36px; height: 36px; border-radius: 50%;
      background: linear-gradient(135deg,#25d366,#128c7e);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .wa-n { font-size: 13px; font-weight: 700; color: #fff; }
    .wa-s { font-size: 11px; color: rgba(255,255,255,.65); }

    .wa-chat { display: flex; flex-direction: column; gap: 10px; padding: 4px 0; }

    .wa-bubble {
      background: #1e1e3a;
      border-radius: 12px 12px 12px 3px;
      padding: 10px 13px;
      font-size: 12px; line-height: 1.5; max-width: 92%;
    }
    .wa-bubble strong { color: var(--violet-light); font-weight: 600; display: block; margin-bottom: 5px; font-size: 12px; }
    .wa-bubble .wa-meta { font-size: 11px; font-weight: 600; color: var(--text-muted); margin-top: 7px; letter-spacing: 0.02em; }

    .wa-btns { display: flex; flex-direction: column; gap: 6px; }
    .wa-btn {
      border-radius: 8px; padding: 9px 12px;
      font-size: 13px; font-weight: 700; text-align: center;
      cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 6px;
      transition: all 0.22s; user-select: none;
    }
    .wa-btn-ok {
      background: rgba(16,185,129,0.13); border: 1px solid rgba(16,185,129,0.4);
      color: var(--green-light);
    }
    .wa-btn-ok:hover { background: rgba(16,185,129,0.28); transform: scale(1.02); }
    .wa-btn-no {
      background: rgba(244,63,94,0.09); border: 1px solid rgba(244,63,94,0.3);
      color: #fca5a5;
    }
    .wa-btn-no:hover { background: rgba(244,63,94,0.2); }
    .wa-time { font-size: 10px; color: var(--text-dim); text-align: right; margin-top: 3px; }

    /* float cards */
    .fc {
      position: absolute;
      z-index: 3;
      background: rgba(15,15,28,0.85);
      backdrop-filter: blur(20px);
      border: 1px solid var(--glass-b);
      border-radius: var(--r); padding: 11px 15px;
      display: flex; align-items: center; gap: 10px;
    }
    .fc-ok { top: 12%; right: -14%; animation: f1 4s ease-in-out infinite; border-color: rgba(16,185,129,0.2); box-shadow: 0 0 18px rgba(16,185,129,0.12); }
    .fc-wait { bottom: 18%; left: -10%; animation: f2 5s ease-in-out infinite; }
    @keyframes f1 { 0%,100%{transform:translateY(0) rotate(2deg)} 50%{transform:translateY(-9px) rotate(2deg)} }
    @keyframes f2 { 0%,100%{transform:translateY(0) rotate(-1.5deg)} 50%{transform:translateY(-7px) rotate(-1.5deg)} }
    .fc-icon {
      width: 30px; height: 30px; border-radius: 7px;
      display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0;
    }
    .fc-icon-g { background: rgba(16,185,129,0.18); }
    .fc-icon-v { background: rgba(124,58,237,0.2); }
    .fc-title { font-size: 12px; font-weight: 700; color: var(--text); display: block; }
    .fc-sub   { font-size: 11px; color: var(--text-muted); }

    /* ========== LOGOS BAR ========== */
    .logos-bar {
      padding: 36px 0;
      border-top: 1px solid var(--border-sub);
      border-bottom: 1px solid var(--border-sub);
    }
    .logos-label { text-align: center; font-size: 11px; color: var(--text-dim); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 22px; }
    .logos-row { display: flex; align-items: center; justify-content: center; gap: 52px; flex-wrap: wrap; }
    .logo-slug { font-size: 13px; font-weight: 700; color: var(--text-dim); letter-spacing: .06em; text-transform: uppercase; }

    /* ========== PROBLEM ========== */
    .problem { padding: 120px 0; }
    .sec-head { text-align: center; max-width: 600px; margin: 0 auto 64px; }
    .sec-head h2 {
      font-family: 'DM Serif Display', Georgia, serif;
      font-size: clamp(30px, 4vw, 52px); margin-bottom: 14px;
    }
    .sec-sub { font-size: 17px; color: var(--text-muted); line-height: 1.65; }

    .compare { display: grid; grid-template-columns: 1fr auto 1fr; gap: 22px; align-items: center; }

    .side {
      background: var(--glass); border: 1px solid var(--glass-b);
      border-radius: var(--r-lg); padding: 30px;
    }
    .side.bad  { border-color: rgba(244,63,94,0.18); }
    .side.good { border-color: rgba(124,58,237,0.28); background: rgba(124,58,237,0.04); }

    .side-head { display: flex; align-items: center; gap: 9px; margin-bottom: 20px; }
    .s-dot { width: 9px; height: 9px; border-radius: 50%; }
    .s-dot-r { background: var(--red); }
    .s-dot-g { background: var(--green); }
    .s-lbl { font-size: 12px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
    .s-lbl-r { color: #fca5a5; }
    .s-lbl-g { color: var(--green-light); }

    .chaos-stack { display: flex; flex-direction: column; gap: 8px; }
    .cmsg {
      background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.05);
      border-radius: 8px; padding: 9px 12px; font-size: 12px;
    }
    .cmsg .from { font-size: 10px; color: var(--text-dim); margin-bottom: 3px; }
    .cmsg .msg  { color: var(--text-muted); }
    .cmsg .at   { font-size: 10px; color: var(--text-dim); text-align: right; margin-top: 3px; }

    .good-list { display: flex; flex-direction: column; gap: 14px; }
    .gitem {
      display: flex; align-items: flex-start; gap: 11px;
      padding-bottom: 14px; border-bottom: 1px solid var(--border-sub);
    }
    .gitem:last-child { border-bottom: none; padding-bottom: 0; }
    .gitem-ico {
      width: 28px; height: 28px; background: rgba(16,185,129,0.15);
      border-radius: 7px; display: flex; align-items: center; justify-content: center;
      font-size: 14px; flex-shrink: 0; margin-top: 1px;
    }
    .gitem-txt { font-size: 13px; color: var(--text-muted); line-height: 1.55; }
    .gitem-txt strong { color: var(--text); font-weight: 600; display: block; margin-bottom: 2px; }

    .vs {
      width: 52px; height: 52px; flex-shrink: 0;
      background: linear-gradient(135deg, var(--bg-3), var(--bg-2));
      border: 2px solid var(--border);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-weight: 800; font-size: 13px; color: var(--text-muted);
    }

    /* ========== HOW ========== */
    .how {
      padding: 120px 0;
      background: linear-gradient(180deg, transparent 0%, rgba(124,58,237,0.04) 50%, transparent 100%);
    }
    .steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; position: relative; }
    .steps::before {
      content: '';
      position: absolute; top: 38px;
      left: calc(16.66% + 38px); right: calc(16.66% + 38px);
      height: 1px;
      background: linear-gradient(90deg, var(--violet), transparent 48%, var(--violet-glow) 52%, var(--violet));
      z-index: 0;
    }
    .step { padding: 0 28px; text-align: center; position: relative; z-index: 1; }
    .step-num {
      width: 64px; height: 64px;
      background: linear-gradient(135deg, var(--bg-3), var(--bg-2));
      border: 1px solid var(--border);
      border-radius: 50%; margin: 0 auto 24px;
      display: flex; align-items: center; justify-content: center;
      font-size: 26px; position: relative;
    }
    .step-num::after {
      content: ''; position: absolute; inset: -4px; border-radius: 50%;
      background: linear-gradient(135deg, var(--violet), transparent);
      z-index: -1; opacity: .28;
    }
    .step h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.02em; }
    .step p  { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

    /* ========== FEATURES ========== */
    .features { padding: 120px 0; }

    .tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 48px; }
    .tab {
      padding: 9px 24px; border-radius: 100px;
      font-size: 14px; font-weight: 600;
      cursor: pointer; border: 1px solid var(--border-sub);
      background: transparent; color: var(--text-muted);
      transition: all 0.22s; font-family: 'Inter', sans-serif;
    }
    .tab.on {
      background: var(--violet); border-color: var(--violet);
      color: white; box-shadow: 0 0 18px var(--violet-glow);
    }

    .panel { display: none; }
    .panel.on { display: block; }

    .cards3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
    .fcard {
      background: var(--glass); border: 1px solid var(--glass-b);
      border-radius: var(--r); padding: 26px;
      transition: all 0.28s;
    }
    .fcard:hover { border-color: var(--border); background: rgba(124,58,237,0.05); transform: translateY(-2px); }
    .fcard-ico { width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 15px; font-size: 20px; }
    .ic-v { background: var(--violet-subtle); }
    .ic-g { background: var(--green-subtle); }
    .fcard h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.02em; }
    .fcard p  { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
    .icode { font-family: 'JetBrains Mono', monospace; color: var(--violet-light); font-size: 11px; }

    /* ========== SECURITY ========== */
    .security { padding: 120px 0; }
    .sec-grid2 { display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px; align-items: center; }
    .sec-left h2 { font-family: 'DM Serif Display', Georgia, serif; font-size: clamp(28px,3.5vw,44px); margin-bottom: 14px; }
    .sec-left > p { font-size: 16px; color: var(--text-muted); line-height: 1.7; margin-bottom: 32px; }
    .sbadges { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .sbadge {
      display: flex; align-items: flex-start; gap: 10px;
      background: var(--glass); border: 1px solid var(--glass-b);
      border-radius: var(--r); padding: 14px 16px;
      transition: border-color .2s;
    }
    .sbadge:hover { border-color: var(--border); }
    .sbadge-ico { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
    .sbadge h4 { font-size: 13px; font-weight: 700; margin-bottom: 3px; }
    .sbadge p  { font-size: 11px; color: var(--text-muted); line-height: 1.5; }

    /* Audit trail card */
    .audit-card {
      background: var(--bg-1); border: 1px solid var(--glass-b);
      border-radius: var(--r-lg); overflow: hidden;
      box-shadow: 0 0 60px rgba(124,58,237,0.08), 0 24px 48px rgba(0,0,0,.4);
    }
    .audit-header {
      display: flex; align-items: center; justify-content: space-between;
      padding: 16px 20px; background: rgba(255,255,255,0.025);
      border-bottom: 1px solid var(--glass-b);
    }
    .audit-title { font-size: 14px; font-weight: 700; }
    .audit-badge {
      font-size: 11px; font-weight: 700; padding: 3px 10px;
      border-radius: 100px; background: rgba(16,185,129,0.15);
      border: 1px solid rgba(16,185,129,0.3); color: var(--green-light);
    }
    .audit-body { padding: 0 20px 20px; }
    .audit-meta { font-size: 11px; color: var(--text-dim); padding: 12px 0 16px; border-bottom: 1px solid var(--border-sub); margin-bottom: 16px; display: flex; gap: 16px; }
    .audit-meta span { display: flex; align-items: center; gap: 4px; }
    .timeline { display: flex; flex-direction: column; gap: 0; }
    .tline-item { display: flex; gap: 14px; padding: 10px 0; position: relative; }
    .tline-item:not(:last-child)::before {
      content: ''; position: absolute; left: 14px; top: 28px;
      width: 1px; bottom: 0; background: var(--border-sub);
    }
    .tline-dot {
      width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      font-size: 12px; position: relative; z-index: 1;
    }
    .td-green { background: rgba(16,185,129,0.2); border: 1px solid rgba(16,185,129,0.35); }
    .td-violet{ background: rgba(124,58,237,0.2); border: 1px solid rgba(124,58,237,0.35); }
    .td-gray  { background: rgba(255,255,255,0.05); border: 1px solid var(--border-sub); }
    .tline-content { flex: 1; }
    .tline-top { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 2px; }
    .tline-actor { font-size: 13px; font-weight: 600; color: var(--text); }
    .tline-time  { font-size: 10px; color: var(--text-dim); white-space: nowrap; }
    .tline-label { font-size: 11px; color: var(--text-muted); margin-bottom: 4px; }
    .tline-comment {
      font-size: 11px; color: var(--text-muted); font-style: italic;
      background: rgba(255,255,255,0.03); border-left: 2px solid var(--violet);
      padding: 4px 8px; border-radius: 0 4px 4px 0; margin-top: 4px;
    }
    .tline-webhook {
      font-size: 11px; color: var(--green-light);
      display: flex; align-items: center; gap: 6px;
      background: rgba(16,185,129,0.07); padding: 4px 8px;
      border-radius: 4px; margin-top: 4px;
    }

    /* ========== LANG SWITCH ========== */
    .lang-sw { display: flex; align-items: center; gap: 2px; margin-left: 8px; }
    .lang-btn {
      padding: 5px 9px; border-radius: 6px; font-size: 11px; font-weight: 700;
      cursor: pointer; border: 1px solid transparent;
      background: transparent; color: var(--text-dim);
      transition: all .2s; font-family: 'Inter', sans-serif; letter-spacing: .05em;
    }
    .lang-btn.on { background: var(--violet-subtle); border-color: var(--border); color: var(--violet-light); }
    .lang-btn:hover:not(.on) { color: var(--text-muted); }

    /* ========== PRICING ========== */
    .pricing {
      padding: 120px 0;
      background: linear-gradient(180deg, transparent 0%, rgba(16,185,129,0.025) 50%, transparent 100%);
    }
    .pcards { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; align-items: start; }

    .pcard {
      background: var(--glass); border: 1px solid var(--glass-b);
      border-radius: var(--r-lg); padding: 34px 30px;
      position: relative; transition: all 0.28s;
    }
    .pcard:hover { border-color: var(--border); transform: translateY(-3px); }
    .pcard.hot {
      background: linear-gradient(135deg, rgba(124,58,237,0.13), rgba(124,58,237,0.06));
      border-color: rgba(124,58,237,0.42);
      box-shadow: 0 0 60px rgba(124,58,237,0.14), inset 0 0 60px rgba(124,58,237,0.03);
    }
    .pcard.hot:hover { box-shadow: 0 0 80px rgba(124,58,237,0.24), inset 0 0 60px rgba(124,58,237,0.03); }

    .pop {
      position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
      background: linear-gradient(135deg, var(--violet), #6d28d9);
      color: white; font-size: 10px; font-weight: 800; letter-spacing: .08em;
      text-transform: uppercase; padding: 4px 16px; border-radius: 100px; white-space: nowrap;
    }

    .pname  { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px; }
    .pprice { display: flex; align-items: flex-start; gap: 4px; margin-bottom: 6px; }
    .pcur   { font-size: 17px; font-weight: 700; color: var(--text-muted); margin-top: 8px; }
    .pamt   { font-size: 52px; font-weight: 900; line-height: 1; letter-spacing: -0.04em; }
    .pper   { font-size: 13px; color: var(--text-muted); align-self: flex-end; margin-bottom: 5px; }
    .pdesc  { font-size: 13px; color: var(--text-muted); margin-bottom: 26px; line-height: 1.5; }
    .pdiv   { height: 1px; background: var(--border-sub); margin-bottom: 22px; }

    .pfeats { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; }
    .pfeats li { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: var(--text-muted); }
    .pfeats li .ck { color: var(--green); flex-shrink: 0; margin-top: 1px; font-size: 14px; }
    .pfeats li strong { color: var(--text); font-weight: 600; }

    .pextra {
      font-size: 12px; color: var(--text-dim);
      padding: 8px 12px; background: rgba(255,255,255,0.025);
      border-radius: 7px; border: 1px solid var(--border-sub); margin-bottom: 24px; line-height: 1.5;
    }
    .pextra strong { font-weight: 700; color: var(--amber); }
    .pextra strong.g { color: var(--green-light); }

    .pcta {
      width: 100%; padding: 12px;
      border-radius: var(--r-sm); font-size: 15px; font-weight: 700;
      cursor: pointer; border: none; transition: all 0.25s;
      font-family: 'Inter', sans-serif; text-decoration: none;
      display: block; text-align: center;
    }
    .pcta-def { background: var(--glass); border: 1px solid var(--glass-b); color: var(--text); }
    .pcta-def:hover { background: rgba(255,255,255,0.065); border-color: var(--border); }
    .pcta-hot {
      background: linear-gradient(135deg, var(--violet), #6d28d9);
      color: white; box-shadow: 0 0 18px var(--violet-glow);
    }
    .pcta-hot:hover { transform: translateY(-1px); box-shadow: 0 0 32px rgba(124,58,237,0.55); }

    /* ========== DEV ========== */
    .dev-sec { padding: 120px 0; }
    .dev-grid { display: grid; grid-template-columns: 1fr 1.12fr; gap: 80px; align-items: center; }

    .dev-content h2 {
      font-family: 'DM Serif Display', Georgia, serif;
      font-size: clamp(28px, 3.5vw, 44px); margin-bottom: 14px;
    }
    .dev-content > p { font-size: 16px; color: var(--text-muted); line-height: 1.7; margin-bottom: 30px; }
    .dev-feats { display: flex; flex-direction: column; gap: 15px; margin-bottom: 34px; }
    .dft { display: flex; align-items: center; gap: 12px; font-size: 14px; }
    .dft-ico {
      width: 32px; height: 32px; background: var(--violet-subtle);
      border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .dft-txt { color: var(--text-muted); }
    .dft-txt strong { color: var(--text); font-weight: 600; }

    .code-win {
      background: #0b0b18; border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--r-lg); overflow: hidden;
      box-shadow: 0 0 60px rgba(124,58,237,0.1), 0 30px 60px rgba(0,0,0,.4);
    }
    .code-bar {
      display: flex; align-items: center; gap: 7px;
      padding: 13px 18px;
      background: rgba(255,255,255,0.025); border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .cd { width: 11px; height: 11px; border-radius: 50%; }
    .cd-r { background: #ff5f57; }
    .cd-y { background: #febc2e; }
    .cd-g { background: #28c840; }
    .cfn { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--text-dim); margin-left: 7px; }
    .cblock {
      padding: 22px; font-family: 'JetBrains Mono', monospace;
      font-size: 12.5px; line-height: 1.75; overflow-x: auto;
    }
    .cc  { color: #4a5568; }
    .ck  { color: #c084fc; }
    .cs  { color: #86efac; }
    .cp  { color: #93c5fd; }
    .cv  { color: #fcd34d; }
    .co  { color: #f9a8d4; }
    .cf  { color: #67e8f9; }

    /* ========== FAQ ========== */
    .faq { padding: 120px 0; }
    .faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 7px; }
    .fq-item {
      background: var(--glass); border: 1px solid var(--glass-b);
      border-radius: var(--r); overflow: hidden; transition: border-color .2s;
    }
    .fq-item.on { border-color: var(--border); }
    .fq-q {
      display: flex; align-items: center; justify-content: space-between;
      padding: 19px 22px; cursor: pointer; gap: 16px;
    }
    .fq-qt { font-size: 15px; font-weight: 600; color: var(--text); }
    .fq-ch {
      width: 22px; height: 22px;
      display: flex; align-items: center; justify-content: center;
      color: var(--text-muted); flex-shrink: 0; transition: transform .3s;
    }
    .fq-item.on .fq-ch { transform: rotate(180deg); }
    .fq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
    .fq-ai { padding: 0 22px 18px; font-size: 14px; color: var(--text-muted); line-height: 1.7; }

    /* ========== FINAL CTA ========== */
    .cta-sec { padding: 120px 0; text-align: center; position: relative; }
    .cta-sec::before {
      content: '';
      position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
      width: 600px; height: 600px;
      background: radial-gradient(ellipse, rgba(124,58,237,0.1) 0%, transparent 70%);
      pointer-events: none;
    }
    .cta-box {
      background: linear-gradient(135deg, rgba(124,58,237,0.1), rgba(16,185,129,0.05));
      border: 1px solid rgba(124,58,237,0.25);
      border-radius: 32px; padding: 76px 60px;
      position: relative; overflow: hidden;
      max-width: 800px; margin: 0 auto;
    }
    .cta-box::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(90deg, transparent, rgba(124,58,237,0.5), transparent);
    }
    .cta-box h2 {
      font-family: 'DM Serif Display', Georgia, serif;
      font-size: clamp(30px, 4.5vw, 54px); margin-bottom: 14px;
    }
    .cta-box > p { font-size: 17px; color: var(--text-muted); margin-bottom: 38px; max-width: 480px; margin-left: auto; margin-right: auto; }
    .cta-btns { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
    .cta-note { font-size: 12px; color: var(--text-dim); margin-top: 18px; }

    /* ========== FOOTER ========== */
    footer { border-top: 1px solid var(--border-sub); padding: 56px 0 36px; }
    .foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 52px; }
    .foot-brand .logo { margin-bottom: 14px; }
    .foot-tag { font-size: 13px; color: var(--text-muted); line-height: 1.65; max-width: 230px; }
    .foot-col h4 { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 14px; }
    .foot-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
    .foot-links a { font-size: 13px; color: var(--text-muted); text-decoration: none; transition: color .2s; }
    .foot-links a:hover { color: var(--text); }
    .foot-bot {
      display: flex; align-items: center; justify-content: space-between;
      padding-top: 28px; border-top: 1px solid var(--border-sub);
      font-size: 12px; color: var(--text-dim);
    }

    /* ========== SCROLL FADE ========== */
    .fi { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
    .fi.v { opacity: 1; transform: translateY(0); }
    .fi-d1 { transition-delay: .1s; }
    .fi-d2 { transition-delay: .2s; }
    .fi-d3 { transition-delay: .3s; }

    /* ========== RESPONSIVE ========== */
    @media (max-width: 1024px) {
      .hero-grid { grid-template-columns: 1fr; gap: 56px; }
      .hero-visual { order: -1; }
      .compare { grid-template-columns: 1fr; }
      .vs { margin: 0 auto; }
      .cards3 { grid-template-columns: repeat(2,1fr); }
      .pcards { grid-template-columns: 1fr; max-width: 390px; margin: 0 auto; }
      .dev-grid { grid-template-columns: 1fr; }
      .sec-grid2 { grid-template-columns: 1fr; }
      .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    }
    @media (max-width: 768px) {
      .nav-links, .nav-end .btn-ghost { display: none; }
      .nav-mobile { display: block; }
      .steps { grid-template-columns: 1fr; }
      .steps::before { display: none; }
      .cards3 { grid-template-columns: 1fr; }
      .fc-ok { right: -4%; }
      .fc-wait { left: -4%; }
      .foot-grid { grid-template-columns: 1fr; gap: 28px; }
      .foot-bot { flex-direction: column; gap: 7px; text-align: center; }
      .cta-box { padding: 44px 22px; }
      .hero-stats { gap: 18px; }
      .hero-btns { flex-direction: column; align-items: flex-start; }
    }
    @media (max-width: 480px) {
      .container { padding: 0 14px; }
      .phone { width: 268px; }
      .fc-ok, .fc-wait { display: none; }
    }
  