
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html, body { overflow-x: hidden; max-width: 100%; }
    :root {
      --ink: #ffffff;
      --deep: #f5f5f5;
      --panel: #f9f9f9;
      --card: rgba(0,0,0,0.03);
      --border: rgba(0,0,0,0.1);
      --blue: #0057FF;
      --blue-dim: rgba(0,87,255,0.08);
      --blue-glow: rgba(0,87,255,0.2);
      --cyan: #0057FF;
      --cyan-dim: rgba(0,87,255,0.08);
      --cyan-glow: rgba(0,87,255,0.2);
      --gold: #0057FF;
      --white: #111111;
      --muted: #555555;
      --soft: #333333;
      --radius: 14px;
    }
    body { background: #000000; color: #e5e7eb; font-family: 'Inter', sans-serif; font-size: 16px; line-height: 1.6; overflow-x: hidden; }
    h1,h2,h3,h4,.brand { font-family: 'Raleway', sans-serif; }
    .wrap { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }

    /* ── NAV ── */
    nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; display: flex; align-items: center; justify-content: space-between; padding: 0 2rem; height: 64px; background: rgba(0,0,0,0.88); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(0,0,0,0.1); }
    .brand { font-size: 1.55rem; font-weight: 900; color: #ffffff; text-decoration: none; letter-spacing: -0.03em; }
    .brand em { color: #ffffff; font-style: normal; } .brand em:last-child { color: #0057FF; }
    .nav-links { display: flex; align-items: center; gap: 2.2rem; list-style: none; }
    .nav-links a { color: #9ca3af; text-decoration: none; font-size: 0.88rem; font-weight: 500; transition: color 0.2s; }
    .nav-links a:hover { color: #ffffff; }
    .nav-cta { background: #0057FF !important; color: #ffffff !important; padding: 0.5rem 1.35rem; border-radius: 6px; font-weight: 700 !important; }
    .nav-cta:hover { background: #0040cc !important; }

    /* ── HERO ── */
    .page-hero {
      padding: 100px 0 0;
      background: #000000;
      position: relative;
      overflow: hidden;
    }
    .page-hero::before { display: none; }
    .page-hero .wrap { position: relative; z-index: 1; display: flex; align-items: flex-end; gap: 3rem; }
    .hero-left { flex: 1; padding-bottom: 80px; }
    .hero-right { flex: 1; display: flex; align-items: flex-end; justify-content: center; max-width: 520px; }
    .hero-right img { width: 100%; max-height: 520px; object-fit: cover; object-position: top center; border-radius: 20px 20px 0 0; display: block; }
    .section-eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(0,87,255,0.12); border: 1px solid rgba(0,87,255,0.3); color: #4d8fff; padding: 0.35rem 0.9rem; border-radius: 100px; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.25rem; }
    .page-hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); font-weight: 900; line-height: 1.08; letter-spacing: -0.035em; margin-bottom: 1.25rem; color: #ffffff; }
    .page-hero h1 .accent { background: linear-gradient(135deg, #4d8fff, #0057FF); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
    .page-hero p { font-size: 1rem; color: rgba(255,255,255,0.65); max-width: 480px; line-height: 1.8; font-weight: 300; margin-bottom: 2rem; }
    .hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
    .hero-btn-primary { background: #0057FF; color: #fff; padding: 0.9rem 1.8rem; border-radius: 8px; font-family: 'Raleway', sans-serif; font-weight: 800; font-size: 0.92rem; text-decoration: none; transition: background 0.2s; white-space: nowrap; }
    .hero-btn-primary:hover { background: #0040cc; }
    .hero-btn-secondary { background: rgba(255,255,255,0.08); color: #fff; padding: 0.9rem 1.8rem; border-radius: 8px; font-family: 'Raleway', sans-serif; font-weight: 700; font-size: 0.92rem; text-decoration: none; border: 1px solid rgba(255,255,255,0.15); transition: all 0.2s; white-space: nowrap; }
    .hero-btn-secondary:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.3); }
    .hero-ratings { display: flex; gap: 1.5rem; flex-wrap: wrap; align-items: center; }
    .rating-badge { display: flex; flex-direction: column; align-items: flex-start; gap: 0.2rem; }
    .rating-badge .r-score { font-family: 'Raleway', sans-serif; font-weight: 900; font-size: 1.3rem; color: #fff; line-height: 1; }
    .rating-badge .r-stars { color: #f59e0b; font-size: 0.7rem; letter-spacing: 0.1em; }
    .rating-badge .r-platform { font-size: 0.7rem; color: rgba(255,255,255,0.45); font-weight: 500; letter-spacing: 0.04em; }
    .rating-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.12); }
    .hero-trust { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 100px; padding: 0.45rem 1.1rem; font-size: 0.82rem; color: rgba(255,255,255,0.65); margin-top: 0.5rem; }
    .hero-trust .stars { color: #f59e0b; letter-spacing: 0.05em; }
    @media(max-width:900px) { .page-hero .wrap { flex-direction: column; align-items: flex-start; } .hero-right { display: none; } .hero-left { padding-bottom: 60px; } }

    /* ── STATS BAR ── */
    .stats-bar { background: #080E1E; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 0; }
    .stats-bar-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
    .stat-item { padding: 2.5rem 2rem; text-align: center; position: relative; }
    .stat-item:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 20%; bottom: 20%; width: 1px; background: rgba(255,255,255,0.1); }
    .stat-number { font-family: 'Raleway', sans-serif; font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 900; color: #ffffff; letter-spacing: -0.03em; line-height: 1; margin-bottom: 0.4rem; }
    .stat-number span { color: #7eb8ff; }
    .stat-label { font-size: 0.82rem; font-weight: 500; color: rgba(255,255,255,0.5); letter-spacing: 0.01em; }

    /* ── GENERAL SECTION ── */
    section { padding: 80px 0; }
    .section-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #0057FF; margin-bottom: 0.75rem; }
    .section-title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 900; letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 1rem; }
    .section-sub { color: #9ca3af; font-size: 0.97rem; line-height: 1.75; max-width: 560px; }
    .pricing-note { color: #9ca3af; font-size: 0.83rem; text-align: center; margin-bottom: 1.5rem; }

    /* ── TRUST LINE ── */
    .trust-line { text-align: center; margin-bottom: 2.5rem; }
    .trust-line-inner { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.84rem; color: #555555; }
    .trust-line-inner .stars { color: #f59e0b; }

    /* ── PRICING CARDS ── */
    .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 1.5rem; }
    .p-card {
      background: linear-gradient(135deg,#111111,#0a0a0a);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--radius);
      padding: 2.5rem 2rem;
      position: relative;
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    }
    .p-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    }
    .p-card.featured {
      border-color: rgba(0,87,255,0.45);
      background: linear-gradient(160deg, rgba(0,87,255,0.10), #111111 60%);
      box-shadow: 0 0 0 1px rgba(0,87,255,0.2), 0 8px 40px rgba(0,87,255,0.12);
    }
    .p-card.featured:hover {
      transform: translateY(-8px);
      box-shadow: 0 0 0 1px rgba(0,87,255,0.35), 0 24px 60px rgba(0,87,255,0.18);
    }
    .p-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: #0057FF; color: #ffffff; font-family: 'Raleway', sans-serif; font-weight: 800; font-size: 0.7rem; letter-spacing: 0.06em; padding: 0.28rem 1rem; border-radius: 100px; text-transform: uppercase; white-space: nowrap; box-shadow: 0 4px 16px rgba(0,87,255,0.4); }
    .p-tier { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #9ca3af; margin-bottom: 0.75rem; }
    .price-amount { font-family: 'Raleway', sans-serif; font-size: 2.6rem; font-weight: 900; letter-spacing: -0.03em; margin-bottom: 0.25rem; color: #ffffff; }
    .price-amount .small { font-size: 1rem; font-weight: 500; color: #9ca3af; }
    .p-desc { color: #9ca3af; font-size: 0.87rem; line-height: 1.65; margin: 1rem 0 1.5rem; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1rem; }
    .p-features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem; }
    .p-features li { font-size: 0.87rem; color: #d1d5db; display: flex; align-items: flex-start; gap: 0.6rem; }
    .p-features li::before { content: '✓'; color: #4d8fff; font-weight: 700; flex-shrink: 0; }
    .p-btn { display: block; text-align: center; padding: 0.85rem 1rem; border-radius: 8px; font-family: 'Raleway', sans-serif; font-weight: 800; font-size: 0.92rem; text-decoration: none; transition: all 0.2s; }
    .p-btn-outline { background: transparent; border: 1px solid rgba(255,255,255,0.2); color: #d1d5db; }
    .p-btn-outline:hover { border-color: #0057FF; background: rgba(0,87,255,0.08); color: #ffffff; }
    .p-btn-filled { background: #0057FF; color: #ffffff; border: 1px solid transparent; }
    .p-btn-filled:hover { background: #0040cc; }

    /* ── HOW IT WORKS ── */
    .how-it-works {
      background: #060c1e;
      border-top: 1px solid rgba(255,255,255,0.05);
      border-bottom: 1px solid rgba(255,255,255,0.05);
      padding: 90px 0;
    }
    .how-it-works .section-label { color: #4d8fff; }
    .how-it-works .section-title { color: #ffffff; }
    .steps-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3.5rem; position: relative; }
    .steps-row::before {
      content: '';
      position: absolute;
      top: 2.2rem;
      left: calc(16.67% + 1rem);
      right: calc(16.67% + 1rem);
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(0,87,255,0.4) 30%, rgba(0,87,255,0.4) 70%, transparent);
    }
    .step-item { text-align: center; padding: 0 1rem; position: relative; }
    .step-number {
      display: inline-flex; align-items: center; justify-content: center;
      width: 4.5rem; height: 4.5rem;
      border-radius: 50%;
      background: linear-gradient(135deg, #0057FF, #003bb5);
      color: #ffffff;
      font-family: 'Raleway', sans-serif;
      font-size: 1.6rem;
      font-weight: 900;
      margin: 0 auto 1.75rem;
      position: relative;
      z-index: 1;
      box-shadow: 0 0 0 6px rgba(0,87,255,0.12), 0 8px 30px rgba(0,87,255,0.35);
    }
    .step-title { font-family: 'Raleway', sans-serif; font-size: 1.15rem; font-weight: 800; color: #ffffff; margin-bottom: 0.75rem; }
    .step-desc { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.75; max-width: 260px; margin: 0 auto; }

    /* ── WHAT IS INCLUDED ── */
    .includes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
    .include-card { background: rgba(0,0,0,0.03); border: 1px solid rgba(0,0,0,0.1); border-radius: 10px; padding: 1.75rem; transition: border-color 0.2s, box-shadow 0.2s; }
    .include-card:hover { border-color: rgba(0,87,255,0.25); box-shadow: 0 6px 20px rgba(0,87,255,0.07); }
    .include-card .inc-icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
    .include-card h4 { font-size: 0.95rem; font-weight: 800; margin-bottom: 0.5rem; }
    .include-card p { color: #555555; font-size: 0.85rem; line-height: 1.65; }

    /* ── COMPARISON TABLE ── */
    .comparison-section { padding: 90px 0; background: #080E1E; border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }
    .comparison-table-wrap { margin-top: 3rem; overflow-x: auto; border-radius: 14px; box-shadow: 0 4px 30px rgba(0,0,0,0.4); }
    .comparison-table { width: 100%; border-collapse: collapse; background: rgba(255,255,255,0.03); border-radius: 14px; overflow: hidden; min-width: 580px; }
    .comparison-table thead tr { background: rgba(255,255,255,0.04); }
    .comparison-table th { padding: 1.1rem 1.4rem; text-align: left; font-family: 'Raleway', sans-serif; font-size: 0.8rem; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase; color: rgba(255,255,255,0.45); border-bottom: 2px solid rgba(255,255,255,0.08); }
    .comparison-table th.col-avarra { background: #0052E0; color: #ffffff; border-bottom-color: #003ec4; text-align: center; }
    .comparison-table td { padding: 1.1rem 1.4rem; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 0.9rem; color: rgba(255,255,255,0.75); vertical-align: middle; }
    .comparison-table td.col-avarra { background: rgba(0,82,224,0.15); text-align: center; font-weight: 700; color: #7eb8ff; border-left: 1px solid rgba(0,82,224,0.2); border-right: 1px solid rgba(0,82,224,0.2); }
    .comparison-table td.col-other { text-align: center; color: rgba(255,255,255,0.4); }
    .comparison-table tr:last-child td { border-bottom: none; }
    .comparison-table tr:hover td { background: rgba(255,255,255,0.02); }
    .comparison-table tr:hover td.col-avarra { background: rgba(0,82,224,0.2); }
    .check-yes { color: #4ade80; font-size: 1.1rem; font-weight: 700; }
    .check-no  { color: rgba(255,255,255,0.2); font-size: 1.1rem; }
    .feat-label { font-weight: 600; color: #ffffff; }

    /* ── CALCULATOR ── */
    .calc-section { border-top: 1px solid rgba(0,0,0,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); }

    /* ── FAQ ── */
    .faq-section-inner { max-width: 720px; margin: 3rem auto 0; }
    .faq-item { border-bottom: 1px solid rgba(0,0,0,0.1); }
    .faq-item button { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1.3rem 0; background: transparent; border: none; color: #111111; font-family: Raleway, sans-serif; font-size: 0.95rem; font-weight: 700; cursor: pointer; text-align: left; }
    .faq-plus { font-size: 1.5rem; color: #0057FF; flex-shrink: 0; margin-left: 1rem; transition: transform 0.3s; }
    .faq-item.open .faq-plus { transform: rotate(45deg); }
    .faq-ans { display: none; padding-bottom: 1.25rem; }
    .faq-item.open .faq-ans { display: block; }
    .faq-ans p { font-size: 0.88rem; color: #555555; line-height: 1.7; }

    /* ── CTA STRIP ── */
    .cta-strip { background: linear-gradient(135deg, rgba(0,87,255,0.07), rgba(0,87,255,0.02)); border: 1px solid rgba(0,87,255,0.15); border-radius: var(--radius); padding: 2.5rem 3rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; margin-top: 4rem; }
    .btn-primary { background: #0057FF; color: #ffffff; padding: 0.9rem 2.1rem; border-radius: 8px; font-family: 'Raleway', sans-serif; font-weight: 800; font-size: 0.95rem; text-decoration: none; display: inline-block; transition: background 0.2s; white-space: nowrap; }
    .btn-primary:hover { background: #0040cc; }

    /* ── FOOTER ── */
    footer { background: #0a0a0a; border-top: 1px solid rgba(255,255,255,0.08); padding: 4rem 0 2rem; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
    .footer-divider { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
    .footer-links a { color: #9ca3af; text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
    .footer-links a:hover { color: #ffffff; }
    .footer-heading { color: #9ca3af; font-family: 'Raleway', sans-serif; font-weight: 700; font-size: 0.85rem; margin-bottom: 1rem; letter-spacing: 0.05em; text-transform: uppercase; }

    /* ── MOBILE NAV ── */
    .mob-toggle {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      width: 44px; height: 44px;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 6px;
      z-index: 9999;
      flex-shrink: 0;
    }
    .mob-toggle span {
      display: block;
      width: 26px; height: 2px;
      background: #111111;
      border-radius: 2px;
      transition: transform 0.3s ease, opacity 0.3s ease;
      pointer-events: none;
    }
    @media (max-width: 1200px) {
      nav { padding: 0 1rem !important; overflow: visible !important; width: 100% !important; box-sizing: border-box !important; }
      .mob-toggle { display: flex !important; }
      .nav-links {
        display: none;
        position: fixed;
        top: 72px; left: 0; right: 0; width: 100%;
        flex-direction: column;
        background: rgba(0,0,0,0.97);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255,255,255,0.08);
        padding: 0.5rem 1.5rem 1.5rem;
        z-index: 9998;
        list-style: none;
        gap: 0;
        margin: 0;
      }
      .nav-links.mob-open { display: flex; }
      .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.07); margin: 0; }
      .nav-links li:last-child { border-bottom: none; padding-top: 0.5rem; }
      .nav-links a {
        display: block;
        padding: 0.85rem 0;
        font-size: 1rem;
        font-weight: 500;
        color: #d1d5db;
        text-decoration: none;
      }
      .nav-links a:hover,
      .nav-links a.active { color: #ffffff; }
      .nav-links .nav-cta {
        display: block;
        text-align: center;
        padding: 0.75rem 1.25rem;
        background: #0057FF;
        color: #ffffff;
        font-weight: 700;
        border-radius: 8px;
        font-size: 0.95rem;
      }
      .nav-links .nav-cta:hover { background: #0040cc; color: #ffffff; }
    }
    .mob-open-body .mob-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .mob-open-body .mob-toggle span:nth-child(2) { opacity: 0; }
    .mob-open-body .mob-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
      .steps-row { grid-template-columns: 1fr; gap: 3rem; }
      .steps-row::before { display: none; }
      .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
      .stat-item:nth-child(2)::after { display: none; }
    }
    @media (max-width: 768px) {
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .cta-strip { flex-direction: column; }
      .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 480px) {
      .stats-bar-inner { grid-template-columns: 1fr 1fr; }
    }

    /* ── Nav hover underline ── */
    .nav-links a:not(.nav-cta) { position: relative; }
    .nav-links a:not(.nav-cta)::after {
      content: ''; position: absolute; bottom: -4px; left: 0;
      width: 0; height: 2px; background: #0057FF; border-radius: 2px;
      transition: width 0.22s ease;
    }
    .nav-links a:not(.nav-cta):hover::after,
    .nav-links a.active::after { width: 100%; }
    .nav-links a { cursor: pointer; }

    /* ── Services dropdown ── */
    .nav-has-dropdown { position: relative; }
    .nav-arrow {
      font-size: 0.65rem; margin-left: 3px; display: inline-block;
      transition: transform 0.22s; vertical-align: middle;
    }
    .nav-has-dropdown:hover .nav-arrow { transform: rotate(180deg); }
    .nav-dropdown {
      position: absolute; top: calc(100% + 14px); left: 50%;
      transform: translateX(-50%) translateY(-6px);
      background: #111111; border-radius: 16px;
      padding: 1.5rem 1.75rem; min-width: 560px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 2px 8px rgba(0,0,0,0.3);
      border: 1px solid rgba(255,255,255,0.08);
      opacity: 0; visibility: hidden;
      transition: opacity 0.2s ease, transform 0.2s ease;
      z-index: 9999; pointer-events: none;
    }
    .nav-has-dropdown:hover .nav-dropdown {
      opacity: 1; visibility: visible;
      transform: translateX(-50%) translateY(0);
      pointer-events: auto;
    }.nav-dropdown::after{content:'';position:absolute;top:-18px;left:0;right:0;height:18px;}
    .nav-dropdown::before {
      content: ''; position: absolute; top: -6px; left: 50%;
      transform: translateX(-50%);
      width: 12px; height: 12px; background: #111111;
      border-top: 1px solid rgba(255,255,255,0.08);
      border-left: 1px solid rgba(255,255,255,0.08);
      transform: translateX(-50%) rotate(45deg);
    }
    .nav-dd-grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:1.25rem;}
    .nav-dd-grid {
      display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem;
    }
    .nav-dd-col-head {
      font-family: 'Raleway', sans-serif; font-size: 0.7rem; font-weight: 800;
      text-transform: uppercase; letter-spacing: 0.1em; color: #0057FF;
      margin-bottom: 0.65rem; padding-bottom: 0.5rem;
      border-bottom: 1px solid rgba(0,87,255,0.12);
    }
    .nav-dropdown a {
      display: block; font-size: 0.81rem; color: #444; padding: 0.28rem 0;
      font-weight: 400; transition: color 0.15s, padding-left 0.15s;
      white-space: nowrap;
    }
    .nav-dropdown a::after { display: none; }
    .nav-dropdown a:hover { color: #0057FF; padding-left: 5px; }
    @media (max-width:1200px) { .nav-dropdown { display: none !important; } }

  
/* ═════════════════════════════════════════
   PRICING PAGE — PREMIUM VISUAL REDESIGN
   ═════════════════════════════════════════ */

/* Body dot grid */
body {
  background-color: #000000;
  background-image: radial-gradient(circle, rgba(0,87,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* Stats bar — dark navy instead of white */
.stats-bar {
  background: #080E1E !important;
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
}
.stat-number { color: #ffffff !important; }
.stat-number span { color: #7eb8ff !important; }
.stat-label { color: rgba(255,255,255,0.5) !important; }
.stat-item:not(:last-child)::after { background: rgba(255,255,255,0.1) !important; }

/* Pricing cards section — dark background */
section:has(.pricing-grid) {
  background: #0D1117 !important;
  background-image: none !important;
  position: relative;
  overflow: hidden;
}
section:has(.pricing-grid)::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse, rgba(0,82,224,0.12) 0%, transparent 70%);
  pointer-events: none;
}
section:has(.pricing-grid) .section-label { color: #7eb8ff !important; }
section:has(.pricing-grid) .section-title { color: #ffffff !important; }
section:has(.pricing-grid) .section-sub, .pricing-note, .trust-line-inner { color: rgba(255,255,255,0.5) !important; }

/* Pricing cards on dark bg */
.p-card {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s !important;
}
.p-card.featured {
  border-color: rgba(0,82,224,0.55) !important;
  background: rgba(0,82,224,0.10) !important;
  box-shadow: 0 0 0 1px rgba(0,82,224,0.3), 0 12px 40px rgba(0,82,224,0.18) !important;
}
.p-card:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(255,255,255,0.2) !important;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4) !important;
}
.p-card.featured:hover {
  border-color: rgba(0,82,224,0.8) !important;
  box-shadow: 0 20px 60px rgba(0,82,224,0.25) !important;
}
.p-tier { color: rgba(255,255,255,0.4) !important; }
.price-amount { color: #ffffff !important; }
.price-amount .small { color: rgba(255,255,255,0.5) !important; }
.p-desc { color: rgba(255,255,255,0.55) !important; border-top-color: rgba(255,255,255,0.08) !important; }
.p-features li { color: rgba(255,255,255,0.7) !important; }
.p-features li::before { color: #7eb8ff !important; }
.p-btn-outline { border-color: rgba(255,255,255,0.2) !important; color: rgba(255,255,255,0.8) !important; background: transparent !important; }
.p-btn-outline:hover { border-color: rgba(255,255,255,0.5) !important; background: rgba(255,255,255,0.07) !important; color: #ffffff !important; }
.p-btn-filled { background: #0052E0 !important; }
.p-btn-filled:hover { background: #003ec4 !important; }
.p-badge { background: #0052E0 !important; }

/* Includes section — dark */
.includes-grid + * ,
section:has(.includes-grid) {
  background-color: #0a0a0a;
  background-image: radial-gradient(circle, rgba(0,87,255,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
}
.include-card {
  background: linear-gradient(135deg,#111111,#0a0a0a) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-top: 3px solid transparent !important;
  transition: border-top-color 0.25s, box-shadow 0.25s, transform 0.25s !important;
}
.include-card:hover {
  border-top-color: #0057FF !important;
  box-shadow: 0 10px 30px rgba(0,87,255,0.15) !important;
  transform: translateY(-3px) !important;
}
.include-card h4 { color: #ffffff !important; }
.include-card p { color: #9ca3af !important; }

/* Comparison section — dark */
.comparison-section {
  background: #080E1E !important;
  border-color: rgba(255,255,255,0.06) !important;
}
.comparison-section .section-label { color: #7eb8ff !important; }
.comparison-section .section-title { color: #ffffff !important; }
.comparison-section .section-sub { color: rgba(255,255,255,0.6) !important; }
.comparison-table { background: rgba(255,255,255,0.03) !important; }
.comparison-table thead tr { background: rgba(255,255,255,0.04) !important; }
.comparison-table th { color: rgba(255,255,255,0.45) !important; border-bottom-color: rgba(255,255,255,0.08) !important; }
.comparison-table th.col-avarra { background: #0052E0 !important; color: #ffffff !important; }
.comparison-table td { color: rgba(255,255,255,0.75) !important; border-bottom-color: rgba(255,255,255,0.05) !important; }
.comparison-table td.col-avarra { background: rgba(0,82,224,0.15) !important; color: #7eb8ff !important; border-color: rgba(0,82,224,0.2) !important; }
.comparison-table td.col-other { color: rgba(255,255,255,0.4) !important; }
.comparison-table tr:hover td { background: rgba(255,255,255,0.02) !important; }
.feat-label { color: #ffffff !important; }
.check-yes { color: #4ade80 !important; }
.check-no { color: rgba(255,255,255,0.2) !important; }

/* FAQ section — dark */
section:has(.faq-section-inner) {
  background-color: #0a0a0a;
  background-image: radial-gradient(circle, rgba(0,87,255,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
}
.faq-item { border-bottom-color: rgba(255,255,255,0.08); }
.faq-item button { color: #ffffff !important; }
.faq-ans p { color: #9ca3af !important; }

/* CTA strip — dark accent */
.cta-strip {
  background: #0D1117 !important;
  border-color: rgba(0,82,224,0.25) !important;
}
.cta-strip h3, .cta-strip h2 { color: #ffffff !important; }
.cta-strip p { color: rgba(255,255,255,0.6) !important; }

/* Footer dark */
footer {
  background: #0A0A0A !important;
  border-top-color: rgba(255,255,255,0.07) !important;
}
.footer-heading { color: rgba(255,255,255,0.35) !important; }
.footer-links a { color: rgba(255,255,255,0.5) !important; }
.footer-links a:hover { color: rgba(255,255,255,0.9) !important; }
.footer-divider { border-top-color: rgba(255,255,255,0.07) !important; }
