
  :root {
    --bg-base: #03060f;
    --bg-deep: #050912;
    --bg-card: rgba(11, 18, 38, 0.55);
    --bg-card-2: rgba(15, 24, 48, 0.7);
    --border: rgba(120, 160, 255, 0.12);
    --border-bright: rgba(120, 180, 255, 0.28);
    --text: #e8eefc;
    --text-dim: #8a98b8;
    --text-faint: #5a6788;
    --accent: #4d8dff;
    --accent-2: #6ad0ff;
    --accent-3: #b08bff;
    --accent-warm: #ffb86b;
    --glow-blue: 77, 141, 255;
    --glow-cyan: 106, 208, 255;
    --glow-violet: 176, 139, 255;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg-base);
    color: var(--text);
    font-family: 'Geist', -apple-system, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
  }

  /* ========== ATMOSPHERIC BACKGROUND ========== */
  .bg-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
  }
  .bg-canvas::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 20% 10%, rgba(77, 141, 255, 0.18), transparent 60%),
      radial-gradient(ellipse 70% 50% at 85% 30%, rgba(106, 208, 255, 0.10), transparent 60%),
      radial-gradient(ellipse 60% 40% at 50% 90%, rgba(176, 139, 255, 0.12), transparent 60%);
  }
  .bg-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(120, 160, 255, 0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(120, 160, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 30%, transparent 80%);
  }
  .bg-noise {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  }

  /* Floating orbs */
  .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: drift 20s ease-in-out infinite;
  }
  .orb-1 { width: 500px; height: 500px; background: rgba(77, 141, 255, 0.35); top: -100px; left: -100px; }
  .orb-2 { width: 400px; height: 400px; background: rgba(106, 208, 255, 0.25); top: 30%; right: -80px; animation-delay: -7s; }
  .orb-3 { width: 600px; height: 600px; background: rgba(176, 139, 255, 0.18); bottom: -200px; left: 30%; animation-delay: -14s; }

  @keyframes drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -30px) scale(1.05); }
    66% { transform: translate(-30px, 40px) scale(0.95); }
  }

  /* Particles */
  #particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }
  .particle {
    position: absolute;
    width: 2px; height: 2px;
    background: rgba(180, 210, 255, 0.6);
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(120, 180, 255, 0.8);
    animation: float-up linear infinite;
  }
  @keyframes float-up {
    0% { transform: translateY(100vh) translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-10vh) translateX(var(--drift, 50px)); opacity: 0; }
  }

  /* ========== LAYOUT ========== */
  main { position: relative; z-index: 1; }
  .container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }

  /* ========== NAVIGATION ========== */
  .nav {
    position: fixed;
    top: 20px; left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    width: calc(100% - 40px);
    max-width: 1100px;
    padding: 14px 22px;
    background: rgba(8, 14, 30, 0.55);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid var(--border);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .nav.scrolled { top: 12px; background: rgba(5, 9, 20, 0.85); }
  .nav-brand {
    display: flex; align-items: center; gap: 10px;
    font-family: 'Poppins', system-ui, sans-serif;
    font-weight: 600;
    font-size: 19px;
    letter-spacing: -0.02em;
  }
  .nav-brand-mark {
    width: 28px; height: 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    box-shadow: 0 0 20px rgba(var(--glow-blue), 0.6);
    position: relative;
    display: grid; place-items: center;
  }
  .nav-brand-mark::after {
    content: ''; width: 10px; height: 10px;
    background: rgba(255,255,255,0.95); border-radius: 2px;
    transform: rotate(45deg);
  }
  .nav-links { display: flex; gap: 32px; }
  .nav-links a {
    color: var(--text-dim); text-decoration: none;
    font-size: 14px; font-weight: 400;
    transition: color 0.25s;
    position: relative;
  }
  .nav-links a:hover { color: var(--text); }
  .nav-actions { display: flex; align-items: center; gap: 10px; }
  .nav-actions a{text-decoration:none;}
  .nav-login {
    padding: 9px 16px;
    background: transparent;
    color: var(--text-dim);
    border: none;
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.25s;
  }
  .nav-login:hover { color: var(--text); }
  .nav-signup {
    padding: 9px 18px;
    background: rgba(255,255,255,0.04);
    color: var(--text);
    border: 1px solid var(--border-bright);
    border-radius: 100px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
  }
  .nav-signup:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(120,180,255,0.5);
    transform: translateY(-1px);
  }
  .nav-cta {
    padding: 9px 18px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #fff;
    border: none;
    border-radius: 100px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 0 24px rgba(var(--glow-blue), 0.45), inset 0 1px 0 rgba(255,255,255,0.3);
    transition: all 0.3s;
  }
  .nav-cta:hover { transform: translateY(-1px); box-shadow: 0 0 32px rgba(var(--glow-blue), 0.7), inset 0 1px 0 rgba(255,255,255,0.3); }

  @media (max-width: 760px) { .nav-links, .nav-login { display: none; } }

  /* ========== HERO ========== */
  .hero {
    padding: 180px 0 120px;
    text-align: center;
    position: relative;
  }
  .pill {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 16px 7px 12px;
    background: rgba(77, 141, 255, 0.08);
    border: 1px solid rgba(77, 141, 255, 0.25);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    color: var(--accent-2);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
  }
  .pill-dot {
    width: 7px; height: 7px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 10px #4ade80;
    animation: pulse 2s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.85); }
  }

  .hero-title {
    font-family: 'Poppins', system-ui, sans-serif;
    font-weight: 600;
    font-size: clamp(44px, 7vw, 62px);
    line-height: 1.2;
    letter-spacing: -0.035em;
    margin: 28px 0 24px;
    color: var(--text);
  }
  .hero-title em {
    font-style: inherit;
    /*font-weight: 300;*/
    background: linear-gradient(120deg, #ff8a5b 20%, #ffb86b 50%, #ff6b9d 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .hero-title strong {
    font-weight: 500;
    background: linear-gradient(120deg, var(--accent-2) 0%, var(--accent) 50%, var(--accent-3) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .hero-sub {
    font-size: clamp(15px, 1.4vw, 17px);
    color: var(--text-dim);
    max-width: 640px;
    margin: 0 auto 36px;
    line-height: 1.65;
  }
  .hero-sub .hl { color: var(--text); font-weight: 500; }

  .hero-meta {
    display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
    margin-bottom: 32px;
  }
  .meta-chip {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 12px;
    color: var(--text-dim);
    backdrop-filter: blur(10px);
  }
  .meta-chip svg { width: 14px; height: 14px; color: var(--accent-2); }

  .save-banner {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 10px 20px;
    background: linear-gradient(90deg, rgba(255,184,107,0.08), rgba(255,107,157,0.08));
    border: 1px solid rgba(255,184,107,0.25);
    border-radius: 100px;
    font-size: 13px;
    color: var(--accent-warm);
    font-weight: 500;
    margin-bottom: 28px;
  }

  .btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #fff;
    border: none;
    border-radius: 100px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(var(--glow-blue), 0.5), inset 0 1px 0 rgba(255,255,255,0.3);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s;
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 50px rgba(var(--glow-blue), 0.75), inset 0 1px 0 rgba(255,255,255,0.3); }
  .btn-primary:hover::before { transform: translateX(100%); }
  .btn-primary svg { transition: transform 0.3s; }
  .btn-primary:hover svg { transform: translateX(4px); }

  .hero-fineprint {
    margin-top: 16px;
    font-size: 12px;
    color: var(--text-faint);
  }

  .footnote {
    margin-top: 36px;
    font-size: 12px;
    color: var(--text-faint);
  }

  /* ========== STATS ========== */
  .stats {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 18px;
    margin: 80px auto 0;
    max-width: 1100px;
  }
  .stat-card {
    padding: 28px 24px;
    background: var(--bg-card);
    backdrop-filter: blur(20px) saturate(150%);
    border: 1px solid var(--border);
    border-radius: 20px;
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
  }
  .stat-card::before {
    content: '';
    position: absolute;
    top: -1px; left: -1px; right: -1px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(120, 180, 255, 0.6), transparent);
  }
  .stat-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-bright);
    box-shadow: 0 20px 60px rgba(var(--glow-blue), 0.15);
  }
  .stat-card h4{
    font-family: 'Poppins', system-ui, sans-serif;
    font-weight: 600;
    font-size: 30px;
    text-align: center;
    margin-bottom: 20px;	  
  } 
 .jobFetureList{display:flex; flex-wrap:wrap; gap:50px; align-items:center;justify-content:center;}
.jobFetureListItem{display:flex; align-items:center; gap:10px;}
.jobFetureListItem .icon{}
.jobFetureListItem .icon img{}
.jobFetureListItem .icon svg{width:22px;height:22px;}
.jobFetureListItem .icon i{}
.jobFetureListItem .text{color:#8a98b8; }
.jobFetureListItem .text strong{} 
  
  
  
  .stat-num {
    font-family: 'Poppins', system-ui, sans-serif;
    font-size: 48px;
    font-weight: 400;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--accent-2), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 10px;
  }
  .stat-label {
    font-size: 12px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  .stat-stars { color: var(--accent-warm); letter-spacing: 2px; }
  @media (max-width: 880px) { .stats { grid-template-columns: repeat(2, 1fr); } }

  /* ========== SECTION HEADER ========== */
  .section { padding: 120px 0; position: relative; }
  .section-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 14px;
    background: rgba(77, 141, 255, 0.06);
    border: 1px solid rgba(77, 141, 255, 0.2);
    border-radius: 100px;
    font-size: 11px;
    color: var(--accent-2);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
  }
  .section-eyebrow svg { width: 12px; height: 12px; }
  .section-head { text-align: center; margin-bottom: 64px; }
  .section-title {
    font-family: 'Poppins', system-ui, sans-serif;
    font-weight: 600;
    font-size: clamp(34px, 4.5vw, 56px);
    letter-spacing: -0.025em;
    line-height: 1.05;
    margin: 20px 0 16px;
  }
  .section-title em { font-style: inherit;/* font-weight: 300;*/ color: var(--accent-2); }
  .section-desc {
    font-size: 16px;
    color: var(--text-dim);
    max-width: 580px;
    margin: 0 auto;
  }

  /* ========== REVENUE GROWTH ========== */
  .revenue-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 20px;
  }
  .feature-card {
    padding: 32px 28px;
    background: var(--bg-card);
    backdrop-filter: blur(20px) saturate(150%);
    border: 1px solid var(--border);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(120, 180, 255, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.4s;
  }
  .feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-bright);
    background: var(--bg-card-2);
    box-shadow: 0 24px 64px rgba(var(--glow-blue), 0.18);
  }
  .feature-card:hover::before { opacity: 1; }
  .feature-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, rgba(77,141,255,0.15), rgba(106,208,255,0.05));
    border: 1px solid rgba(120, 180, 255, 0.2);
    border-radius: 12px;
    display: grid; place-items: center;
    margin-bottom: 20px;
    color: var(--accent-2);
  }
  .feature-icon svg { width: 22px; height: 22px; }
  .feature-eyebrow {
    font-size: 11px;
    color: var(--accent-2);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 500;
    margin-bottom: 8px;
  }
  .feature-title {
    font-family: 'Poppins', system-ui, sans-serif;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.015em;
    margin-bottom: 12px;
  }
  .feature-desc {
    font-size: 14px;
    color: var(--text-dim);
    margin-bottom: 20px;
    line-height: 1.6;
  }
  .feature-list { list-style: none; }
  .feature-list li {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 8px 0;
    font-size: 13.5px;
    color: var(--text);
    border-top: 1px solid rgba(255,255,255,0.04);
  }
  .feature-list li:first-child { border-top: none; }
  .feature-list li::before {
    content: '';
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--accent-2);
    box-shadow: 0 0 8px var(--accent-2);
    margin-top: 8px;
    flex-shrink: 0;
  }
  @media (max-width: 900px) { .revenue-grid { grid-template-columns: 1fr; } }

  /* ========== TIERS ========== */
  .tier-tabs {
    display: flex;
    gap: 8px;
    padding: 6px;
    background: rgba(11, 18, 38, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 100px;
    margin: 0 auto 40px;
    width: fit-content;
  }
  .tier-tab {
    padding: 10px 22px;
    background: transparent;
    border: none;
    border-radius: 100px;
    color: var(--text-dim);
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
  }
  .tier-tab.active {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #fff;
    box-shadow: 0 0 20px rgba(var(--glow-blue), 0.4);
  }
  .tier-tab:hover:not(.active) { color: var(--text); }

  .tier-panel {
    padding: 36px;
    background: var(--bg-card);
    backdrop-filter: blur(24px) saturate(150%);
    border: 1px solid var(--border);
    border-radius: 24px;
    display: none;
  }
  .tier-panel.active { display: block; animation: fadeUp 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .tier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .tier-block { padding: 8px 0; }
  .tier-block h4 {
    font-family: 'Poppins', system-ui, sans-serif;
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 14px;
    color: var(--text);
    display: flex; align-items: center; gap: 8px;
  }
  .tier-block h4 .dot {
    width: 6px; height: 6px;
    background: var(--accent-2);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-2);
  }
  .tier-block ul {padding:0px; list-style: none; display: flex; flex-direction: column; gap: 8px; }
  .tier-block li {
    font-size: 13.5px;
    color: var(--text-dim);
    padding: 6px 0;
    border-bottom: 1px dashed rgba(255,255,255,0.04);
  }
  .tier-block li span {
    display: inline-block;
    margin-left: 6px;
    padding: 2px 8px;
    background: rgba(77,141,255,0.1);
    border: 1px solid rgba(77,141,255,0.2);
    border-radius: 100px;
    font-size: 10px;
    color: var(--accent-2);
  }
  @media (max-width: 760px) { .tier-grid { grid-template-columns: 1fr; } }

  /* ========== TESTIMONIALS ========== */
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .testimonial {
    padding: 32px 28px;
    background: var(--bg-card);
    backdrop-filter: blur(20px) saturate(150%);
    border: 1px solid var(--border);
    border-radius: 24px;
    transition: all 0.4s;
    position: relative;
  }
  .testimonial:hover {
    transform: translateY(-4px);
    border-color: var(--border-bright);
    box-shadow: 0 20px 50px rgba(var(--glow-blue), 0.12);
  }
  .testimonial-head {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 16px;
  }
  .avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-3));
    display: grid; place-items: center;
    font-family: 'Poppins', system-ui, sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    box-shadow: 0 0 20px rgba(var(--glow-blue), 0.35);
  }
  .testimonial-info { flex: 1; }
  .testimonial-name { font-weight: 500; font-size: 15px; }
  .testimonial-role { font-size: 12px; color: var(--text-faint); margin-top: 2px; }
  .testimonial-badge {
    font-size: 10px;
    padding: 3px 8px;
    background: rgba(77,141,255,0.1);
    border: 1px solid rgba(77,141,255,0.2);
    border-radius: 100px;
    color: var(--accent-2);
    margin-left: auto;
  }
  .stars { color: var(--accent-warm); letter-spacing: 2px; margin-bottom: 12px; }
  .testimonial-quote {
    font-size: 14.5px;
    color: var(--text);
    line-height: 1.6;
    font-style: italic;
    opacity: 0.92;
  }
  @media (max-width: 760px) { .testimonials-grid { grid-template-columns: 1fr; } }

  /* ========== PRICING ========== */
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .price-card {
    padding: 32px 26px;
    background: var(--bg-card);
    backdrop-filter: blur(20px) saturate(150%);
    border: 1px solid var(--border);
    border-radius: 24px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .price-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-bright);
    box-shadow: 0 28px 64px rgba(var(--glow-blue), 0.2);
  }
  .price-card.popular {
    background: linear-gradient(180deg, rgba(77,141,255,0.12), rgba(11,18,38,0.55));
    border-color: rgba(77,141,255,0.4);
    box-shadow: 0 0 40px rgba(var(--glow-blue), 0.15);
  }
  .price-card.popular::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-2), transparent);
  }
  .price-card.warm {
    background: linear-gradient(180deg, rgba(255,184,107,0.08), rgba(11,18,38,0.55));
    border-color: rgba(255,184,107,0.3);
  }
  .price-card.warm::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-warm), transparent);
  }
  .price-badge {
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    padding: 5px 14px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #fff;
    font-size: 10.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 100px;
    box-shadow: 0 0 20px rgba(var(--glow-blue), 0.5);
  }
  .price-badge.warm-badge {
    background: linear-gradient(135deg, var(--accent-warm), #ff8a5b);
    box-shadow: 0 0 20px rgba(255, 184, 107, 0.5);
  }
  .price-eyebrow {
    font-size: 11px;
    color: var(--text-faint);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 8px;
  }
  .price-tier {
    font-family: 'Poppins', system-ui, sans-serif;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 14px;
  }
  .price-num {
    font-family: 'Poppins', system-ui, sans-serif;
    font-size: 44px;
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 4px;
  }
  .price-num sup { font-size: 22px; color: var(--text-dim); vertical-align: super; }
  .price-period { font-size: 13px; color: var(--text-faint); margin-bottom: 22px; }
  .price-features { list-style: none; margin-bottom: 24px; }
  .price-features li {
    font-size: 13px;
    color: var(--text-dim);
    padding: 8px 0;
    display: flex; align-items: flex-start; gap: 8px;
    border-top: 1px solid rgba(255,255,255,0.04);
  }
  .price-features li:first-child { border-top: none; }
  .price-features li::before {
    content: '✓';
    color: var(--accent-2);
    font-weight: 600;
    flex-shrink: 0;
  }
  .price-cta {
    width: 100%;
    padding: 12px 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--text);
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
  }
  .price-card.popular .price-cta {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    border-color: transparent;
    box-shadow: 0 0 24px rgba(var(--glow-blue), 0.4);
  }
  .price-card.warm .price-cta {
    background: linear-gradient(135deg, var(--accent-warm), #ff8a5b);
    border-color: transparent;
    box-shadow: 0 0 24px rgba(255, 184, 107, 0.4);
  }
  .price-cta:hover { transform: translateY(-1px); }
  @media (max-width: 1000px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 560px) { .pricing-grid { grid-template-columns: 1fr; } }

  /* ========== FAQ ========== */
  .faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
  .faq-item {
    background: var(--bg-card);
    backdrop-filter: blur(20px) saturate(150%);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.3s;
  }
  .faq-item:hover { border-color: var(--border-bright); }
  .faq-item.open { border-color: rgba(77,141,255,0.4); }
  .faq-q {
    width: 100%;
    padding: 20px 26px;
    background: transparent;
    border: none;
    color: var(--text);
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
  }
  .faq-toggle {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(77,141,255,0.1);
    border: 1px solid rgba(77,141,255,0.25);
    display: grid; place-items: center;
    color: var(--accent-2);
    transition: all 0.3s;
    flex-shrink: 0;
  }
  .faq-item.open .faq-toggle {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #fff;
    transform: rotate(45deg);
  }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .faq-a-inner {
    padding: 0 26px 22px;
    color: var(--text-dim);
    font-size: 14.5px;
    line-height: 1.65;
  }

  /* ========== FINAL CTA ========== */
  .final-cta {
    padding: 140px 0;
    text-align: center;
    position: relative;
  }
  .final-cta::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(77,141,255,0.15), transparent 70%);
    pointer-events: none;
  }

  /* ========== FOOTER ========== */
  footer {
    border-top: 1px solid var(--border);
    padding: 60px 0 30px;
    position: relative;
    z-index: 1;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
  }
  .footer-about p {
    font-size: 13px; color: var(--text-faint); margin-top: 14px;
    max-width: 380px;
  }
  .footer-col h5 {
    font-family: 'Poppins', system-ui, sans-serif;
    font-size: 14px;
    margin-bottom: 16px;
    color: var(--text);
  }
  .footer-col a {
    display: block;
    color: var(--text-dim);
    text-decoration: none;
    font-size: 13.5px;
    padding: 6px 0;
    transition: color 0.25s;
  }
  .footer-col a:hover { color: var(--accent-2); }
  .footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
    font-size: 12px;
    color: var(--text-faint);
  }
  @media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }

  /* ========== SCROLL ANIMATIONS ========== */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .reveal.in {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-stagger > * { opacity: 0; transform: translateY(28px); transition: opacity 0.8s, transform 0.8s; }
  .reveal-stagger.in > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0s; }
  .reveal-stagger.in > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.08s; }
  .reveal-stagger.in > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.16s; }
  .reveal-stagger.in > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.24s; }

  /* Selection */
  ::selection { background: rgba(77,141,255,0.3); color: #fff; }
  ::-webkit-scrollbar { width: 10px; }
  ::-webkit-scrollbar-track { background: var(--bg-deep); }
  ::-webkit-scrollbar-thumb { background: rgba(77,141,255,0.25); border-radius: 10px; }
  ::-webkit-scrollbar-thumb:hover { background: rgba(77,141,255,0.4); }