/* === Reset & Base === */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --purple: #7c3aed;
      --purple-light: #a78bfa;
      --purple-dark: #5b21b6;
      --pink: #ec4899;
      --bg: #07070f;
      --surface: #0f0f1a;
      --border: #1e1e38;
      --text: #f3f4f6;
      --muted: #9ca3af;
      --green: #22c55e;
    }
    html { scroll-behavior: smooth; }
    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { color: inherit; text-decoration: none; }
    ul { list-style: none; }

    /* === Layout === */
    .container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

    /* === Nav === */
    nav {
      position: sticky; top: 0; z-index: 100;
      background: rgba(7,7,15,0.92);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      padding: 14px 0;
    }
    .nav-inner { display: flex; align-items: center; justify-content: space-between; }
    .nav-logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 18px; }
    .nav-logo-icon {
      width: 34px; height: 34px;
      background: var(--purple); border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 18px; color: #fff; flex-shrink: 0;
    }
    .nav-logo-img {
      width: 36px; height: 36px;
      border-radius: 8px; object-fit: cover; flex-shrink: 0;
    }
    .nav-cta {
      background: var(--purple); color: #fff;
      padding: 9px 20px; border-radius: 8px;
      font-size: 14px; font-weight: 600;
      transition: opacity .2s;
      white-space: nowrap;
    }
    .nav-cta:hover { opacity: .88; }
    .nav-login {
      font-size: 14px; font-weight: 600; color: var(--muted);
      transition: color .2s; background: none; border: none;
      cursor: pointer; padding: 0; white-space: nowrap;
    }
    .nav-login:hover { color: var(--text); }
    .nav-actions { display: flex; align-items: center; gap: 12px; }
    .nav-links { display: flex; gap: 4px; }
    .nav-links a { font-size: 14px; font-weight: 500; color: var(--muted); transition: color .2s, background .2s; padding: 6px 14px; border-radius: 20px; }
    .nav-links a:hover { color: var(--text); background: rgba(255,255,255,.07); }
    .nav-links a.active { color: #fff; background: rgba(124,58,237,.35); font-weight: 600; }
    /* Hamburger button */
    .nav-hamburger {
      display: none; flex-direction: column; justify-content: center; gap: 5px;
      background: none; border: none; cursor: pointer; padding: 6px; margin-left: 4px;
    }
    .nav-hamburger span {
      display: block; width: 22px; height: 2px;
      background: var(--text); border-radius: 2px;
      transition: transform .2s, opacity .2s;
    }
    .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Mobile menu overlay */
    .nav-mobile-menu {
      display: none; flex-direction: column;
      position: fixed; top: 65px; left: 0; right: 0; bottom: 0;
      background: var(--bg); z-index: 98;
      padding: 16px 20px 32px; overflow-y: auto;
    }
    .nav-mobile-menu.open { display: flex; }
    .nav-mobile-link {
      padding: 14px 16px; border-radius: 10px;
      font-size: 16px; font-weight: 600; color: var(--text);
      transition: background .15s, color .15s;
    }
    .nav-mobile-link:hover { background: var(--surface); }
    .nav-mobile-link.active { color: #fff; background: rgba(124,58,237,.25); border-left: 3px solid var(--primary); padding-left: 13px; }
    .nav-mobile-login { color: var(--muted); }
    .nav-mobile-divider { height: 1px; background: var(--border); margin: 8px 0; }
    .nav-mobile-cta {
      display: block; margin-top: 8px;
      background: var(--purple); color: #fff;
      padding: 14px 16px; border-radius: 10px;
      font-size: 16px; font-weight: 700; text-align: center;
    }

    @media (max-width: 640px) {
      .nav-links { display: none; }
      .nav-login { display: none; }
      .nav-cta { display: none; }
      .nav-hamburger { display: flex; }
    }

    /* === Hero (two-column) === */
    .hero {
      display: flex;
      align-items: center;
      padding: 56px 0 48px;
      background: radial-gradient(ellipse 80% 60% at 30% -10%, rgba(124,58,237,.2) 0%, transparent 65%);
      overflow: hidden;
    }
    .hero .container { width: 100%; }
    .hero-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(124,58,237,.12); border: 1px solid rgba(124,58,237,.3);
      border-radius: 100px; padding: 6px 14px; margin-bottom: 24px;
      font-size: 12px; color: var(--purple-light); font-weight: 600; letter-spacing: .5px; text-transform: uppercase;
    }
    .hero-badge-dot { width: 6px; height: 6px; background: var(--purple-light); border-radius: 50%; animation: pulse 2s infinite; flex-shrink: 0; }
    @keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }
    h1 {
      font-size: clamp(32px, 4.5vw, 58px);
      font-weight: 900; line-height: 1.1;
      letter-spacing: -.03em;
      margin-bottom: 20px;
    }
    h1 span { color: var(--purple-light); }
    .hero-sub {
      font-size: clamp(15px, 1.8vw, 18px);
      color: var(--muted); max-width: 500px;
      margin-bottom: 36px;
      line-height: 1.7;
    }
    /* === Persona CTAs === */
    .hero-persona-label {
      font-size: 12px; font-weight: 400; color: var(--muted);
      margin-bottom: 10px; margin-top: 4px;
    }
    .hero-persona-btns {
      display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px;
    }
    .btn-persona {
      display: inline-flex; align-items: center; gap: 9px;
      background: rgba(255,255,255,.04); border: 1px solid var(--border);
      color: var(--text); border-radius: 10px;
      padding: 13px 20px; font-size: 14px; font-weight: 700;
      transition: border-color .2s, background .2s;
      cursor: pointer; text-decoration: none;
    }
    .btn-persona:hover { border-color: var(--purple); background: rgba(124,58,237,.08); }
    .btn-persona svg { flex-shrink: 0; }
    .btn-persona--sm {
      padding: 8px 14px; font-size: 12px; font-weight: 600;
      color: var(--muted); border-color: rgba(255,255,255,.1);
      border-radius: 8px;
    }
    .btn-persona--sm:hover { color: var(--text); }

    .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
    .btn-primary {
      background: var(--purple); color: #fff;
      padding: 14px 28px; border-radius: 10px;
      font-size: 15px; font-weight: 700;
      transition: transform .15s, opacity .15s;
      display: inline-flex; align-items: center; gap: 6px;
    }
    .btn-primary:hover { opacity: .9; transform: translateY(-1px); }
    .btn-secondary {
      background: var(--surface); color: var(--text);
      border: 1px solid var(--border);
      padding: 14px 28px; border-radius: 10px;
      font-size: 15px; font-weight: 600;
      transition: border-color .2s;
      display: inline-flex; align-items: center; gap: 6px;
    }
    .btn-secondary:hover { border-color: var(--purple); }
    .hero-note { font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
    .hero-note-dot { width: 4px; height: 4px; background: var(--muted); border-radius: 50%; }

    /* === App Mockup === */
    .hero-mockup { position: relative; }
    .mockup-glow {
      position: absolute; inset: -40px;
      background: radial-gradient(ellipse at center, rgba(124,58,237,.18) 0%, transparent 70%);
      pointer-events: none;
    }
    .mockup-frame {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 32px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(124,58,237,.15);
      position: relative;
    }
    .mockup-chrome {
      background: #0c0c1e;
      border-bottom: 1px solid var(--border);
      padding: 10px 14px;
      display: flex; align-items: center; gap: 6px;
    }
    .chrome-dot {
      width: 10px; height: 10px; border-radius: 50%;
    }
    .chrome-dot.red { background: #ef4444; }
    .chrome-dot.yellow { background: #f59e0b; }
    .chrome-dot.green { background: #22c55e; }
    .chrome-url {
      flex: 1; background: rgba(255,255,255,.06); border-radius: 6px;
      padding: 4px 10px; margin-left: 8px;
      font-size: 11px; color: var(--muted); font-family: monospace;
    }
    .mockup-body { display: flex; height: 360px; }
/* NONCRITICAL */
    .mockup-sidebar {
      width: 180px; flex-shrink: 0;
      background: #0b0b1c;
      border-right: 1px solid var(--border);
      padding: 14px 12px;
      display: flex; flex-direction: column; gap: 4px;
    }
    .sidebar-logo {
      display: flex; align-items: center; gap: 8px;
      margin-bottom: 16px; padding-bottom: 12px;
      border-bottom: 1px solid var(--border);
    }
    .sidebar-logo-icon {
      width: 26px; height: 26px; background: var(--purple); border-radius: 6px;
      display: flex; align-items: center; justify-content: center;
      font-size: 13px; color: #fff; font-weight: 700;
    }
    .sidebar-logo-name { font-size: 12px; font-weight: 700; }
    .sidebar-item {
      display: flex; align-items: center; gap: 8px;
      padding: 6px 8px; border-radius: 6px;
      font-size: 11px; color: var(--muted);
      transition: background .15s;
    }
    .sidebar-item.active { background: rgba(124,58,237,.18); color: var(--purple-light); }
    .sidebar-item-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
    .mockup-content {
      flex: 1; padding: 16px; overflow: hidden;
      display: flex; flex-direction: column; gap: 12px;
    }
    .mockup-topbar {
      display: flex; align-items: center; justify-content: space-between;
    }
    .mockup-welcome { font-size: 10px; color: var(--muted); }
    .mockup-pastor { font-size: 13px; font-weight: 700; }
    .mockup-avatar {
      width: 30px; height: 30px; border-radius: 50%;
      background: var(--purple);
      display: flex; align-items: center; justify-content: center;
      font-size: 10px; font-weight: 700; color: #fff;
    }
    .mockup-kpis {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
    }
    .kpi-box {
      background: rgba(124,58,237,.1); border: 1px solid rgba(124,58,237,.2);
      border-radius: 8px; padding: 8px 10px; text-align: center;
    }
    .kpi-val { font-size: 18px; font-weight: 800; color: var(--purple-light); }
    .kpi-label { font-size: 9px; color: var(--muted); text-transform: uppercase; letter-spacing: .4px; }
    .mockup-events-title {
      font-size: 10px; font-weight: 700; color: var(--muted);
      text-transform: uppercase; letter-spacing: .5px;
    }
    .mockup-event {
      display: flex; align-items: center; gap: 8px;
      background: rgba(255,255,255,.03); border: 1px solid var(--border);
      border-radius: 8px; padding: 8px 10px;
    }
    .event-bar { width: 3px; border-radius: 2px; align-self: stretch; flex-shrink: 0; }
    .event-bar.purple { background: var(--purple); }
    .event-bar.blue { background: #3b82f6; }
    .event-name { font-size: 11px; font-weight: 600; }
    .event-time { font-size: 10px; color: var(--muted); }
    .mockup-members-title {
      font-size: 10px; font-weight: 700; color: var(--muted);
      text-transform: uppercase; letter-spacing: .5px;
    }
    .mockup-member {
      display: flex; align-items: center; gap: 8px;
      padding: 6px 0;
      border-bottom: 1px solid rgba(30,30,56,.6);
    }
    .member-av {
      width: 24px; height: 24px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 9px; font-weight: 700; color: #fff; flex-shrink: 0;
    }
    .member-name { font-size: 11px; font-weight: 600; }
    .member-role { font-size: 9px; color: var(--muted); }

    /* Color grid (calendar-like) in sidebar area */
    .sidebar-grid { margin-top: auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
    .sg-cell { height: 18px; border-radius: 3px; }

    /* === Stats === */
    .stats { padding: 40px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 32px; text-align: center; }
    .stat-value { font-size: 32px; font-weight: 800; color: var(--purple-light); }
    .stat-label { font-size: 13px; color: var(--muted); margin-top: 4px; }

    /* === Section shared === */
    section { padding: 80px 0; }
    .section-label {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 12px; font-weight: 700;
      color: var(--purple-light); text-transform: uppercase; letter-spacing: .6px;
      margin-bottom: 12px;
    }
    .section-label::before {
      content: ''; display: block; width: 3px; height: 14px;
      background: var(--purple-light); border-radius: 2px;
    }
    .section-badge {
      display: inline-block; font-size: 12px; font-weight: 700;
      color: var(--purple-light); text-transform: uppercase; letter-spacing: .6px;
      margin-bottom: 12px;
    }
    h2 { font-size: clamp(26px, 3.5vw, 42px); font-weight: 800; line-height: 1.2; letter-spacing: -.02em; margin-bottom: 12px; }
    .section-sub { font-size: 16px; color: var(--muted); max-width: 560px; line-height: 1.7; }

    /* === Who Uses === */
    .quem-usa-section { padding: 96px 0; background: var(--bg); }
    .section-center { text-align: center; margin-bottom: 56px; }
    .section-center .section-sub { margin: 0 auto; }
    .profiles-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    @media (max-width: 900px) { .profiles-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 600px) { .profiles-grid { grid-template-columns: 1fr; } }
    .profile-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 24px;
      transition: border-color .2s, transform .2s;
    }
    .profile-card:hover { border-color: rgba(124,58,237,.4); transform: translateY(-3px); }
    .profile-card:nth-child(4) { grid-column: 1; }
    @media (min-width: 901px) {
      .profile-card:nth-child(4) { grid-column: 1; }
      .profile-card:nth-child(5) { grid-column: 2; }
    }
    .profile-card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
    .profile-card-icon {
      width: 44px; height: 44px; border-radius: 12px;
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .profile-card-icon svg { width: 22px; height: 22px; }
    .profile-card-title { font-size: 16px; font-weight: 700; color: var(--text); line-height: 1.3; }
    .profile-card-desc { font-size: 12px; color: var(--muted); margin-top: 2px; }
    .profile-card-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
    .profile-card-list li {
      font-size: 13.5px; color: var(--muted);
      padding-left: 20px; position: relative; line-height: 1.4;
    }
    .profile-card-list li::before {
      content: '✓'; position: absolute; left: 0;
      color: var(--purple-light); font-weight: 700; font-size: 12px;
    }

    /* === Modules Grid === */
    .modules-section { background: var(--surface); }
    .modules-header { text-align: center; margin-bottom: 56px; }
    .modules-header .section-sub { margin: 0 auto; }
    .modules-header h2 em {
      font-style: normal;
      background: linear-gradient(90deg, var(--purple-light), var(--pink));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .modules-category { margin-bottom: 44px; }
    .modules-category-title {
      font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.2px;
      color: var(--text); margin-bottom: 18px;
      display: flex; align-items: center; gap: 12px;
      padding-left: 12px; border-left: 3px solid var(--primary);
    }
    .modules-category-title::after {
      content: ''; flex: 1; height: 1px; background: var(--border);
    }
    .modules-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
      gap: 8px;
    }
    .mod-tile {
      background: var(--bg); border: 1px solid var(--border);
      border-radius: 10px; padding: 12px 14px;
      display: flex; flex-direction: row; align-items: center;
      gap: 12px; text-align: left;
      transition: border-color .2s, transform .15s;
      cursor: default;
    }
    .mod-tile:hover { border-color: rgba(124,58,237,.55); transform: translateY(-2px); }
    .mod-icon {
      width: 40px; height: 40px; flex-shrink: 0;
      background: var(--mi-bg, rgba(124,58,237,.18));
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
    }
    .mod-icon svg { width: 18px; height: 18px; stroke: var(--mi-clr, var(--purple-light)); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
    .mod-name { font-size: 13px; font-weight: 600; color: var(--text); line-height: 1.35; }
    .modules-note {
      text-align: center; margin-top: 32px;
      font-size: 13px; color: var(--muted);
      font-style: italic;
    }
    /* Icon color variants */
    .mi-purple { --mi-bg:rgba(124,58,237,.22);  --mi-clr:#a78bfa; }
    .mi-blue   { --mi-bg:rgba(37,99,235,.22);   --mi-clr:#60a5fa; }
    .mi-green  { --mi-bg:rgba(5,150,105,.22);   --mi-clr:#34d399; }
    .mi-amber  { --mi-bg:rgba(217,119,6,.22);   --mi-clr:#fbbf24; }
    .mi-cyan   { --mi-bg:rgba(8,145,178,.22);   --mi-clr:#22d3ee; }
    .mi-pink   { --mi-bg:rgba(219,39,119,.22);  --mi-clr:#f472b6; }
    .mi-red    { --mi-bg:rgba(220,38,38,.22);   --mi-clr:#f87171; }
    .mi-orange { --mi-bg:rgba(234,88,12,.22);   --mi-clr:#fb923c; }
    .mi-violet { --mi-bg:rgba(109,40,217,.22);  --mi-clr:#c084fc; }
    .mi-indigo { --mi-bg:rgba(99,102,241,.22);  --mi-clr:#818cf8; }

    /* === Profiles Section === */
    .profiles-section { padding: 72px 0; }
    .profiles-header { text-align: center; margin-bottom: 40px; }
    .profiles-header .section-sub { margin: 0 auto; }
    .profiles-pills {
      display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
      margin-bottom: 40px;
    }
    .profile-pill {
      padding: 10px 22px; border-radius: 100px;
      font-size: 14px; font-weight: 600;
      border: 1px solid var(--border); color: var(--muted);
      cursor: pointer; transition: all .2s; background: none;
    }
    .profile-pill.active { background: var(--purple); border-color: var(--purple); color: #fff; }
    .profile-pill:hover:not(.active) { border-color: var(--purple-light); color: var(--text); }
    .profiles-panels { max-width: 800px; margin: 0 auto; }
    .profile-panel { display: none; }
    .profile-panel.active { display: block; }
    .profile-panel-inner {
      display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
      align-items: start;
    }
    .profile-desc { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 20px; }
    .profile-features { display: flex; flex-direction: column; gap: 10px; }
    .profile-feat {
      display: flex; align-items: center; gap: 10px;
      font-size: 14px; color: var(--text);
    }
    .profile-feat::before {
      content: '\2713';
      display: flex; align-items: center; justify-content: center;
      min-width: 18px; height: 18px; border-radius: 50%;
      background: rgba(34,197,94,.15); border: 1px solid rgba(34,197,94,.3);
      flex-shrink: 0; font-size: 11px; color: #22c55e; font-weight: 800;
    }
    .profile-visual {
      background: var(--surface); border: 1px solid var(--border);
      border-radius: 14px; padding: 24px;
    }
    .profile-visual-title { font-size: 13px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 16px; }
    .profile-stat-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--border); }
    .profile-stat-row:last-child { border-bottom: none; }
    .profile-stat-label { font-size: 13px; color: var(--muted); }
    .profile-stat-val { font-size: 13px; font-weight: 700; color: var(--text); }

    /* === How it works === */
    .steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; margin-top: 56px; }
    .step { text-align: center; }
    .step-num {
      width: 48px; height: 48px;
      background: var(--purple); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 18px; font-weight: 800; color: #fff;
      margin: 0 auto 16px;
    }
    .step h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
    .step p { font-size: 14px; color: var(--muted); }

    /* === AI Section === */
    .ai-section { background: linear-gradient(135deg, rgba(124,58,237,.08) 0%, transparent 60%); }
    .ai-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
    @media (max-width: 720px) { .ai-inner { grid-template-columns: 1fr; } }
    .ai-list { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
    .ai-item { display: flex; gap: 12px; align-items: flex-start; }
    .ai-item-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
    .ai-item-title { font-size: 15px; font-weight: 700; margin-bottom: 3px; }
    .ai-item-desc { font-size: 13px; color: var(--muted); }
    .ai-visual {
      background: var(--surface); border: 1px solid var(--border);
      border-radius: 20px; padding: 24px;
    }
    .chat-bubble {
      background: var(--bg); border: 1px solid var(--border);
      border-radius: 12px; padding: 14px 16px;
      margin-bottom: 12px; font-size: 14px; color: var(--muted);
      line-height: 1.5;
    }
    .chat-bubble.ai { border-color: rgba(124,58,237,.3); background: rgba(124,58,237,.06); color: var(--text); }
    .chat-label { font-size: 11px; font-weight: 700; margin-bottom: 6px; text-transform: uppercase; letter-spacing: .5px; }
    .chat-label.purple { color: var(--purple-light); }
    .chat-label.gray { color: var(--muted); }

    /* === Pricing === */
    .pricing { background: var(--surface); }
    .pricing-header { text-align: center; margin-bottom: 48px; }
    .pricing-header .section-sub { margin: 0 auto; }
    .pricing-cta-pill {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.3);
      border-radius: 100px; padding: 8px 18px; margin-bottom: 32px;
      font-size: 13px; color: #86efac; font-weight: 600;
    }
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-bottom: 24px;
    }
    .pricing-card {
      background: var(--bg); border: 1px solid var(--border);
      border-top: 4px solid var(--pc, var(--border));
      border-radius: 14px; padding: 24px;
      display: flex; flex-direction: column;
      position: relative;
      transition: border-color .2s, transform .2s, box-shadow .2s;
      cursor: pointer; text-decoration: none; color: inherit;
    }
    .pricing-card:hover {
      border-color: var(--pc, var(--purple));
      border-top-color: var(--pc, var(--purple));
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(0,0,0,.22);
    }
    .pricing-card.featured {
      border-color: var(--pc, var(--purple));
      border-top-color: var(--pc, var(--purple));
      border-width: 1px;
      border-top-width: 4px;
    }
    .pricing-card.featured:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 48px rgba(0,0,0,.28);
    }
    .featured-badge {
      position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
      background: var(--pc, var(--purple)); color: #fff;
      font-size: 11px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase;
      padding: 4px 14px; border-radius: 100px;
      white-space: nowrap;
    }
    .plan-name { font-size: 20px; font-weight: 800; color: var(--pc, var(--text)); margin-bottom: 4px; }
    .plan-members { font-size: 13px; color: var(--muted); margin-bottom: 16px; }
    .plan-price-main { font-size: 28px; font-weight: 900; color: var(--text); line-height: 1; }
    .plan-price-main span { font-size: 14px; font-weight: 600; color: var(--muted); }
    .plan-price-per { font-size: 12px; color: var(--purple-light); font-weight: 600; margin: 4px 0 20px; }
    .plan-feats { flex: 1; display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
    .plan-feat {
      display: flex; align-items: center; gap: 8px;
      font-size: 12px; color: var(--muted);
    }
    .plan-feat::before {
      content: '\2713';
      display: flex; align-items: center; justify-content: center;
      min-width: 15px; height: 15px; border-radius: 50%;
      background: rgba(124,58,237,.15); border: 1px solid rgba(124,58,237,.3);
      flex-shrink: 0; font-size: 9px; color: var(--purple-light); font-weight: 800;
    }
    .plan-btn {
      display: block; text-align: center;
      padding: 12px; border-radius: 10px; font-size: 13px; font-weight: 700;
      background: var(--pc, var(--purple)); color: #fff; border: none;
      transition: opacity .2s, filter .2s;
    }
    .plan-btn:hover { opacity: .88; filter: brightness(1.08); }
    .plan-btn-outline { /* inherits from .plan-btn */ }
    .plan-btn-solid { /* inherits from .plan-btn */ }
    .pricing-more {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 10px;
    }
    .pricing-more-card {
      background: var(--bg); border: 1px solid var(--border);
      border-top: 4px solid var(--pc, var(--border));
      border-radius: 12px; padding: 16px;
      text-align: center; transition: border-color .2s, transform .2s, box-shadow .2s;
      cursor: pointer; display: flex; flex-direction: column;
    }
    .pricing-more-card:hover { border-color: var(--pc, rgba(124,58,237,.4)); border-top-color: var(--pc, rgba(124,58,237,.4)); transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,.16); }
    .pricing-more-name { font-size: 16px; font-weight: 800; margin-bottom: 2px; color: var(--pc, var(--text)); }
    .pricing-more-members { font-size: 12px; color: var(--muted); margin-bottom: 8px; }
    .pricing-more-price { font-size: 20px; font-weight: 900; color: var(--text); line-height: 1; margin-bottom: 2px; }
    .pricing-more-per { font-size: 11px; color: var(--purple-light); font-weight: 600; margin-bottom: 0; }
    .pricing-more-card .plan-feats { text-align: left; flex: 1; }
    .pricing-more-btn {
      display: block; text-align: center;
      padding: 8px; border-radius: 8px; font-size: 12px; font-weight: 700;
      background: var(--pc, var(--purple)); color: #fff; border: none;
      transition: opacity .2s, filter .2s;
    }
    .pricing-more-btn:hover { opacity: .88; filter: brightness(1.08); }

    /* === FAQ === */
    .faq-list { max-width: 720px; margin: 48px auto 0; }
    details {
      border: 1px solid var(--border); border-radius: 12px;
      margin-bottom: 12px; overflow: hidden;
      transition: border-color .2s;
    }
    details[open] { border-color: rgba(124,58,237,.4); }
    summary {
      padding: 18px 20px; cursor: pointer;
      font-size: 15px; font-weight: 600;
      display: flex; justify-content: space-between; align-items: center;
      list-style: none; user-select: none;
    }
    summary::-webkit-details-marker { display: none; }
    .faq-arrow { font-size: 12px; color: var(--muted); transition: transform .2s; flex-shrink: 0; margin-left: 12px; }
    details[open] .faq-arrow { transform: rotate(180deg); }
    .faq-answer { padding: 0 20px 18px; font-size: 14px; color: var(--muted); line-height: 1.7; }

    /* === CTA Banner === */
    .cta-banner {
      background: linear-gradient(135deg, var(--purple-dark), var(--purple));
      border-radius: 20px; padding: 56px 40px;
      text-align: center; margin: 0 24px;
    }
    .cta-banner h2 { font-size: clamp(24px, 3vw, 36px); margin-bottom: 12px; }
    .cta-banner p { font-size: 17px; color: rgba(255,255,255,.92); margin-bottom: 32px; }
    .cta-banner .btn-primary { background: #fff; color: var(--purple-dark); }
    .cta-banner .btn-primary:hover { opacity: .92; }

    /* === Footer === */
    footer {
      background: var(--surface); border-top: 1px solid var(--border);
      padding: 56px 0 32px;
    }
    .footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 40px; }
    @media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
    @media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }
    .footer-brand p { font-size: 14px; color: var(--muted); margin-top: 12px; line-height: 1.65; max-width: 280px; }
    .footer-info { margin-top: 16px; display: flex; flex-direction: column; gap: 5px; }
    .footer-info span { font-size: 12px; color: var(--muted); line-height: 1.5; }
    .footer-info a { font-size: 12px; color: var(--muted); transition: color .2s; }
    .footer-info a:hover { color: var(--text); }
    .footer-col h3 { font-size: 13px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .6px; margin-bottom: 16px; }
    .footer-col ul li { margin-bottom: 10px; }
    .footer-col ul li a { font-size: 14px; color: var(--muted); transition: color .2s; }
    .footer-col ul li a:hover { color: var(--text); }
    .footer-app-btn { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.15); border-radius: 10px; padding: 10px 14px; text-decoration: none; transition: border-color .2s, background .2s; position: relative; margin-bottom: 10px; }
    .footer-app-btn:hover { border-color: var(--primary); background: rgba(124,58,237,.15); }
    .footer-app-btn-icon { font-size: 22px; color: var(--text); line-height: 1; }
    .footer-app-btn-store { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: .4px; }
    .footer-app-btn-name { font-size: 14px; font-weight: 700; color: var(--text); }
    .footer-app-badge { position: absolute; top: 6px; right: 8px; background: var(--primary); color: #fff; font-size: 9px; font-weight: 700; padding: 2px 7px; border-radius: 20px; text-transform: uppercase; letter-spacing: .4px; }
    .footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
    .footer-bottom p { font-size: 13px; color: var(--muted); }

    /* === Download modal === */
    #download-modal {
      display: none; position: fixed; inset: 0; z-index: 200;
      background: rgba(0,0,0,.7); backdrop-filter: blur(6px);
      align-items: center; justify-content: center; padding: 24px;
    }
    #download-modal.open { display: flex; }
    .modal-box {
      background: var(--surface); border: 1px solid var(--border);
      border-radius: 20px; padding: 32px;
      max-width: 420px; width: 100%;
    }
    .modal-title { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
    .modal-sub { font-size: 14px; color: var(--muted); margin-bottom: 24px; }
    .modal-btn {
      display: flex; align-items: center; gap: 14px;
      background: var(--bg); border: 1px solid var(--border);
      border-radius: 12px; padding: 14px 18px;
      margin-bottom: 12px; cursor: pointer;
      text-decoration: none; transition: border-color .2s;
    }
    .modal-btn:hover { border-color: var(--purple); }
    .modal-btn-icon { font-size: 28px; }
    .modal-btn-store { font-size: 11px; color: var(--muted); font-weight: 500; text-transform: uppercase; }
    .modal-btn-name { font-size: 16px; color: var(--text); font-weight: 700; }
    .modal-close {
      display: block; text-align: center; margin-top: 8px;
      font-size: 14px; color: var(--muted); cursor: pointer;
      padding: 8px; border-radius: 8px; transition: color .2s;
      background: none; border: none;
    }
    .modal-close:hover { color: var(--text); }

    /* === Responsive === */
    /* Download App Section */
    .app-download-section { background: #0d1117; padding: 80px 0; }
    .app-download-inner { text-align: center; max-width: 620px; margin: 0 auto; }
    .app-download-badge-pill {
      display: inline-flex; align-items: center; gap: 7px;
      background: rgba(99,102,241,.15); border: 1px solid rgba(99,102,241,.35);
      color: #818cf8; font-size: 13px; font-weight: 600;
      padding: 6px 14px; border-radius: 999px; margin-bottom: 22px;
    }
    .app-download-title { font-size: clamp(30px,5vw,48px); font-weight: 800; letter-spacing: -.02em; margin: 0 0 14px; }
    .app-download-sub { font-size: 17px; color: var(--muted); margin: 0 0 36px; line-height: 1.6; }
    .app-store-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
    .store-btn {
      position: relative;
      display: flex; align-items: center; gap: 13px;
      background: #1a1f2e; border: 1px solid rgba(255,255,255,.1);
      border-radius: 14px; padding: 14px 22px;
      color: #fff; text-decoration: none;
      min-width: 190px;
      transition: background .2s, border-color .2s;
    }
    .store-btn:hover { background: #21273a; border-color: rgba(255,255,255,.2); }
    .store-badge {
      position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
      background: #1d4ed8; color: #fff;
      font-size: 10px; font-weight: 700; letter-spacing: .04em;
      padding: 2px 10px; border-radius: 999px;
      white-space: nowrap;
    }
    .store-icon { flex-shrink: 0; }
    .store-text { display: flex; flex-direction: column; align-items: flex-start; }
    .store-label { font-size: 10px; color: rgba(255,255,255,.82); letter-spacing: .06em; font-weight: 500; }
    .store-name { font-size: 18px; font-weight: 700; line-height: 1.2; }
    .app-download-note { margin: 28px 0 0; font-size: 13px; color: rgba(255,255,255,.65); }

    /* Hero store buttons */
    .hero-app-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
    .hero-store-btn {
      display: flex; align-items: center; gap: 10px;
      background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
      border-radius: 10px; padding: 10px 18px;
      color: #fff; text-decoration: none;
      transition: background .2s, border-color .2s;
    }
    .hero-store-btn:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.25); }
    .hero-store-icon { flex-shrink: 0; opacity: .9; }
    .hero-store-text { display: flex; flex-direction: column; }
    .hero-store-label { font-size: 9px; color: rgba(255,255,255,.82); letter-spacing: .06em; font-weight: 500; text-transform: uppercase; }
    .hero-store-name { font-size: 15px; font-weight: 700; line-height: 1.2; }

    /* Web access CTA */
    .hero-web-link {
      display: inline-flex; align-items: center; gap: 6px; margin-top: 10px;
      font-size: 13px; color: rgba(255,255,255,.55); text-decoration: none;
      border-bottom: 1px dashed rgba(255,255,255,.2); padding-bottom: 1px;
      transition: color .2s, border-color .2s;
    }
    .hero-web-link:hover { color: rgba(255,255,255,.9); border-color: rgba(255,255,255,.4); }
    .app-web-btn {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 10px 20px; margin-top: 20px;
      border: 1.5px solid rgba(124,58,237,.4); border-radius: 10px;
      color: rgba(255,255,255,.85); text-decoration: none;
      font-size: 14px; font-weight: 500; background: rgba(124,58,237,.08);
      transition: border-color .2s, background .2s, color .2s;
    }
    .app-web-btn:hover { border-color: rgba(124,58,237,.7); background: rgba(124,58,237,.15); color: #fff; }
    .app-web-note { margin: 8px 0 0; font-size: 12px; color: rgba(255,255,255,.45); }

    @media (max-width: 1024px) {
      .hero-inner { grid-template-columns: 1fr; }
      .mockup-frame { max-width: 560px; margin: 0 auto; }
      .pricing-grid { grid-template-columns: repeat(2, 1fr); }
      .pricing-more { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 768px) {
      section { padding: 56px 0; }
      .hero { padding: 40px 0; min-height: auto; }
      .cta-banner { padding: 40px 24px; margin: 0 16px; }
      .profile-panel-inner { grid-template-columns: 1fr; }
      .app-store-buttons { flex-direction: column; align-items: center; }
    }
    @media (max-width: 640px) {
      .hero-mockup { display: none; }
      .hero-sub { max-width: 100%; }
      .hero-actions { width: 100%; }
      .hero-actions .btn-primary { width: 100%; justify-content: center; }
      .hero-app-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 16px; }
      .hero-store-btn { justify-content: center; padding: 10px 12px; }
      .hero-note { font-size: 11px; flex-wrap: nowrap; white-space: nowrap; }
    }
    @media (max-width: 600px) {
      .pricing-grid { grid-template-columns: 1fr; }
      .pricing-more { grid-template-columns: repeat(2, 1fr); }
      .modules-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
    }
    @media (max-width: 480px) {
      .pricing-more { grid-template-columns: 1fr; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .container { padding: 0 16px; }
      h1 { font-size: 30px; }
    }
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
    }

/* === Davi Widget (loaded async) === */
    #davi-btn {
      position: fixed; bottom: 24px; right: 24px; z-index: 9999;
      height: 56px; border-radius: 28px; background: #7c3aed;
      border: none; cursor: pointer; display: flex; align-items: center;
      padding: 0 20px 0 8px; gap: 12px;
      box-shadow: 0 8px 32px rgba(124,58,237,.45);
      transition: transform .18s, background .15s, padding .2s, width .2s;
      color: #fff; white-space: nowrap; overflow: hidden;
    }
    #davi-btn:hover { transform: scale(1.03); background: #6d28d9; }
    #davi-btn.open {
      width: 56px; height: 56px; padding: 0; border-radius: 50%;
      justify-content: center; gap: 0;
    }
    #davi-btn-avatar {
      position: relative; width: 40px; height: 40px; border-radius: 50%;
      background: rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    #davi-btn-avatar svg { width: 18px; height: 18px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
    #davi-btn-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
    #davi-online-dot {
      position: absolute; bottom: 1px; right: 1px;
      width: 11px; height: 11px; border-radius: 50%;
      background: #4ade80; border: 2px solid #7c3aed;
    }
    #davi-btn-text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.2; }
    #davi-btn-text strong { font-size: 14px; font-weight: 700; color: #fff; }
    #davi-btn-text span { font-size: 11px; color: rgba(255,255,255,.92); }
    #davi-btn.open #davi-btn-avatar { display: none; }
    #davi-btn.open #davi-btn-text { display: none; }
    #davi-btn.open #davi-online-dot { display: none; }
    #davi-icon-x-close { display: none; width: 24px; height: 24px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
    #davi-btn.open #davi-icon-x-close { display: block; }
    #davi-window {
      position: fixed; bottom: 92px; right: 24px; z-index: 9998;
      width: 360px; max-width: calc(100vw - 32px); max-height: calc(100vh - 120px);
      border-radius: 20px; overflow: hidden; display: flex; flex-direction: column;
      box-shadow: 0 16px 48px rgba(0,0,0,.45); border: 1px solid rgba(255,255,255,.08);
      font-family: inherit;
      transform: translateY(12px) scale(.97); opacity: 0; pointer-events: none;
      transition: transform .2s cubic-bezier(.4,0,.2,1), opacity .2s;
    }
    #davi-window.open { transform: translateY(0) scale(1); opacity: 1; pointer-events: auto; }
    .davi-header {
      background: #7c3aed; padding: 12px 14px; display: flex; align-items: center; gap: 10px; flex-shrink: 0;
    }
    .davi-hicon {
      width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.15);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .davi-hicon svg { width: 16px; height: 16px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
    .davi-hicon img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
    .davi-htitle { flex: 1; }
    .davi-htitle strong { display: block; color: #fff; font-size: 13px; font-weight: 700; }
    .davi-htitle span { color: rgba(255,255,255,.65); font-size: 11px; }
    .davi-hcta {
      background: #fff; color: #7c3aed; font-size: 11px; font-weight: 700;
      padding: 6px 12px; border-radius: 20px; text-decoration: none; white-space: nowrap;
      transition: background .15s;
    }
    .davi-hcta:hover { background: #f3f0ff; }
    #davi-msgs {
      flex: 1; overflow-y: auto; background: #0d1117; padding: 14px; display: flex; flex-direction: column; gap: 10px;
      min-height: 180px;
    }
    .davi-msg { display: flex; }
    .davi-msg.user { justify-content: flex-end; }
    .davi-msg.bot { justify-content: flex-start; }
    .davi-bubble {
      max-width: 85%; padding: 10px 14px; border-radius: 18px; font-size: 13px; line-height: 1.55;
    }
    .davi-msg.user .davi-bubble { background: #7c3aed; color: #fff; border-bottom-right-radius: 4px; }
    .davi-msg.bot .davi-bubble { background: #1a1f2e; color: #e2e8f0; border-bottom-left-radius: 4px; border: 1px solid rgba(255,255,255,.07); }
    .davi-typing { display: flex; gap: 4px; align-items: center; padding: 4px 2px; }
    .davi-typing span { width: 6px; height: 6px; background: #7c3aed; border-radius: 50%; animation: davi-dot 1.2s infinite; }
    .davi-typing span:nth-child(2) { animation-delay: .2s; }
    .davi-typing span:nth-child(3) { animation-delay: .4s; }
    @keyframes davi-dot { 0%,80%,100% { transform: scale(.7); opacity: .4; } 40% { transform: scale(1); opacity: 1; } }
    #davi-cta-card {
      background: rgba(124,58,237,.12); border: 1px solid rgba(124,58,237,.25); border-radius: 14px;
      padding: 12px; text-align: center;
    }
    #davi-cta-card p { color: #94a3b8; font-size: 11px; margin: 0 0 8px; }
    #davi-cta-card a {
      display: inline-flex; align-items: center; gap: 6px; background: #7c3aed; color: #fff;
      font-size: 13px; font-weight: 700; padding: 8px 18px; border-radius: 20px; text-decoration: none;
      transition: background .15s;
    }
    #davi-cta-card a:hover { background: #6d28d9; }
    #davi-cta-card small { display: block; color: #64748b; font-size: 10px; margin-top: 6px; }
    .davi-quick {
      background: #0d1117; border-top: 1px solid rgba(255,255,255,.06); padding: 10px 12px;
      display: flex; flex-wrap: wrap; gap: 6px; flex-shrink: 0;
    }
    .davi-quick button {
      background: #1a1f2e; border: 1px solid rgba(255,255,255,.1); color: #94a3b8;
      font-size: 11px; padding: 5px 10px; border-radius: 20px; cursor: pointer;
      transition: border-color .15s, color .15s, background .15s; font-family: inherit;
    }
    .davi-quick button:hover { border-color: #7c3aed; color: #e2e8f0; background: rgba(124,58,237,.1); }
    #davi-form {
      background: #0d1117; border-top: 1px solid rgba(255,255,255,.06);
      padding: 10px 12px; display: flex; gap: 8px; align-items: center; flex-shrink: 0;
    }
    #davi-input {
      flex: 1; background: #1a1f2e; border: 1px solid rgba(255,255,255,.1); border-radius: 20px;
      padding: 8px 14px; font-size: 13px; color: #e2e8f0; outline: none; font-family: inherit;
      transition: border-color .15s;
    }
    #davi-input:focus { border-color: #7c3aed; }
    #davi-input::placeholder { color: #475569; }
    #davi-send {
      width: 36px; height: 36px; border-radius: 50%; background: #7c3aed; border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
      transition: background .15s, opacity .15s;
    }
    #davi-send:disabled { opacity: .4; cursor: default; }
    #davi-send svg { width: 15px; height: 15px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
    .davi-footer {
      background: #0d1117; border-top: 1px solid rgba(255,255,255,.06);
      padding: 8px 14px; display: flex; align-items: center; justify-content: space-between; flex-shrink: 0;
    }
    .davi-footer span { color: #475569; font-size: 10px; }
    .davi-footer a { color: #7c3aed; font-size: 10px; font-weight: 700; text-decoration: none; }
    .davi-footer a:hover { text-decoration: underline; }
  

/* ── ROI Calculator ─────────────────────────────────────────────────────── */
.roi-section { padding: 72px 0; background: rgba(124,58,237,.04); }
.roi-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: 20px; padding: 36px; max-width: 820px; margin: 0 auto; }
.roi-inputs { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 20px; }
.roi-field { display: flex; flex-direction: column; gap: 8px; }
.roi-field label { font-size: .85rem; font-weight: 600; color: #94a3b8; letter-spacing: .02em; }
.roi-field input { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 10px; padding: 10px 14px; color: #e2e8f0; font-size: 1rem; font-weight: 600; width: 100%; box-sizing: border-box; outline: none; transition: border-color .2s; }
.roi-field input:focus { border-color: #7c3aed; }
.roi-divider { height: 1px; background: rgba(255,255,255,.07); margin: 28px 0; }
.roi-results { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px,1fr)); gap: 16px; }
.roi-result-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 14px; padding: 20px; text-align: center; }
.roi-result-card.roi-result-highlight { background: rgba(124,58,237,.15); border-color: rgba(124,58,237,.4); }
.roi-result-value { font-size: 1.8rem; font-weight: 800; color: #e2e8f0; line-height: 1.1; margin-bottom: 6px; }
.roi-result-highlight .roi-result-value { color: #a78bfa; }
.roi-result-label { font-size: .8rem; color: #64748b; font-weight: 500; }
.roi-disclaimer { font-size: .78rem; color: #475569; margin-top: 24px; text-align: center; }
.roi-cta { display: inline-flex; align-items: center; justify-content: center; margin: 24px auto 0; background: linear-gradient(135deg, #7c3aed, #5b21b6); color: #fff; font-weight: 700; font-size: .95rem; padding: 13px 32px; border-radius: 12px; text-decoration: none; transition: opacity .2s; width: 100%; box-sizing: border-box; }
.roi-cta:hover { opacity: .85; }

