
    :root {
      --bg:          #080810;
      --surface:     #0F0F1E;
      --surface-2:   #16162A;
      --border:      rgba(255,255,255,0.07);
      --purple:      #8B5CF6;
      --purple-glow: rgba(139,92,246,0.22);
      --green:       #10B981;
      --green-glow:  rgba(16,185,129,0.18);
      --text:        #F1F1F5;
      --muted:       rgba(241,241,245,0.48);
      --radius:      16px;
      --transition:  0.3s ease;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Outfit', sans-serif;
      background: var(--bg); color: var(--text);
      line-height: 1.6; overflow-x: hidden;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { text-decoration: none; color: inherit; }

    /* PRELOADER */
    #preloader {
      position: fixed; inset: 0; background: var(--bg);
      display: flex; align-items: center; justify-content: center;
      z-index: 9999; transition: opacity 0.5s ease;
    }
    #preloader.hidden { opacity: 0; pointer-events: none; }
    .preloader-ring {
      width: 40px; height: 40px;
      border: 3px solid var(--border);
      border-top-color: var(--purple);
      border-radius: 50%;
      animation: spin 0.8s linear infinite;
    }
    @keyframes spin { to { transform: rotate(360deg); } }

    /* HEADER */
    .site-header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      height: 68px; padding: 0 2rem;
      display: flex; align-items: center; justify-content: space-between;
      transition: background var(--transition), border-bottom var(--transition);
    }
    .site-header.scrolled {
      background: rgba(8,8,16,0.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }

    .logo-mark { display: flex; align-items: center; gap: 10px; }
    .logo-icon {
      width: 36px; height: 36px;
      background: linear-gradient(135deg, var(--purple), var(--green));
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem;
    }
    .logo-text {
      font-size: 1.1rem; font-weight: 800;
      background: linear-gradient(90deg, var(--purple), var(--green));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .header-nav { display: flex; gap: 2rem; align-items: center; }
    .header-nav a {
      font-size: 0.88rem; font-weight: 500;
      color: var(--muted); transition: color var(--transition);
    }
    .header-nav a:hover { color: var(--text); }
    .nav-cta {
      padding: 8px 20px; background: var(--purple); color: white;
      border-radius: 50px; font-size: 0.85rem; font-weight: 600;
      transition: all var(--transition);
    }
    .nav-cta:hover { background: #7C3AED; transform: translateY(-1px); }
    .nav-toggle {
      display: none; flex-direction: column; gap: 5px;
      cursor: pointer; background: none; border: none;
    }
    .nav-toggle span { width: 22px; height: 2px; background: var(--text); display: block; }

    /* HERO */
    .hero {
      min-height: 100vh;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      text-align: center; padding: 100px 2rem 80px;
      position: relative; overflow: hidden;
    }
    .hero::before {
      content: ''; position: absolute; inset: 0;
      background:
        radial-gradient(ellipse at 28% 42%, rgba(139,92,246,0.22) 0%, transparent 55%),
        radial-gradient(ellipse at 76% 58%, rgba(16,185,129,0.14) 0%, transparent 48%),
        radial-gradient(ellipse at 50% 88%, rgba(139,92,246,0.10) 0%, transparent 40%);
      pointer-events: none;
    }
    .hero::after {
      content: ''; position: absolute; inset: 0;
      background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
      background-size: 60px 60px;
      pointer-events: none; opacity: 0.45;
    }

    .hero-content { position: relative; z-index: 1; max-width: 840px; }
    .hero-pill {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(139,92,246,0.10);
      border: 1px solid rgba(139,92,246,0.28);
      color: #A78BFA; font-size: 0.8rem; font-weight: 600;
      padding: 6px 16px; border-radius: 50px; margin-bottom: 2rem;
    }
    .hero-pill::before {
      content: ''; width: 7px; height: 7px;
      background: var(--green); border-radius: 50%;
      animation: blink 1.5s infinite;
    }
    @keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }

    .hero h1 {
      font-size: clamp(2.8rem, 7vw, 5.5rem);
      font-weight: 900; line-height: 1.05;
      letter-spacing: -2px; margin-bottom: 1.5rem;
    }
    .grad {
      background: linear-gradient(90deg, var(--purple), var(--green));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero p {
      font-size: 1.1rem; color: var(--muted);
      max-width: 520px; margin: 0 auto 2.5rem;
    }
    .hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

    .btn-primary {
      padding: 14px 32px;
      background: linear-gradient(135deg, var(--purple), #6D28D9);
      color: white; font-weight: 700; font-size: 0.95rem;
      font-family: 'Outfit', sans-serif;
      border: none; border-radius: 50px; cursor: pointer;
      box-shadow: 0 0 24px var(--purple-glow);
      transition: all var(--transition);
    }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(139,92,246,0.38); }
    .btn-ghost {
      padding: 14px 32px;
      background: transparent; color: var(--text);
      border: 1px solid var(--border); border-radius: 50px;
      font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.95rem;
      cursor: pointer; transition: all var(--transition);
    }
    .btn-ghost:hover { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.04); }

    .hero-stats {
      position: absolute; bottom: 0; left: 0; right: 0;
      border-top: 1px solid var(--border);
      display: flex; align-items: stretch; justify-content: center;
      z-index: 1;
      background: rgba(8,8,16,0.6); backdrop-filter: blur(8px);
    }
    .stat-item {
      flex: 1; max-width: 240px;
      padding: 1.2rem 1rem; text-align: center;
      border-right: 1px solid var(--border);
    }
    .stat-item:last-child { border-right: none; }
    .stat-num { font-size: 1.5rem; font-weight: 800; color: var(--purple); display: block; }
    .stat-label { font-size: 0.73rem; color: var(--muted); }

    /* SECTIONS */
    .section { padding: 90px 2rem; }
    .section-inner { max-width: 1100px; margin: 0 auto; }
    .services { background: var(--surface); }
    .section-eyebrow {
      font-size: 0.72rem; font-weight: 700; letter-spacing: 3px;
      text-transform: uppercase; color: var(--purple); margin-bottom: 0.8rem;
    }
    .section-title {
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 800; line-height: 1.15;
      margin-bottom: 1rem; letter-spacing: -1px;
    }
    .section-sub {
      font-size: 1rem; color: var(--muted);
      max-width: 500px; margin: 0 auto 3.5rem; line-height: 1.7;
    }
    .text-center { text-align: center; }

    /* SERVICE CARDS */
    .services-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
    }
    .service-card {
      background: var(--surface-2);
      border: 1px solid var(--border);
      border-radius: var(--radius); padding: 2rem;
      transition: border-color var(--transition), transform var(--transition);
      opacity: 0; transform: translateY(24px);
    }
    .service-card.visible { animation: fadeUp 0.5s forwards; }
    @keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
    .service-card:hover { border-color: rgba(139,92,246,0.35); transform: translateY(-4px); }
    .service-card:nth-child(2):hover,
    .service-card:nth-child(3):hover { border-color: rgba(16,185,129,0.35); }
    .card-icon {
      width: 52px; height: 52px;
      background: var(--purple-glow);
      border: 1px solid rgba(139,92,246,0.25);
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 1.2rem; font-size: 1.4rem; color: var(--purple);
    }
    .service-card:nth-child(2) .card-icon,
    .service-card:nth-child(3) .card-icon {
      background: var(--green-glow);
      border-color: rgba(16,185,129,0.25); color: var(--green);
    }
    .service-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
    .service-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }
    .card-tag {
      display: inline-block; margin-top: 1rem;
      font-size: 0.7rem; font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; color: var(--purple);
    }
    .service-card:nth-child(2) .card-tag,
    .service-card:nth-child(3) .card-tag { color: var(--green); }

    /* PLANS */
    .plans { background: var(--bg); }
    .plans-card {
      background: var(--surface-2);
      border: 1px solid var(--border);
      border-radius: 24px; padding: 3rem;
      max-width: 620px; margin: 0 auto; text-align: center;
    }
    .plans-icon {
      width: 64px; height: 64px;
      background: linear-gradient(135deg, var(--purple), var(--green));
      border-radius: 18px; margin: 0 auto 1.5rem;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.8rem;
    }
    .plans-perks { list-style: none; text-align: left; margin: 1.5rem 0 2rem; }
    .plans-perks li {
      display: flex; align-items: center; gap: 12px;
      padding: 10px 0; font-size: 0.95rem;
      border-bottom: 1px solid var(--border);
    }
    .plans-perks li:last-child { border-bottom: none; }
    .plans-perks li i { color: var(--green); font-size: 1rem; width: 18px; flex-shrink: 0; }

    .email-form { display: flex; }
    .email-form input {
      flex: 1; padding: 13px 18px;
      background: var(--surface); border: 1px solid var(--border);
      border-right: none; border-radius: 50px 0 0 50px;
      color: var(--text); font-family: 'Outfit', sans-serif; font-size: 0.9rem;
      outline: none; transition: border var(--transition);
    }
    .email-form input::placeholder { color: var(--muted); }
    .email-form input:focus { border-color: rgba(139,92,246,0.4); }
    .email-form button {
      padding: 13px 24px; background: var(--purple); color: white;
      border: none; border-radius: 0 50px 50px 0;
      font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.9rem;
      cursor: pointer; transition: background var(--transition);
    }
    .email-form button:hover { background: #7C3AED; }
    #subscribe-thanks {
      display: none; margin-top: 1rem;
      color: var(--green); font-weight: 600; font-size: 0.9rem;
    }

    /* FAQ */
    .faq { background: var(--surface); }
    .faq-list { max-width: 680px; margin: 0 auto; }
    .faq-item {
      border: 1px solid var(--border);
      border-radius: var(--radius); margin-bottom: 0.8rem;
      overflow: hidden; transition: border-color var(--transition);
    }
    .faq-item[open] { border-color: rgba(139,92,246,0.3); }
    .faq-item summary {
      padding: 1.1rem 1.4rem; font-weight: 600; font-size: 0.97rem;
      cursor: pointer; list-style: none;
      display: flex; justify-content: space-between; align-items: center;
    }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary::after {
      content: '\f067'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
      font-size: 0.75rem; color: var(--purple); flex-shrink: 0;
    }
    .faq-item[open] summary::after { content: '\f068'; }
    .faq-answer { padding: 0 1.4rem 1.2rem; color: var(--muted); font-size: 0.93rem; line-height: 1.7; }

    /* FOOTER */
    .site-footer {
      background: var(--surface); border-top: 1px solid var(--border);
      padding: 3rem 2rem; text-align: center;
    }
    .footer-logo {
      font-size: 1.3rem; font-weight: 800; margin-bottom: 0.5rem;
      background: linear-gradient(90deg, var(--purple), var(--green));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text; display: inline-block;
    }
    .footer-tagline { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.5rem; }
    .footer-links {
      display: flex; flex-wrap: wrap; justify-content: center;
      gap: 0.8rem 2rem; margin-bottom: 1.5rem;
    }
    .footer-links a { font-size: 0.82rem; color: var(--muted); transition: color var(--transition); }
    .footer-links a:hover { color: var(--purple); }
    .footer-divider { height: 1px; background: var(--border); margin: 0 auto 1.5rem; }
    .footer-legal { font-size: 0.76rem; color: rgba(241,241,245,0.25); max-width: 700px; margin: 0 auto; line-height: 1.6; }

    /* RESPONSIVE */
    @media (max-width: 768px) {
      .hero-stats { display: none; }
      .header-nav {
        display: none; flex-direction: column; gap: 0;
        position: fixed; top: 68px; left: 0; right: 0;
        background: rgba(8,8,16,0.98); backdrop-filter: blur(12px);
        padding: 1rem 0; border-bottom: 1px solid var(--border);
      }
      .header-nav.open { display: flex; }
      .header-nav a, .nav-cta { padding: 0.8rem 2rem; border-radius: 0; background: transparent; color: var(--text); }
      .nav-toggle { display: flex; }
      .services-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 480px) {
      .email-form { flex-direction: column; }
      .email-form input { border-right: 1px solid var(--border); border-bottom: none; border-radius: 50px 50px 0 0; }
      .email-form button { border-radius: 0 0 50px 50px; }
      .hero-actions { flex-direction: column; align-items: center; }
    }
  
/* Footer contact line (added by _to_php.py) */
.footer-contact { font-size: 0.82rem; opacity: 0.75; margin-bottom: 0.5rem; }
.footer-contact a { text-decoration: underline; }
