    /* ===== CSS VARIABLES ===== */
    :root {
      --blue: #2563eb;
      --blue-dark: #1d4ed8;
      --blue-light: #dbeafe;
      --green: #16a34a;
      --orange: #f97316;
      --purple: #8b5cf6;
      --red: #ef4444;
      --text-dark: #0f172a;
      --text-mid: #374151;
      --text-light: #6b7280;
      --bg-light: #f7fbff;
      --white: #ffffff;
      --border: #e5e7eb;
      --shadow-sm: 0 4px 15px rgba(0,0,0,0.06);
      --shadow-md: 0 10px 30px rgba(0,0,0,0.09);
      --shadow-lg: 0 25px 60px rgba(0,0,0,0.12);
      --radius: 16px;
      --font: 'Plus Jakarta Sans', sans-serif;
    }

    /* ===== RESET ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: var(--font); color: var(--text-dark); background: var(--white); line-height: 1.6; }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; }
    ul { list-style: none; padding: 0; margin: 0; }

    /* ===== CONTAINER ===== */
    .container {
      width: 100%;
      max-width: 1160px;
      margin: 0 auto;
      padding: 0 20px;
    }

    
    /* ===== HERO ===== */
    .hero-section {
      padding: 100px 0 80px;
      background: var(--bg-light);
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 50px;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(135deg,#e0f2fe,#dbeafe);
      color: var(--blue);
      padding: 8px 16px;
      border-radius: 30px;
      font-weight: 600;
      font-size: 13px;
      margin-bottom: 18px;
    }
    .badge-icon { width: 15px; height: 15px; fill: currentColor; }
    .hero-title {
      font-size: 46px;
      font-weight: 800;
      line-height: 1.15;
      letter-spacing: -1px;
      color: var(--text-dark);
      margin-bottom: 16px;
    }
    .hero-title .typing-wrapper {
      display: block;
    }
    #typed-text { color: var(--blue); }
    .typed-cursor { font-size: 46px; color: var(--blue); }
    .hero-desc {
      font-size: 16px;
      color: var(--text-light);
      max-width: 480px;
      margin-bottom: 26px;
    }
    .hero-info {
      display: flex;
      gap: 16px;
      margin-bottom: 24px;
      flex-wrap: wrap;
    }
    .hero-card {
      padding: 18px 20px;
      border-radius: var(--radius);
      display: flex;
      align-items: center;
      gap: 14px;
      background: var(--white);
      border: 1px solid #e6edf5;
      box-shadow: var(--shadow-sm);
      transition: all .3s ease;
      animation: cardFloat 5s ease-in-out infinite;
      flex: 1;
      min-width: 180px;
    }
    .hero-card:nth-child(2) { animation-delay: 1s; }
    .hero-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
    .hero-card img { width: 38px; height: 38px; object-fit: contain; }
    .hero-card strong { display: block; font-size: 16px; font-weight: 700; color: #111827; }
    .hero-card span { font-size: 13px; color: var(--text-light); }
    .hero-trust { margin-top: 20px; border-top: 1px solid var(--border); padding-top: 18px; margin-bottom: 24px; }
    .money-back { font-size: 14px; color: var(--green); font-weight: 600; margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
    .rating-box { display: flex; align-items: center; gap: 6px; font-size: 13px; flex-wrap: wrap; }
    .rating-box a { color: var(--blue); font-weight: 600; }
    .rating-box .fa { color: #facc15; font-size: 14px; }
    .rating-text { color: var(--text-light); }
    .hero-btn {
      background: linear-gradient(135deg, var(--blue), var(--blue-dark));
      color: #fff;
      padding: 14px 34px;
      border-radius: 12px;
      font-weight: 700;
      font-size: 16px;
      display: inline-block;
      transition: .3s;
      box-shadow: 0 6px 20px rgba(37,99,235,0.35);
      position: relative;
      overflow: hidden;
    }
    .hero-btn::after {
      content: "";
      position: absolute;
      top: 0; left: -75%;
      width: 50%; height: 100%;
      background: linear-gradient(120deg, transparent, rgba(255,255,255,0.55), transparent);
      transform: skewX(-20deg);
      animation: shine 4s infinite;
    }
    .hero-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(37,99,235,0.42); }
    .hero-right img {
      width: 100%;
      max-width: 520px;
      animation: heroFloat 6s ease-in-out infinite;
    }

    /* ===== PRICING ===== */
    .pricing-section {
      padding: 90px 0;
      background: linear-gradient(180deg, #f4f9ff, var(--white));
    }
    .section-title { font-size: 34px; font-weight: 800; text-align: center; margin-bottom: 10px; color: var(--text-dark); letter-spacing: -0.5px; }
    .section-sub { text-align: center; color: #1da1f2; font-size: 16px; margin-bottom: 50px; }
    .pricing-wrapper {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      max-width: 1050px;
      margin: auto;
    }
    .pricing-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 32px;
      box-shadow: var(--shadow-md);
      border-top: 5px solid #1da1f2;
      position: relative;
      transition: transform .3s, box-shadow .3s;
    }
    .pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
    .discount-badge {
      position: absolute;
      top: -12px; right: 20px;
      background: #ff4d4f;
      color: #fff;
      font-size: 12px;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 6px;
    }
    .plan-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
    .plan-title { font-size: 20px; font-weight: 700; color: var(--text-dark); }
    .plan-icon { font-size: 20px; color: #1da1f2; }
    .starting { font-size: 13px; color: var(--text-light); margin-top: 8px; }
    .price { font-size: 36px; font-weight: 800; color: #1da1f2; margin-top: 4px; }
    .price span { font-size: 14px; font-weight: 500; color: var(--text-light); }
    .old-price { font-size: 17px; color: #9ca3af; text-decoration: line-through; margin-right: 6px; }
    .desc { font-size: 14px; color: var(--text-light); line-height: 1.6; margin-top: 14px; }
    .divider { height: 1px; background: var(--border); margin: 18px 0; }
    .pricing-card ul li { display: flex; align-items: center; gap: 8px; margin: 10px 0; font-size: 14px; font-weight: 600; color: var(--text-mid); }
    .pricing-card ul li i { color: #1da1f2; }
    .btn-plan {
      display: block;
      margin-top: 22px;
      background: linear-gradient(90deg, #1da1f2, #0077ff);
      color: #fff;
      text-align: center;
      padding: 13px;
      border-radius: 10px;
      font-weight: 700;
      font-size: 15px;
      transition: .3s;
    }
    .btn-plan:hover { background: linear-gradient(90deg, #0077cc, #005fcc); transform: translateY(-2px); }

    /* ===== WHY SECTION ===== */
    .why-section { padding: 90px 0; background: var(--white); }
    .why-title { font-size: 38px; font-weight: 800; text-align: center; letter-spacing: -0.5px; line-height: 1.2; margin-bottom: 12px; }
    .brand-highlight { background: linear-gradient(90deg,#00a6ff,#0077cc); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
    .why-sub { font-size: 17px; color: var(--text-light); text-align: center; max-width: 700px; margin: 0 auto 55px; line-height: 1.7; }
    .why-sub .fast { color: var(--blue); font-weight: 700; }
    .why-sub .secure { color: var(--green); font-weight: 700; }
    .why-sub .easy { color: var(--purple); font-weight: 700; }
    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      max-width: 1100px;
      margin: auto;
    }
    .why-box {
      background: var(--white);
      padding: 32px 24px;
      border-radius: var(--radius);
      text-align: center;
      box-shadow: var(--shadow-sm);
      border: 1px solid #f0f4fb;
      transition: all .35s ease;
    }
    .why-box:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: #d7e4f5; }
    .why-icon { width: 64px; height: 64px; margin: 0 auto 18px; display: flex; align-items: center; justify-content: center; background: #eaf4ff; border-radius: 50%; }
    .why-icon img { width: 30px; height: 30px; object-fit: contain; }
    .why-box h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
    .why-box p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

    /* ===== FEATURES SECTION ===== */
    .features-section { padding: 90px 0; background: linear-gradient(180deg,#f7fbff,#fff); }
    .features-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 60px;
      margin-bottom: 80px;
    }
    .features-row:last-child { margin-bottom: 0; }
    .features-row.reverse { direction: rtl; }
    .features-row.reverse > * { direction: ltr; }
    .features-badge {
      display: inline-block;
      background: linear-gradient(90deg,#e8f2ff,#f0f7ff);
      color: var(--blue);
      font-weight: 600;
      font-size: 13px;
      border-radius: 40px;
      padding: 7px 16px;
      margin-bottom: 16px;
    }
    .features-heading { font-size: 32px; font-weight: 800; color: var(--text-dark); line-height: 1.2; margin-bottom: 20px; }
    .features-heading mark { background: none; color: var(--blue); }
    .check-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 12px 0;
      border-bottom: 1px solid var(--border);
      font-size: 15px;
      font-weight: 600;
      color: var(--text-mid);
    }
    .check-list li:last-child { border-bottom: none; }
    .check-icon {
      width: 28px; height: 28px;
      min-width: 28px;
      background: linear-gradient(135deg, var(--blue), var(--blue-dark));
      color: #fff;
      display: flex; align-items: center; justify-content: center;
      border-radius: 50%;
      font-size: 12px;
      box-shadow: 0 6px 15px rgba(37,99,235,0.3);
    }
    .features-img-wrap {
      border-radius: 20px;
      background: #fff;
      padding: 20px;
      box-shadow: var(--shadow-lg);
      transition: transform .4s ease, box-shadow .4s ease;
    }
    .features-img-wrap:hover { transform: translateY(-8px); box-shadow: 0 40px 80px rgba(0,0,0,0.13); }
    .features-img-wrap img { width: 100%; border-radius: 12px; }

    /* ===== SUPPORT SECTION ===== */
    .support-section { padding: 100px 0; background: var(--white); text-align: center; }
    .status-row { display: flex; align-items: center; justify-content: center; gap: 6px; margin-bottom: 16px; }
    .status-dot { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; animation: pulse-dot 2s infinite; }
    @keyframes pulse-dot { 0%,100%{box-shadow:0 0 0 0 rgba(34,197,94,0.4)} 50%{box-shadow:0 0 0 6px rgba(34,197,94,0)} }
    .status-text { font-size: 12px; font-weight: 700; color: #22c55e; letter-spacing: 1px; text-transform: uppercase; }
    .support-heading { font-size: 36px; font-weight: 800; color: var(--text-dark); margin-bottom: 10px; }
    .support-heading span { color: var(--blue); }
    .support-sub { color: #64748b; font-size: 15px; max-width: 500px; margin: 0 auto 60px; }
    .timeline { display: flex; justify-content: center; gap: 0; max-width: 780px; margin: 0 auto 60px; position: relative; }
    .timeline::before { content: ""; position: absolute; top: 18px; left: 12%; width: 76%; height: 2px; background: linear-gradient(90deg, #60a5fa, #c084fc, #34d399); z-index: 0; }
    .timeline-item { width: 33%; position: relative; z-index: 2; padding: 0 10px; }
    .t-icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; background: #fff; box-shadow: var(--shadow-md); }
    .t-icon svg { width: 18px; stroke-width: 2; fill: none; }
    .t-icon.blue svg { stroke: #3b82f6; }
    .t-icon.purple svg { stroke: #8b5cf6; }
    .t-icon.green svg { stroke: #10b981; }
    .step-num { display: block; font-size: 11px; color: #94a3b8; margin-bottom: 5px; font-weight: 600; }
    .timeline-item h4 { font-size: 14px; font-weight: 700; }
    .timeline-item p { font-size: 13px; color: #64748b; margin-top: 4px; }
    .support-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; max-width: 900px; margin: 0 auto; }
    .support-box {
      background: var(--white);
      border-radius: 18px;
      padding: 24px 16px;
      text-align: center;
      box-shadow: var(--shadow-sm);
      border: 1px solid var(--border);
      transition: .3s;
    }
    .support-box:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
    .s-icon { width: 44px; height: 44px; margin: 0 auto 12px; display: flex; align-items: center; justify-content: center; border-radius: 12px; }
    .s-icon svg { width: 22px; height: 22px; stroke-width: 2; fill: none; }
    .s-icon.blue { background: #e6f3ff; } .s-icon.blue svg { stroke: var(--blue); }
    .s-icon.purple { background: #f4ecff; } .s-icon.purple svg { stroke: #8b5cf6; }
    .s-icon.red { background: #ffecec; } .s-icon.red svg { stroke: var(--red); }
    .s-icon.orange { background: #fff3e6; } .s-icon.orange svg { stroke: var(--orange); }
    .support-box h4 { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
    .s-badge { display: inline-block; padding: 4px 10px; font-size: 11px; border-radius: 20px; font-weight: 700; }
    .s-badge.blue { background: #e6f3ff; color: var(--blue); }
    .s-badge.purple { background: #f4ecff; color: #8b5cf6; }
    .s-badge.red { background: #ffecec; color: var(--red); }
    .s-badge.orange { background: #fff3e6; color: var(--orange); }

    /* ===== CTA ===== */
    .cta-section { padding: 70px 20px; background: linear-gradient(135deg, #1e40af, #2563eb); text-align: center; }
    .cta-section h2 { font-size: 32px; font-weight: 800; color: #fff; margin-bottom: 10px; }
    .cta-section p { color: rgba(255,255,255,0.75); font-size: 16px; margin-bottom: 30px; }
    .cta-section p span { color: #fff; font-weight: 700; }
    .cta-btn {
      display: inline-block;
      background: #fff;
      color: var(--blue);
      font-size: 17px;
      font-weight: 700;
      padding: 15px 42px;
      border-radius: 40px;
      transition: .3s;
      box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }
    .cta-btn:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(0,0,0,0.25); }


    /* ===== ANIMATIONS ===== */
    @keyframes cardFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }
    @keyframes heroFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
    @keyframes shine { 0%{left:-75%} 100%{left:125%} }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1024px) {
      .hero-grid, .features-row { grid-template-columns: 1fr; gap: 40px; text-align: center; }
      .features-row.reverse { direction: ltr; }
      .hero-desc, .check-list { max-width: 100%; }
      .hero-info { justify-content: center; }
      .hero-trust { text-align: center; }
      .money-back, .rating-box { justify-content: center; }
      .hero-right img { margin: 0 auto; max-width: 420px; }
      .hero-btn { display: inline-block; }
      .why-grid { grid-template-columns: repeat(2,1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .features-img-wrap img { max-width: 460px; margin: 0 auto; }
      nav.nav-links { display: none; }
      .hamburger { display: block; }
    }
    @media (max-width: 768px) {
      .hero-section { padding: 70px 0; }
      .hero-title { font-size: 30px; text-align: left; }
      .typed-cursor { font-size: 30px; }
      .hero-desc { text-align: left; }
      .hero-left { text-align: left; }
      .hero-info { flex-direction: column; align-items: flex-start; }
      .hero-trust { text-align: left; }
      .money-back, .rating-box { justify-content: flex-start; }
      .hero-right { display: none; }
      .pricing-wrapper { grid-template-columns: 1fr; }
      .section-title { font-size: 26px; }
      .why-title { font-size: 28px; }
      .why-grid { grid-template-columns: 1fr; }
      .support-grid { grid-template-columns: repeat(2,1fr); }
      .support-heading { font-size: 26px; }
      .timeline { flex-direction: column; align-items: center; }
      .timeline::before { display: none; }
      .timeline-item { width: 100%; max-width: 280px; }
      .features-heading { font-size: 26px; }
      .footer-grid { grid-template-columns: 1fr; gap: 28px; }
      .footer-bottom { flex-direction: column; text-align: center; }
    }
    @media (max-width: 480px) {
      .hero-title { font-size: 26px; }
      .typed-cursor { font-size: 26px; }
      .support-grid { grid-template-columns: repeat(2,1fr); }
      .cta-section h2 { font-size: 24px; }
    }
