/* === BASE STYLES === */:root {
      --c1: #0a0e1a;
      --c2: #12182b;
      --c3: #1a2240;
      --c4: #ff2d55;
      --c5: #00d4aa;
      --c6: #4e7cff;
      --c7: #ff8c00;
      --fg: #f0f2ff;
      --fg2: #a8b0cc;
      --bg: #0a0e1a;
      --sp1: 1rem;
      --sp2: 1.5rem;
      --sp3: 2rem;
      --sp4: 3rem;
      --sp5: 5rem;
      --rad: 12px;
      --rad2: 20px;
      --rad3: 50px;
      --shadow1: 0 4px 20px rgba(0,0,0,0.4);
      --shadow2: 0 8px 40px rgba(0,0,0,0.6);
      --shadow3: 0 0 60px rgba(255,45,85,0.15);
      --glow1: 0 0 30px rgba(255,45,85,0.3);
      --glow2: 0 0 30px rgba(0,212,170,0.3);
      --grad1: linear-gradient(135deg, #ff2d55, #ff8c00);
      --grad2: linear-gradient(135deg, #4e7cff, #00d4aa);
      --grad3: linear-gradient(180deg, #12182b 0%, #0a0e1a 100%);
      --trans: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    html, body {
      overflow-x: hidden;
      max-width: 100vw;
    }

    * {
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg);
      color: var(--fg);
      line-height: 1.7;
      font-size: 16px;
      margin: 0;
    }

    h1, h2, h3, h4 {
      font-family: 'Playfair Display', serif;
      font-weight: 800;
      line-height: 1.15;
      color: #fff;
    }

    h1 { font-size: clamp(2rem, 5vw, 4rem); margin-bottom: var(--sp2); }
    h2 { font-size: clamp(1.75rem, 4vw, 3rem); margin-bottom: var(--sp2); }
    h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); margin-bottom: var(--sp1); }

    p { color: var(--fg2); margin-bottom: var(--sp1); }

    a { color: var(--c5); text-decoration: none; transition: var(--trans); }
    a:hover { color: #fff; }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 var(--sp2);
    }

    .btnPrimary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 32px;
      background: var(--grad1);
      color: #fff;
      font-weight: 700;
      font-size: 1rem;
      border: none;
      border-radius: var(--rad3);
      cursor: pointer;
      transition: var(--trans);
      text-decoration: none;
      position: relative;
      overflow: hidden;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      box-shadow: 0 4px 25px rgba(255,45,85,0.35);
      white-space: nowrap;
    }

    .btnPrimary::before {
      content: '';
      position: absolute;
      top: 0; left: -100%;
      width: 100%; height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
      transition: left 0.5s ease;
    }

    .btnPrimary:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 35px rgba(255,45,85,0.5);
      color: #fff;
    }

    .btnPrimary:hover::before { left: 100%; }

    .btnSecondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 32px;
      background: transparent;
      color: var(--c5);
      font-weight: 700;
      font-size: 1rem;
      border: 2px solid var(--c5);
      border-radius: var(--rad3);
      cursor: pointer;
      transition: var(--trans);
      text-decoration: none;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      white-space: nowrap;
    }

    .btnSecondary:hover {
      background: var(--c5);
      color: var(--c1);
      transform: translateY(-3px);
      box-shadow: var(--glow2);
    }

    .contentImage {
      width: 100%;
      border-radius: var(--rad);
      overflow: hidden;
      margin: var(--sp2) 0;
    }

    .contentImage img {
      display: block;
      width: 100%;
      height: auto;
      max-width: 100%;
      border-radius: var(--rad);
      object-fit: cover;
    }

    .sectionPad {
      padding: var(--sp5) 0;
    }

    .glassCard {
      background: rgba(26, 34, 64, 0.6);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: var(--rad2);
      padding: var(--sp3);
      transition: var(--trans);
    }

    .glassCard:hover {
      border-color: rgba(255,255,255,0.12);
      transform: translateY(-5px);
      box-shadow: var(--shadow2);
    }

    .tableResponsive {
      width: 100%;
      overflow-x: auto;
      border-radius: var(--rad);
      margin: var(--sp2) 0;
    }

    .featureTable {
      width: 100%;
      border-collapse: separate;
      border-spacing: 0;
      background: rgba(26, 34, 64, 0.5);
      border-radius: var(--rad);
      overflow: hidden;
    }

    .featureTable thead th {
      background: rgba(78, 124, 255, 0.15);
      padding: var(--sp1) var(--sp2);
      text-align: left;
      font-weight: 700;
      color: #fff;
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      border-bottom: 2px solid rgba(78,124,255,0.3);
    }

    .featureTable tbody td {
      padding: var(--sp1) var(--sp2);
      border-bottom: 1px solid rgba(255,255,255,0.05);
      color: var(--fg2);
    }

    .featureTable tbody tr:hover td {
      background: rgba(78, 124, 255, 0.06);
      color: #fff;
    }

    .featureTable tbody tr:last-child td { border-bottom: none; }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.6; }
    }

    @keyframes shimmer {
      0% { background-position: -200% center; }
      100% { background-position: 200% center; }
    }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(40px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .fadeInUp {
      opacity: 0;
      animation: fadeInUp 0.8s ease forwards;
    }

    .checklist {
      list-style: none;
      padding: 0;
    }

    .checklist li {
      position: relative;
      padding-left: 28px;
      margin-bottom: var(--sp1);
      color: var(--fg2);
    }

    .checklist li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: var(--c5);
      font-weight: 700;
    }

    /* === LAYOUT STYLES === */
    .siteHeader {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(10, 14, 26, 0.9);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(255,255,255,0.06);
      padding: 0;
    }

    .headerInner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: var(--sp1) 0;
      gap: var(--sp1);
    }

    .logo {
      text-decoration: none;
      flex-shrink: 0;
    }

    .logoText {
      font-family: 'Playfair Display', serif;
      font-weight: 900;
      font-size: 1.75rem;
      background: var(--grad1);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      letter-spacing: -0.5px;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
      min-width: 44px;
      min-height: 44px;
      z-index: 1001;
    }

    .hamburgerLine {
      display: block;
      width: 26px;
      height: 3px;
      background: #fff;
      border-radius: 3px;
      transition: var(--trans);
    }

    .hamburger.active .hamburgerLine:nth-child(1) {
      transform: rotate(45deg) translate(5px, 6px);
    }
    .hamburger.active .hamburgerLine:nth-child(2) { opacity: 0; }
    .hamburger.active .hamburgerLine:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -6px);
    }

    .mainNav {
      display: flex;
      align-items: center;
      gap: var(--sp3);
    }

    .navList {
      display: flex;
      list-style: none;
      margin: 0;
      padding: 0;
      gap: var(--sp3);
    }

    .navList a {
      color: var(--fg2);
      font-weight: 600;
      font-size: 0.95rem;
      text-decoration: none;
      transition: var(--trans);
      position: relative;
      padding: 6px 0;
    }

    .navList a::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 0;
      height: 2px;
      background: var(--grad1);
      transition: width 0.3s ease;
    }

    .navList a:hover { color: #fff; }
    .navList a:hover::after { width: 100%; }

    .headerCta {
      max-width: 200px;
      padding: 10px 24px;
      font-size: 0.9rem;
    }

    .siteFooter {
      background: var(--c2);
      border-top: 1px solid rgba(255,255,255,0.06);
      padding: var(--sp4) 0 var(--sp3);
    }

    .footerInner {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: var(--sp2);
      text-align: center;
    }

    .footerLinks {
      display: flex;
      list-style: none;
      margin: 0;
      padding: 0;
      gap: var(--sp3);
      flex-wrap: wrap;
      justify-content: center;
    }

    .footerLinks a {
      color: var(--fg2);
      font-size: 0.9rem;
      font-weight: 500;
      transition: var(--trans);
    }

    .footerLinks a:hover { color: var(--c5); }

    .footerBadges {
      display: flex;
      gap: var(--sp2);
      align-items: center;
      flex-wrap: wrap;
      justify-content: center;
    }

    .trustBadge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 8px 16px;
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--rad3);
      font-size: 0.8rem;
      color: var(--fg2);
      background: rgba(255,255,255,0.03);
    }

    .copyright {
      color: var(--fg2);
      font-size: 0.85rem;
      opacity: 0.7;
    }

    @media (max-width: 768px) {
      .hamburger {
        display: flex;
      }

      .mainNav {
        position: fixed;
        top: 0; right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: var(--c2);
        flex-direction: column;
        justify-content: center;
        padding: var(--sp4);
        transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
        z-index: 999;
        border-left: 1px solid rgba(255,255,255,0.06);
      }

      .mainNav.open { right: 0; }

      .navList {
        flex-direction: column;
        gap: var(--sp2);
        text-align: center;
      }

      .navList a { font-size: 1.2rem; }

      .headerCta {
        max-width: 100%;
        width: 100%;
        text-align: center;
      }

      .navOverlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.7);
        z-index: 998;
      }

      .navOverlay.active { display: block; }
    }

@media (max-width: 768px) {
      .hamburger {
        display: flex;
      }

      .mainNav {
        position: fixed;
        top: 0; right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: var(--c2);
        flex-direction: column;
        justify-content: center;
        padding: var(--sp4);
        transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
        z-index: 999;
        border-left: 1px solid rgba(255,255,255,0.06);
      }

      .mainNav.open { right: 0; }

      .navList {
        flex-direction: column;
        gap: var(--sp2);
        text-align: center;
      }

      .navList a { font-size: 1.2rem; }

      .headerCta {
        max-width: 100%;
        width: 100%;
        text-align: center;
      }

      .navOverlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.7);
        z-index: 998;
      }

      .navOverlay.active { display: block; }
    }