:root {
      --bg: #070b0f;
      --bg2: #0d1117;
      --bg3: #111820;
      --accent: #00ff88;
      --accent2: #00cfff;
      --accent3: #7c3aed;
      --text: #e2e8f0;
      --muted: #64748b;
      --border: rgba(0,255,136,0.15);
      --card: rgba(13,17,23,0.9);
      --font-head: 'Syne', sans-serif;
      --font-mono: 'Space Mono', monospace;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--font-mono);
      overflow-x: hidden;
    }
 
    /* ── GRID OVERLAY ── */
    body::before {
      content: '';
      position: fixed; inset: 0; z-index: 0; pointer-events: none;
      background-image:
        linear-gradient(rgba(0,255,136,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,255,136,0.03) 1px, transparent 1px);
      background-size: 60px 60px;
    }
 
    /* ── NAVBAR ── */
    .navbar {
      background: rgba(7,11,15,0.92) !important;
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      padding: 1rem 0;
      position: sticky; top: 0; z-index: 1000;
    }
    .navbar-brand {
      font-family: var(--font-head);
      font-weight: 800;
      font-size: 1.5rem;
      color: var(--accent) !important;
      letter-spacing: -0.5px;
    }
    .navbar-brand span { color: var(--accent2); }
    .nav-link {
      color: var(--muted) !important;
      font-size: 0.8rem;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      padding: 0.5rem 1rem !important;
      transition: color 0.2s;
    }
    .nav-link:hover { color: var(--accent) !important; }
    .btn-nav {
      background: var(--accent);
      color: var(--bg) !important;
      font-weight: 700;
      font-size: 0.8rem;
      padding: 0.45rem 1.2rem !important;
      border-radius: 2px;
      letter-spacing: 0.05em;
      transition: all 0.2s;
    }
    .btn-nav:hover { background: var(--accent2); }
    .navbar-toggler { border-color: var(--border); }
    .navbar-toggler-icon { filter: invert(1); }
 
    /* ── HERO ── */
    #hero {
      min-height: 100vh;
      display: flex; align-items: center;
      position: relative;
      padding: 6rem 0 4rem;
      overflow: hidden;
    }
    .hero-glow {
      position: absolute;
      border-radius: 50%;
      filter: blur(120px);
      pointer-events: none;
    }
    .glow-1 {
      width: 600px; height: 600px;
      background: rgba(0,255,136,0.07);
      top: -150px; left: -150px;
    }
    .glow-2 {
      width: 500px; height: 500px;
      background: rgba(0,207,255,0.06);
      bottom: -100px; right: -100px;
    }
    .hero-tag {
      display: inline-block;
      background: rgba(0,255,136,0.1);
      border: 1px solid var(--border);
      color: var(--accent);
      font-size: 0.72rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 0.35rem 0.85rem;
      border-radius: 2px;
      margin-bottom: 1.5rem;
    }
    .hero h1 {
      font-family: var(--font-head);
      font-weight: 800;
      font-size: clamp(2.8rem, 6vw, 5.5rem);
      line-height: 1.05;
      letter-spacing: -2px;
      margin-bottom: 1.5rem;
    }
    .hero h1 .line-accent { color: var(--accent); }
    .hero h1 .line-cyan { color: var(--accent2); }
    .hero-desc {
      color: var(--muted);
      font-size: 0.9rem;
      line-height: 1.9;
      max-width: 500px;
      margin-bottom: 2.5rem;
    }
    .btn-primary-custom {
      background: var(--accent);
      color: var(--bg);
      font-family: var(--font-mono);
      font-weight: 700;
      font-size: 0.85rem;
      letter-spacing: 0.05em;
      padding: 0.85rem 2rem;
      border: none;
      border-radius: 2px;
      text-decoration: none;
      display: inline-block;
      transition: all 0.25s;
    }
    .btn-primary-custom:hover {
      background: #00e67a;
      color: var(--bg);
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(0,255,136,0.3);
    }
    .btn-outline-custom {
      border: 1px solid var(--border);
      color: var(--text);
      font-family: var(--font-mono);
      font-size: 0.85rem;
      padding: 0.85rem 2rem;
      border-radius: 2px;
      text-decoration: none;
      display: inline-block;
      transition: all 0.25s;
    }
    .btn-outline-custom:hover {
      border-color: var(--accent2);
      color: var(--accent2);
    }
    .hero-stats {
      display: flex; gap: 2.5rem;
      margin-top: 3.5rem;
      flex-wrap: wrap;
    }
    .stat-item .num {
      font-family: var(--font-head);
      font-size: 2rem;
      font-weight: 800;
      color: var(--accent);
    }
    .stat-item .label {
      font-size: 0.72rem;
      color: var(--muted);
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    /* Code window */
    .code-window {
      background: var(--bg2);
      border: 1px solid var(--border);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 40px 80px rgba(0,0,0,0.6);
      position: relative;
    }
    .code-titlebar {
      background: var(--bg3);
      padding: 0.75rem 1rem;
      display: flex; align-items: center; gap: 0.5rem;
      border-bottom: 1px solid var(--border);
    }
    .dot { width: 12px; height: 12px; border-radius: 50%; }
    .dot-r { background: #ff5f57; }
    .dot-y { background: #febc2e; }
    .dot-g { background: #28c840; }
    .code-title { color: var(--muted); font-size: 0.72rem; margin-left: 0.5rem; }
    .code-body { padding: 1.5rem; font-size: 0.8rem; line-height: 1.9; }
    .kw { color: #c792ea; }
    .fn { color: #82aaff; }
    .str { color: #c3e88d; }
    .cm { color: #546e7a; }
    .ac { color: var(--accent); }
    .cy { color: var(--accent2); }
    .cursor {
      display: inline-block;
      width: 2px; height: 1em;
      background: var(--accent);
      vertical-align: text-bottom;
      animation: blink 1s infinite;
    }
    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
 
    /* ── SECTIONS ── */
    section { position: relative; z-index: 1; }
    .section-tag {
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 0.75rem;
    }
    .section-title {
      font-family: var(--font-head);
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 800;
      letter-spacing: -1px;
      margin-bottom: 1rem;
    }
    .section-desc {
      color: var(--muted);
      font-size: 0.85rem;
      line-height: 1.9;
      max-width: 520px;
    }
    .divider {
      border: none;
      height: 1px;
      background: var(--border);
      margin: 0;
    }
 
    /* ── ABOUT ── */
    #about { padding: 6rem 0; background: var(--bg2); }
    .about-card {
      background: var(--bg3);
      border: 1px solid var(--border);
      border-radius: 4px;
      padding: 2rem;
      height: 100%;
      transition: border-color 0.3s;
    }
    .about-card:hover { border-color: var(--accent); }
    .about-icon {
      width: 48px; height: 48px;
      background: rgba(0,255,136,0.1);
      border-radius: 4px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem;
      color: var(--accent);
      margin-bottom: 1.25rem;
    }
    .about-card h5 {
      font-family: var(--font-head);
      font-weight: 700;
      font-size: 1rem;
      margin-bottom: 0.6rem;
    }
    .about-card p { color: var(--muted); font-size: 0.8rem; line-height: 1.8; margin: 0; }
 
    /* ── SERVICES ── */
    #services { padding: 6rem 0; }
    .service-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 4px;
      padding: 2rem;
      height: 100%;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    }
    .service-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--accent), var(--accent2));
      transform: scaleX(0);
      transition: transform 0.3s;
    }
    .service-card:hover::before { transform: scaleX(1); }
    .service-card:hover {
      transform: translateY(-4px);
      border-color: rgba(0,255,136,0.3);
      box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    }
    .service-num {
      font-size: 0.7rem;
      color: var(--accent);
      letter-spacing: 0.15em;
      margin-bottom: 1rem;
    }
    .service-card h5 {
      font-family: var(--font-head);
      font-weight: 700;
      font-size: 1.1rem;
      margin-bottom: 0.75rem;
    }
    .service-card p { color: var(--muted); font-size: 0.8rem; line-height: 1.8; margin-bottom: 1.25rem; }
    .service-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
    .tag {
      font-size: 0.68rem;
      padding: 0.2rem 0.6rem;
      background: rgba(0,207,255,0.08);
      border: 1px solid rgba(0,207,255,0.2);
      color: var(--accent2);
      border-radius: 2px;
      letter-spacing: 0.05em;
    }
 
    /* ── WHY CHOOSE ── */
    #why { padding: 6rem 0; background: var(--bg2); }
    .why-item {
      display: flex; gap: 1.25rem;
      padding: 1.5rem 0;
      border-bottom: 1px solid var(--border);
    }
    .why-item:last-child { border-bottom: none; }
    .why-icon {
      width: 42px; height: 42px; flex-shrink: 0;
      background: rgba(0,255,136,0.08);
      border: 1px solid var(--border);
      border-radius: 4px;
      display: flex; align-items: center; justify-content: center;
      color: var(--accent);
      font-size: 1.1rem;
    }
    .why-item h6 {
      font-family: var(--font-head);
      font-weight: 700;
      margin-bottom: 0.3rem;
    }
    .why-item p { color: var(--muted); font-size: 0.8rem; line-height: 1.7; margin: 0; }
    .why-visual {
      background: var(--bg3);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 2rem;
      height: 100%;
      display: flex; flex-direction: column; justify-content: center; gap: 1.5rem;
    }
    .metric-row { display: flex; flex-direction: column; gap: 0.4rem; }
    .metric-label { font-size: 0.72rem; color: var(--muted); display: flex; justify-content: space-between; }
    .metric-bar {
      height: 6px;
      background: var(--bg);
      border-radius: 3px;
      overflow: hidden;
    }
    .metric-fill {
      height: 100%;
      border-radius: 3px;
      background: linear-gradient(90deg, var(--accent), var(--accent2));
      animation: grow 1.5s ease forwards;
    }
    @keyframes grow { from { width: 0 } }
 
    /* ── PRICING ── */
    #pricing { padding: 6rem 0; }
    .pricing-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 4px;
      padding: 2.5rem;
      height: 100%;
      position: relative;
      transition: transform 0.3s, border-color 0.3s;
    }
    .pricing-card.featured {
      border-color: var(--accent);
      background: linear-gradient(160deg, rgba(0,255,136,0.05), var(--card));
    }
    .pricing-card:hover { transform: translateY(-4px); }
    .plan-badge {
      position: absolute;
      top: -1px; right: 1.5rem;
      background: var(--accent);
      color: var(--bg);
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      padding: 0.25rem 0.75rem;
      border-radius: 0 0 4px 4px;
    }
    .plan-name {
      font-size: 0.7rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 0.5rem;
    }
    .plan-price {
      font-family: var(--font-head);
      font-size: 3rem;
      font-weight: 800;
      letter-spacing: -2px;
      color: var(--text);
    }
    .plan-price sup { font-size: 1.2rem; vertical-align: super; font-weight: 400; }
    .plan-price sub { font-size: 0.9rem; color: var(--muted); font-weight: 400; letter-spacing: 0; }
    .plan-desc { font-size: 0.78rem; color: var(--muted); margin: 0.75rem 0 1.5rem; }
    .plan-features { list-style: none; padding: 0; margin-bottom: 2rem; }
    .plan-features li {
      font-size: 0.8rem;
      color: var(--text);
      padding: 0.5rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.04);
      display: flex; align-items: center; gap: 0.6rem;
    }
    .plan-features li i { color: var(--accent); font-size: 0.75rem; }
    .plan-features li.off { color: var(--muted); }
    .plan-features li.off i { color: var(--muted); }
    .btn-plan {
      display: block; width: 100%; text-align: center;
      padding: 0.85rem;
      font-family: var(--font-mono);
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      border-radius: 2px;
      text-decoration: none;
      transition: all 0.25s;
    }
    .btn-plan-outline {
      border: 1px solid var(--border);
      color: var(--text);
    }
    .btn-plan-outline:hover { border-color: var(--accent); color: var(--accent); }
    .btn-plan-solid {
      background: var(--accent);
      color: var(--bg);
      border: none;
    }
    .btn-plan-solid:hover { background: #00e67a; color: var(--bg); }
 
    /* ── FAQ ── */
    #faq { padding: 6rem 0; background: var(--bg2); }
    .accordion-item {
      background: var(--bg3) !important;
      border: 1px solid var(--border) !important;
      border-radius: 4px !important;
      margin-bottom: 0.75rem;
      overflow: hidden;
    }
    .accordion-button {
      background: var(--bg3) !important;
      color: var(--text) !important;
      font-family: var(--font-mono);
      font-size: 0.85rem;
      font-weight: 700;
      box-shadow: none !important;
      padding: 1.25rem 1.5rem;
    }
    .accordion-button:not(.collapsed) { color: var(--accent) !important; }
    .accordion-button::after {
      filter: invert(1) sepia(1) saturate(2) hue-rotate(90deg);
    }
    .accordion-body {
      background: var(--bg3);
      color: var(--muted);
      font-size: 0.82rem;
      line-height: 1.9;
      padding: 0 1.5rem 1.5rem;
    }
 
    /* ── FOOTER ── */
    footer {
      background: var(--bg);
      border-top: 1px solid var(--border);
      padding: 3rem 0 1.5rem;
    }
    footer .brand {
      font-family: var(--font-head);
      font-size: 1.4rem;
      font-weight: 800;
      color: var(--accent);
      margin-bottom: 0.75rem;
    }
    footer p { color: var(--muted); font-size: 0.78rem; line-height: 1.8; max-width: 300px; }
    footer h6 {
      font-size: 0.7rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 1rem;
    }
    footer a {
      display: block;
      color: var(--muted);
      font-size: 0.8rem;
      text-decoration: none;
      margin-bottom: 0.5rem;
      transition: color 0.2s;
    }
    footer a:hover { color: var(--accent); }
    .footer-bottom {
      border-top: 1px solid var(--border);
      margin-top: 2.5rem;
      padding-top: 1.5rem;
      color: var(--muted);
      font-size: 0.75rem;
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: 1rem;
    }
 
    /* ── ANIMATE ON SCROLL ── */
    .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }


    #cookiePopup h4 {
        font-size: 25px;
        color: #fff;
        margin-bottom: 15px;
    }
    #cookiePopup p {
        font-size: 15px;
        color: #fff;
        margin-bottom: 15px;
        letter-spacing: 1px;
        line-height: 1.5;
        max-width: 850px;
    }
    #cookiePopup p a {
        color: #fff;
        text-decoration: underline;
    }
    .cookieBtns {
        display: inline-flex;
        gap: 10px;
    }
    .cookieBtns button {
        font-size: 15px;
        margin: 10px 0;
        color: #fff;
padding: 10px 20px;
border-radius: 5px;
background: #000;
cursor: pointer;
transition: all 0.5s ease;
border: 2px solid #fff;
}
.cookieBtns button:last-child {
background-color: #fff;
color: #666 !important;
}

a.brand img {
    width: auto;
    height: 32px;
}

.payment-icons-strip img {
    width: auto;
    height: 38px;
    background: #fff;
    padding: 2px;
    border-radius: 5px;
}

h3.checkout-title {
    font-size: 24px;
    color: #00ff88;
    margin: 10px 0;
}

h3.summary-title {
    font-size: 24px;
    color: #00ff88;
    margin: 10px 0;
}

.checkout-card label {
    margin: 10px 0;
}

.order-item {
    display: flex;
    border-bottom: 1px solid #ddd;
    justify-content: space-between;
    padding: 10px 0;
}

.total-row {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
}

.d-flex {
    display: flex;
}

.terms-container input {
    width: 26px;
    height: 26px;
    margin: 0px 8px;
}