
      :root {
        --navy: #0b1f3a;
        --navy2: #122952;
        --green: #00d48c;
        --green2: #00b878;
        --yellow: #ffd166;
        --pink: #ff6b9d;
        --purple: #a78bfa;
        --blue: #38bdf8;
        --white: #ffffff;
        --off: #f5f9ff;
        --text: #1e3a5f;
        --muted: #5e7a9a;
        --border: #dbeafe;
        --card: #ffffff;
        --r: 14px;
      }

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      html {
        scroll-behavior: smooth;
        font-size: 16px;
      }
      body {
        font-family: "DM Sans", sans-serif;
        color: var(--text);
        background: var(--white);
        overflow-x: hidden;
        line-height: 1.75;
      }
      h1,
      h2,
      h3,
      h4 {
        font-family: "Syne", sans-serif;
        line-height: 1.2;
      }
      a {
        text-decoration: none;
        color: inherit;
      }
      p {
        line-height: 1.8;
        margin-bottom: 1rem;
        color: var(--muted);
      }
      img {
        max-width: 100%;
        display: block;
      }
      ul {
        padding-left: 1.2rem;
      }
      li {
        margin-bottom: 0.4rem;
        line-height: 1.75;
      }

      /* ===== REDUCED MOTION ===== */
      @media (prefers-reduced-motion: reduce) {
        * {
          animation-duration: 0.01ms !important;
          transition-duration: 0.01ms !important;
        }
      }

      /* ===== PAGE LOAD CURTAIN ===== */
      #page-curtain {
        position: fixed;
        inset: 0;
        background: var(--navy);
        z-index: 99999;
        display: flex;
        align-items: center;
        justify-content: center;
        pointer-events: none;
      }
      #page-curtain.gone {
        animation: curtainUp 0.6s cubic-bezier(0.77, 0, 0.18, 1) forwards;
      }
      @keyframes curtainUp {
        to {
          transform: translateY(-100%);
        }
      }
      .curtain-logo {
        font-family: "Syne", sans-serif;
        font-size: 2rem;
        font-weight: 800;
        color: #fff;
        display: flex;
        align-items: center;
        gap: 10px;
        animation: curtainLogoFade 0.5s ease forwards;
      }
      @keyframes curtainLogoFade {
        0% {
          opacity: 0;
          transform: scale(0.9);
        }
        60% {
          opacity: 1;
          transform: scale(1);
        }
        100% {
          opacity: 1;
        }
      }
      .curtain-logo span {
        color: var(--green);
      }

      /* ===== CURSOR GLOW (desktop) ===== */
      #cursor-glow {
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: radial-gradient(
          circle,
          rgba(0, 212, 140, 0.07) 0%,
          transparent 70%
        );
        position: fixed;
        pointer-events: none;
        z-index: 0;
        transform: translate(-50%, -50%);
        transition: transform 0.08s linear;
        mix-blend-mode: screen;
      }

      /* ===================== POPUP ANNOUNCEMENT ===================== */
      .popup-overlay {
        position: fixed;
        inset: 0;
        background: rgba(11, 31, 58, 0.75);
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
        animation: fadeOverlay 0.4s ease;
      }
      @keyframes fadeOverlay {
        from {
          opacity: 0;
        }
        to {
          opacity: 1;
        }
      }
      .popup-box {
        background: var(--white);
        border-radius: 20px;
        max-width: 460px;
        width: min(100%, 460px);
        overflow: hidden;
        animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        position: relative;
      }
      @keyframes popIn {
        from {
          transform: scale(0.75) translateY(30px);
          opacity: 0;
        }
        to {
          transform: scale(1) translateY(0);
          opacity: 1;
        }
      }
      .popup-banner {
        background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
        padding: 28px 28px 22px;
        text-align: center;
        position: relative;
        overflow: hidden;
      }
      .popup-banner::before {
        content: "";
        position: absolute;
        top: -50px;
        right: -50px;
        width: 150px;
        height: 150px;
        background: radial-gradient(
          circle,
          rgba(0, 212, 140, 0.25) 0%,
          transparent 70%
        );
        border-radius: 50%;
      }
      .popup-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: var(--yellow);
        color: var(--navy);
        font-family: "Syne", sans-serif;
        font-weight: 700;
        font-size: 0.75rem;
        padding: 5px 12px;
        border-radius: 20px;
        margin-bottom: 12px;
        letter-spacing: 0.5px;
        text-transform: uppercase;
      }
      .popup-banner h2 {
        color: var(--white);
        font-size: 1.6rem;
        font-weight: 800;
        margin-bottom: 8px;
        font-family: "Syne", sans-serif;
      }
      .popup-banner h2 span {
        color: var(--green);
      }
      .popup-banner p {
        color: rgba(255, 255, 255, 0.75);
        font-size: 0.9rem;
        margin-bottom: 0;
        line-height: 1.55;
      }
      .popup-body {
        padding: 22px 26px 26px;
        text-align: center;
      }
      .popup-countdown {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-bottom: 20px;
        flex-wrap: wrap;
      }
      .countdown-unit {
        background: var(--navy);
        color: var(--white);
        border-radius: 10px;
        padding: 10px 12px;
        min-width: 56px;
        text-align: center;
      }
      .countdown-num {
        font-family: "Syne", sans-serif;
        font-size: 1.3rem;
        font-weight: 800;
        color: var(--green);
        display: block;
        line-height: 1;
        margin-bottom: 4px;
      }
      .countdown-label {
        font-size: 0.7rem;
        color: rgba(255, 255, 255, 0.6);
        text-transform: uppercase;
        letter-spacing: 0.5px;
      }
      .popup-code {
        background: var(--off);
        border: 2px dashed var(--green);
        border-radius: 10px;
        padding: 10px 16px;
        margin-bottom: 18px;
        font-family: "Syne", sans-serif;
        font-size: 1rem;
        font-weight: 700;
        color: var(--navy);
        letter-spacing: 1.5px;
      }
      .popup-code span {
        color: var(--green);
      }
      .popup-features {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin-bottom: 18px;
        flex-wrap: wrap;
      }
      .popup-feat {
        font-size: 0.78rem;
        color: var(--muted);
        display: flex;
        align-items: center;
        gap: 5px;
      }
      .popup-feat i {
        color: var(--green);
      }
      .popup-cta {
        display: flex;
        gap: 10px;
        justify-content: center;
        flex-wrap: wrap;
      }
      .btn-popup {
        background: var(--green);
        color: var(--navy);
        font-family: "Syne", sans-serif;
        font-weight: 800;
        padding: 12px 24px;
        border-radius: 10px;
        font-size: 0.9rem;
        border: none;
        cursor: pointer;
        transition: all 0.25s;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        position: relative;
        overflow: hidden;
      }
      .btn-popup::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          90deg,
          transparent 0%,
          rgba(255, 255, 255, 0.3) 50%,
          transparent 100%
        );
        transform: translateX(-100%);
        transition: transform 0.5s ease;
      }
      .btn-popup:hover::after {
        transform: translateX(100%);
      }
      .btn-popup:hover {
        background: var(--green2);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(0, 212, 140, 0.4);
      }
      .btn-popup-skip {
        background: transparent;
        color: var(--muted);
        font-size: 0.82rem;
        border: none;
        cursor: pointer;
        padding: 11px 14px;
        font-family: "DM Sans", sans-serif;
        transition: color 0.2s;
      }
      .btn-popup-skip:hover {
        color: var(--text);
      }
      .popup-close {
        position: absolute;
        top: 12px;
        right: 12px;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.15);
        border: none;
        cursor: pointer;
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.9rem;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s;
      }
      .popup-close:hover {
        background: rgba(255, 255, 255, 0.25);
        color: #fff;
        transform: rotate(90deg);
      }

      /* Topbar & navbar styles now live only in assets/css/main.css — single source of truth to prevent nav/dropdown drift across pages. */
      /* ===================== NOTIFICATION STRIP ===================== */
      .notif-strip {
        background: linear-gradient(
          90deg,
          var(--green) 0%,
          #00b878 50%,
          var(--green) 100%
        );
        background-size: 200% auto;
        animation: shimmer 3s linear infinite;
        padding: 10px 24px;
        text-align: center;
        font-family: "Syne", sans-serif;
        font-size: 0.88rem;
        font-weight: 700;
        color: var(--navy);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        cursor: pointer;
        transition: letter-spacing 0.3s;
      }
      .notif-strip:hover {
        letter-spacing: 0.3px;
      }
      @keyframes shimmer {
        0% {
          background-position: 0% center;
        }
        100% {
          background-position: 200% center;
        }
      }
      .notif-tag {
        background: var(--navy);
        color: var(--green);
        padding: 3px 10px;
        border-radius: 20px;
        font-size: 0.72rem;
        letter-spacing: 0.5px;
        animation: notifBounce 2s ease-in-out infinite;
      }
      @keyframes notifBounce {
        0%,
        100% {
          transform: scale(1);
        }
        50% {
          transform: scale(1.06);
        }
      }

      /* ===================== HERO ===================== */
      .hero {
        background: var(--navy);
        min-height: 92vh;
        display: flex;
        align-items: center;
        position: relative;
        overflow: hidden;
        padding: 80px 24px 60px;
      }
      .hero-mesh {
        position: absolute;
        inset: 0;
        background:
          radial-gradient(
            ellipse at 20% 50%,
            rgba(0, 212, 140, 0.12) 0%,
            transparent 50%
          ),
          radial-gradient(
            ellipse at 80% 20%,
            rgba(167, 139, 250, 0.12) 0%,
            transparent 50%
          ),
          radial-gradient(
            ellipse at 60% 80%,
            rgba(255, 209, 102, 0.08) 0%,
            transparent 50%
          );
      }
      /* Animated particles */
      .hero-particles {
        position: absolute;
        inset: 0;
        overflow: hidden;
        pointer-events: none;
      }
      .particle {
        position: absolute;
        border-radius: 50%;
        animation: particleDrift linear infinite;
        opacity: 0;
      }
      @keyframes particleDrift {
        0% {
          opacity: 0;
          transform: translateY(0) scale(0);
        }
        10% {
          opacity: 1;
        }
        90% {
          opacity: 1;
        }
        100% {
          opacity: 0;
          transform: translateY(-80vh) scale(1);
        }
      }
      .hero-shape {
        position: absolute;
        border-radius: 50%;
        opacity: 0.06;
      }
      .hs1 {
        width: 500px;
        height: 500px;
        background: var(--green);
        top: -200px;
        right: -100px;
        animation: shapePulse 8s ease-in-out infinite;
      }
      .hs2 {
        width: 300px;
        height: 300px;
        background: var(--purple);
        bottom: -100px;
        left: 10%;
        animation: shapePulse 10s ease-in-out infinite 2s;
      }
      .hs3 {
        width: 150px;
        height: 150px;
        background: var(--yellow);
        top: 30%;
        left: 5%;
        opacity: 0.08;
        animation: shapePulse 6s ease-in-out infinite 1s;
      }
      @keyframes shapePulse {
        0%,
        100% {
          transform: scale(1);
        }
        50% {
          transform: scale(1.12);
        }
      }
      .hero-inner {
        max-width: 1240px;
        margin: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        position: relative;
        z-index: 1;
        width: 100%;
      }

      /* Hero text stagger entrance */
      .hero-left > * {
        opacity: 0;
        transform: translateY(28px);
        animation: heroStagger 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
      }
      .hero-left .hero-tag {
        animation-delay: 0.1s;
      }
      .hero-left h1 {
        animation-delay: 0.2s;
      }
      .hero-left .hero-sub {
        animation-delay: 0.3s;
      }
      .hero-left .hero-trust {
        animation-delay: 0.4s;
      }
      .hero-left .hero-btns {
        animation-delay: 0.5s;
      }
      .hero-left .hero-proof {
        animation-delay: 0.6s;
      }
      @keyframes heroStagger {
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .hero-tag {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(0, 212, 140, 0.15);
        border: 1px solid rgba(0, 212, 140, 0.3);
        color: var(--green);
        padding: 7px 16px;
        border-radius: 30px;
        font-size: 0.8rem;
        font-weight: 700;
        margin-bottom: 22px;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        animation: tagGlow 3s ease-in-out infinite 1s;
      }
      @keyframes tagGlow {
        0%,
        100% {
          box-shadow: 0 0 0 0 rgba(0, 212, 140, 0);
        }
        50% {
          box-shadow: 0 0 12px 2px rgba(0, 212, 140, 0.25);
        }
      }
      .hero h1 {
        color: var(--white);
        font-size: clamp(2.2rem, 4.5vw, 3.4rem);
        font-weight: 800;
        line-height: 1.15;
        margin-bottom: 20px;
      }
      .hero h1 .highlight {
        color: transparent;
        background: linear-gradient(90deg, var(--green), var(--blue));
        -webkit-background-clip: text;
        background-clip: text;
        background-size: 200% auto;
        animation: gradientShift 4s ease infinite;
      }
      @keyframes gradientShift {
        0% {
          background-position: 0% center;
        }
        50% {
          background-position: 100% center;
        }
        100% {
          background-position: 0% center;
        }
      }
      .hero h1 .highlight2 {
        color: var(--yellow);
      }
      .hero-sub {
        color: rgba(255, 255, 255, 0.7);
        font-size: 1.05rem;
        line-height: 1.75;
        margin-bottom: 32px;
      }
      .hero-trust {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 34px;
      }
      .trust-pill {
        display: flex;
        align-items: center;
        gap: 7px;
        background: rgba(255, 255, 255, 0.07);
        border: 1px solid rgba(255, 255, 255, 0.12);
        color: rgba(255, 255, 255, 0.85);
        padding: 8px 16px;
        border-radius: 30px;
        font-size: 0.82rem;
        transition: all 0.3s;
        cursor: default;
      }
      .trust-pill:hover {
        background: rgba(0, 212, 140, 0.15);
        border-color: rgba(0, 212, 140, 0.4);
        transform: translateY(-2px);
      }
      .trust-pill i {
        color: var(--green);
      }
      .hero-btns {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
        margin-bottom: 36px;
      }

      /* ===== BUTTON ANIMATIONS ===== */
      .btn-hero {
        background: var(--green);
        color: var(--navy);
        font-family: "Syne", sans-serif;
        font-weight: 800;
        padding: 15px 32px;
        border-radius: 10px;
        font-size: 1rem;
        display: inline-flex;
        align-items: center;
        gap: 9px;
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        border: none;
        cursor: pointer;
        box-shadow: 0 6px 20px rgba(0, 212, 140, 0.4);
        position: relative;
        overflow: hidden;
      }
      .btn-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.25),
          transparent
        );
        transform: translateX(-100%);
      }
      .btn-hero:hover::before {
        transform: translateX(100%);
        transition: transform 0.5s ease;
      }
      .btn-hero:hover {
        background: var(--green2);
        transform: translateY(-4px) scale(1.02);
        box-shadow: 0 14px 32px rgba(0, 212, 140, 0.55);
      }
      .btn-hero:active {
        transform: translateY(-1px) scale(0.99);
      }
      .btn-hero i {
        transition: transform 0.3s;
      }
      .btn-hero:hover i {
        transform: translateX(4px) rotate(-5deg);
      }

      .btn-hero-outline {
        background: rgba(255, 255, 255, 0.08);
        color: var(--white) !important;
        font-family: "Syne", sans-serif;
        font-weight: 700;
        padding: 15px 32px;
        border-radius: 10px;
        font-size: 1rem;
        border: 2px solid rgba(255, 255, 255, 0.2);
        display: inline-flex;
        align-items: center;
        gap: 9px;
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        position: relative;
        overflow: hidden;
      }
      .btn-hero-outline::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 212, 140, 0.08);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
      }
      .btn-hero-outline:hover::before {
        transform: scaleX(1);
      }
      .btn-hero-outline:hover {
        border-color: var(--green);
        color: var(--green);
        transform: translateY(-3px);
      }
      .btn-hero-outline i {
        transition: transform 0.3s;
        position: relative;
        z-index: 1;
      }
      .btn-hero-outline:hover i {
        transform: rotate(15deg);
      }
      .btn-hero-outline span {
        position: relative;
        z-index: 1;
      }

      .proof-avatars {
        display: flex;
      }
      .proof-av {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        border: 2px solid var(--navy);
        margin-left: -8px;
        font-family: "Syne", sans-serif;
        font-weight: 700;
        font-size: 0.8rem;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--navy);
        transition:
          transform 0.2s,
          z-index 0.2s;
      }
      .proof-av:first-child {
        margin-left: 0;
      }
      .proof-av:hover {
        transform: scale(1.2) translateY(-3px);
        z-index: 5;
      }
      .proof-text {
        font-size: 0.82rem;
        color: rgba(255, 255, 255, 0.65);
      }
      .proof-text strong {
        color: var(--white);
      }

      /* Hero right card */
      .hero-visual {
        position: relative;
      }
      .hero-card-main {
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 20px;
        padding: 32px;
        backdrop-filter: blur(14px);
        animation: heroCardSlide 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
      }
      @keyframes heroCardSlide {
        from {
          opacity: 0;
          transform: translateX(40px);
        }
        to {
          opacity: 1;
          transform: translateX(0);
        }
      }
      .hero-card-main h3 {
        color: var(--white);
        font-size: 1.1rem;
        margin-bottom: 22px;
        display: flex;
        align-items: center;
        gap: 10px;
      }
      .hero-card-main h3 i {
        color: var(--green);
      }
      .price-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-bottom: 22px;
      }
      .price-tile {
        background: rgba(255, 255, 255, 0.07);
        border-radius: 12px;
        padding: 16px;
        text-align: center;
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        cursor: default;
        border: 1px solid rgba(255, 255, 255, 0.08);
      }
      .price-tile:hover {
        background: rgba(0, 212, 140, 0.15);
        border-color: rgba(0, 212, 140, 0.4);
        transform: scale(1.05) translateY(-3px);
        box-shadow: 0 8px 24px rgba(0, 212, 140, 0.2);
      }
      .pt-label {
        color: rgba(255, 255, 255, 0.55);
        font-size: 0.75rem;
        margin-bottom: 6px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
      }
      .pt-price {
        color: var(--green);
        font-family: "Syne", sans-serif;
        font-size: 1.4rem;
        font-weight: 800;
        line-height: 1;
      }
      .pt-sub {
        color: rgba(255, 255, 255, 0.4);
        font-size: 0.7rem;
        margin-top: 4px;
      }

      /* Floating cards */
      .float-card {
        position: absolute;
        background: var(--white);
        border-radius: 14px;
        padding: 12px 16px;
        box-shadow: 0 8px 30px rgba(11, 31, 58, 0.25);
        display: flex;
        align-items: center;
        gap: 10px;
        animation: floatCard 4s ease-in-out infinite;
        white-space: nowrap;
        transition: transform 0.3s;
      }
      .float-card:hover {
        transform: scale(1.06) !important;
      }
      .float-card2 {
        animation-delay: -2s;
      }
      .float-card3 {
        animation-delay: -1s;
      }
      @keyframes floatCard {
        0%,
        100% {
          transform: translateY(0);
        }
        50% {
          transform: translateY(-10px);
        }
      }
      .float-card-icon {
        width: 36px;
        height: 36px;
        border-radius: 9px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
      }
      .float-card h5 {
        font-size: 0.8rem;
        color: var(--text);
        margin-bottom: 1px;
      }
      .float-card p {
        font-size: 0.72rem;
        color: var(--muted);
        margin: 0;
        line-height: 1.3;
      }
      .fc1 {
        top: -24px;
        left: -30px;
      }
      .fc2 {
        bottom: 30px;
        right: -30px;
      }
      .fc3 {
        top: 50%;
        left: -40px;
        transform: translateY(-50%);
      }

      /* ===================== STATS STRIP ===================== */
      .stats-strip {
        background: var(--white);
        border-bottom: 1px solid var(--border);
        padding: 28px 24px;
      }
      .stats-strip-inner {
        max-width: 1240px;
        margin: auto;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
      }
      .stat-item {
        text-align: center;
        padding: 10px 20px;
        border-right: 1px solid var(--border);
        transition: background 0.3s;
      }
      .stat-item:hover {
        background: rgba(0, 212, 140, 0.04);
      }
      .stat-item:last-child {
        border-right: none;
      }
      .stat-big {
        font-family: "Syne", sans-serif;
        font-size: 2.2rem;
        font-weight: 800;
        color: var(--navy);
        line-height: 1;
        margin-bottom: 4px;
      }
      .stat-big span {
        color: var(--green);
      }
      .stat-sub {
        color: var(--muted);
        font-size: 0.82rem;
        line-height: 1.4;
      }

      /* ===================== SERVICES ===================== */
      .services {
        padding: 90px 24px;
        background: var(--off);
      }
      .services-grid {
        max-width: 1240px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
        gap: 22px;
      }
      .svc-card {
        background: var(--white);
        border-radius: 16px;
        padding: 30px;
        border: 1.5px solid var(--border);
        transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
        position: relative;
        overflow: hidden;
        cursor: pointer;
        display: block;
        color: var(--text);
      }
      .svc-card::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          135deg,
          rgba(0, 212, 140, 0.06) 0%,
          transparent 60%
        );
        opacity: 0;
        transition: opacity 0.3s;
      }
      /* Shine sweep on hover */
      .svc-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 60%;
        height: 100%;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.4),
          transparent
        );
        transform: skewX(-20deg);
        transition: left 0.6s ease;
        z-index: 1;
      }
      .svc-card:hover::before {
        left: 150%;
      }
      .svc-card:hover {
        border-color: var(--green);
        transform: translateY(-8px);
        box-shadow: 0 20px 48px rgba(0, 212, 140, 0.18);
      }
      .svc-card:hover::after {
        opacity: 1;
      }
      .svc-icon {
        width: 56px;
        height: 56px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        margin-bottom: 18px;
        transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
      }
      .svc-card:hover .svc-icon {
        transform: scale(1.18) rotate(-5deg);
      }
      .svc-card h3 {
        font-size: 1.05rem;
        color: var(--navy);
        margin-bottom: 8px;
        transition: color 0.2s;
      }
      .svc-card:hover h3 {
        color: var(--green);
      }
      .svc-card p {
        color: var(--muted);
        font-size: 0.88rem;
        line-height: 1.68;
        margin-bottom: 14px;
      }
      .svc-arrow {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        color: var(--green);
        font-size: 0.83rem;
        font-weight: 700;
        transition:
          gap 0.25s,
          transform 0.25s;
      }
      .svc-card:hover .svc-arrow {
        gap: 12px;
      }
      .svc-ribbon {
        position: absolute;
        top: 16px;
        right: -8px;
        background: var(--yellow);
        color: var(--navy);
        font-size: 0.68rem;
        font-weight: 800;
        padding: 3px 14px;
        border-radius: 4px 0 0 4px;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        box-shadow: -2px 2px 6px rgba(0, 0, 0, 0.1);
        animation: ribbonWiggle 3s ease-in-out infinite 2s;
      }
      @keyframes ribbonWiggle {
        0%,
        90%,
        100% {
          transform: rotate(0deg);
        }
        92% {
          transform: rotate(-2deg);
        }
        96% {
          transform: rotate(2deg);
        }
      }

      /* ===================== HOW IT WORKS ===================== */
      .how {
        background: var(--navy);
        padding: 90px 24px;
        position: relative;
        overflow: hidden;
      }
      .how::before {
        content: "";
        position: absolute;
        top: -200px;
        right: -200px;
        width: 600px;
        height: 600px;
        background: radial-gradient(
          circle,
          rgba(0, 212, 140, 0.08) 0%,
          transparent 60%
        );
        border-radius: 50%;
        animation: shapePulse 10s ease-in-out infinite;
      }
      .how-steps {
        max-width: 1000px;
        margin: 60px auto 0;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
        position: relative;
      }
      .how-steps::before {
        content: "";
        position: absolute;
        top: 38px;
        left: 12%;
        right: 12%;
        height: 2px;
        background: linear-gradient(
          90deg,
          var(--green),
          rgba(0, 212, 140, 0.1)
        );
        z-index: 0;
        animation: lineGrow 1.5s ease 0.8s both;
        transform-origin: left;
      }
      @keyframes lineGrow {
        from {
          transform: scaleX(0);
        }
        to {
          transform: scaleX(1);
        }
      }
      .how-step {
        text-align: center;
        padding: 0 16px;
        position: relative;
        z-index: 1;
      }
      .step-bubble {
        width: 76px;
        height: 76px;
        border-radius: 50%;
        background: rgba(0, 212, 140, 0.1);
        border: 2px solid rgba(0, 212, 140, 0.25);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        font-family: "Syne", sans-serif;
        font-size: 1.6rem;
        font-weight: 800;
        color: var(--green);
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        position: relative;
      }
      .how-step:hover .step-bubble {
        background: var(--green);
        color: var(--navy);
        box-shadow:
          0 0 0 12px rgba(0, 212, 140, 0.12),
          0 0 0 24px rgba(0, 212, 140, 0.05);
        transform: scale(1.1);
      }
      .step-icon {
        position: absolute;
        top: -10px;
        right: -10px;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: var(--yellow);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.75rem;
        color: var(--navy);
        transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
      }
      .how-step:hover .step-icon {
        transform: rotate(360deg) scale(1.15);
      }
      .how-step h4 {
        color: var(--white);
        font-size: 1rem;
        margin-bottom: 8px;
        transition: color 0.2s;
      }
      .how-step:hover h4 {
        color: var(--green);
      }
      .how-step p {
        color: rgba(255, 255, 255, 0.5);
        font-size: 0.84rem;
        line-height: 1.65;
        margin-bottom: 0;
      }

      /* ===================== WHY US ===================== */
      .why {
        padding: 90px 24px;
        background: var(--white);
      }
      .why-inner {
        max-width: 1240px;
        margin: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 64px;
        align-items: center;
      }
      .why-visual {
        position: relative;
      }
      .why-illustration {
        background: var(--off);
        border-radius: 24px;
        padding: 40px;
        text-align: center;
        position: relative;
        overflow: hidden;
        transition: box-shadow 0.3s;
      }
      .why-illustration:hover {
        box-shadow: 0 20px 60px rgba(0, 212, 140, 0.12);
      }
      .why-illustration::before {
        content: "";
        position: absolute;
        top: -40px;
        right: -40px;
        width: 200px;
        height: 200px;
        background: radial-gradient(
          circle,
          rgba(0, 212, 140, 0.15) 0%,
          transparent 70%
        );
        border-radius: 50%;
        animation: shapePulse 8s ease-in-out infinite;
      }
      .why-feats {
        display: flex;
        flex-direction: column;
        gap: 14px;
      }
      .why-feat {
        background: var(--white);
        border: 1.5px solid var(--border);
        border-radius: 12px;
        padding: 18px 20px;
        display: flex;
        gap: 14px;
        align-items: flex-start;
        transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
      }
      .why-feat:hover {
        border-color: var(--green);
        box-shadow: 0 6px 28px rgba(0, 212, 140, 0.12);
        transform: translateX(8px);
      }
      .feat-icon {
        width: 44px;
        height: 44px;
        background: rgba(0, 212, 140, 0.1);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        color: var(--green);
        flex-shrink: 0;
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
      }
      .why-feat:hover .feat-icon {
        background: var(--green);
        color: var(--navy);
        transform: scale(1.12) rotate(-5deg);
      }
      .why-feat h4 {
        font-size: 0.93rem;
        color: var(--navy);
        margin-bottom: 3px;
      }
      .why-feat p {
        font-size: 0.84rem;
        color: var(--muted);
        line-height: 1.6;
        margin-bottom: 0;
      }
      .why-right .section-tag {
        text-align: left;
      }
      .why-right h2 {
        font-size: clamp(1.8rem, 2.5vw, 2.4rem);
        color: var(--navy);
        margin-bottom: 14px;
      }
      .why-right > p {
        color: var(--muted);
        line-height: 1.75;
        margin-bottom: 28px;
      }

      /* ===================== FREE FEATURES ===================== */
      .freebies {
        padding: 80px 24px;
        background: var(--off);
      }
      .freebies-grid {
        max-width: 1100px;
        margin: 50px auto 0;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 16px;
      }
      .freebie {
        background: var(--white);
        border: 2px dashed var(--border);
        border-radius: 14px;
        padding: 26px 16px;
        text-align: center;
        transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
        position: relative;
        overflow: hidden;
      }
      .freebie::after {
        content: "FREE";
        position: absolute;
        inset: 0;
        background: rgba(0, 212, 140, 0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: "Syne", sans-serif;
        font-size: 1.4rem;
        font-weight: 800;
        color: var(--green);
        opacity: 0;
        transition: opacity 0.3s;
      }
      .freebie:hover::after {
        opacity: 1;
      }
      .freebie:hover {
        background: rgba(0, 212, 140, 0.05);
        border-color: var(--green);
        transform: translateY(-6px) scale(1.03);
        box-shadow: 0 12px 32px rgba(0, 212, 140, 0.15);
      }
      .freebie-icon {
        width: 52px;
        height: 52px;
        background: rgba(0, 212, 140, 0.1);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        color: var(--green);
        margin: 0 auto 14px;
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
      }
      .freebie:hover .freebie-icon {
        transform: scale(1.15) rotate(-8deg);
        background: var(--green);
        color: var(--navy);
      }
      .freebie h4 {
        font-size: 0.88rem;
        color: var(--navy);
        font-weight: 700;
        margin-bottom: 5px;
      }
      .freebie-was {
        font-size: 0.78rem;
        color: #e44;
        text-decoration: line-through;
      }
      .freebie-free {
        font-size: 0.88rem;
        color: var(--green);
        font-weight: 700;
      }

      /* ===================== TESTIMONIALS ===================== */
      .testi {
        background: var(--navy);
        padding: 90px 24px;
        position: relative;
        overflow: hidden;
      }
      .testi::before {
        content: "";
        position: absolute;
        bottom: -100px;
        left: -100px;
        width: 400px;
        height: 400px;
        background: radial-gradient(
          circle,
          rgba(167, 139, 250, 0.1) 0%,
          transparent 60%
        );
        border-radius: 50%;
        animation: shapePulse 12s ease-in-out infinite;
      }
      .testi-grid {
        max-width: 1200px;
        margin: 56px auto 0;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 20px;
      }
      .testi-card {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.09);
        border-radius: 16px;
        padding: 28px;
        transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
        position: relative;
        overflow: hidden;
      }
      .testi-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--green), var(--blue));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
      }
      .testi-card:hover::before {
        transform: scaleX(1);
      }
      .testi-card:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-6px);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
      }
      .testi-stars {
        color: var(--yellow);
        font-size: 0.92rem;
        margin-bottom: 12px;
        letter-spacing: 2px;
      }
      .testi-q {
        color: var(--green);
        font-size: 2.5rem;
        font-family: "Syne", sans-serif;
        line-height: 0.5;
        opacity: 0.4;
        margin-bottom: 10px;
        transition: opacity 0.3s;
      }
      .testi-card:hover .testi-q {
        opacity: 0.7;
      }
      .testi-text {
        color: rgba(255, 255, 255, 0.78);
        font-size: 0.9rem;
        line-height: 1.75;
        margin-bottom: 20px;
        font-style: italic;
      }
      .testi-author {
        display: flex;
        align-items: center;
        gap: 12px;
      }
      .testi-av {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--green), var(--blue));
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: "Syne", sans-serif;
        font-weight: 700;
        color: var(--navy);
        font-size: 0.9rem;
        flex-shrink: 0;
        transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
      }
      .testi-card:hover .testi-av {
        transform: scale(1.12);
      }
      .testi-name {
        color: var(--white);
        font-size: 0.9rem;
        font-weight: 700;
        margin-bottom: 2px;
      }
      .testi-city {
        color: rgba(255, 255, 255, 0.4);
        font-size: 0.78rem;
      }

      /* ===================== SUBJECTS STRIP ===================== */
      .subjects {
        padding: 70px 24px;
        background: var(--white);
        overflow: hidden;
      }
      .subjects-track {
        display: flex;
        gap: 14px;
        animation: scrollLeft 30s linear infinite;
        width: max-content;
        margin-top: 40px;
      }
      .subjects:hover .subjects-track {
        animation-play-state: paused;
      }
      @keyframes scrollLeft {
        from {
          transform: translateX(0);
        }
        to {
          transform: translateX(-50%);
        }
      }
      .subj-pill {
        background: var(--off);
        border: 1.5px solid var(--border);
        border-radius: 30px;
        padding: 10px 22px;
        display: flex;
        align-items: center;
        gap: 8px;
        white-space: nowrap;
        font-size: 0.88rem;
        color: var(--text);
        font-weight: 500;
        transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
        flex-shrink: 0;
        cursor: default;
      }
      .subj-pill:hover {
        background: rgba(0, 212, 140, 0.1);
        border-color: var(--green);
        color: var(--green);
        transform: translateY(-4px) scale(1.04);
        box-shadow: 0 8px 20px rgba(0, 212, 140, 0.15);
      }
      .subj-pill i {
        color: var(--green);
        font-size: 0.85rem;
        transition: transform 0.3s;
      }
      .subj-pill:hover i {
        transform: rotate(-15deg) scale(1.2);
      }

      /* ===================== LIMITED OFFER BANNER ===================== */
      .offer-banner {
        background: linear-gradient(
          135deg,
          #1a1040 0%,
          var(--navy2) 50%,
          #0d3050 100%
        );
        padding: 70px 24px;
        text-align: center;
        position: relative;
        overflow: hidden;
      }
      .offer-banner::before {
        content: "";
        position: absolute;
        top: -80px;
        left: 50%;
        transform: translateX(-50%);
        width: 600px;
        height: 300px;
        background: radial-gradient(
          ellipse,
          rgba(167, 139, 250, 0.15) 0%,
          transparent 70%
        );
        animation: shapePulse 8s ease-in-out infinite;
      }
      .offer-banner::after {
        content: "🎓";
        position: absolute;
        font-size: 8rem;
        opacity: 0.04;
        right: 5%;
        top: 50%;
        transform: translateY(-50%);
        animation: floatCard 6s ease-in-out infinite;
      }
      .offer-live {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(255, 107, 157, 0.15);
        border: 1px solid rgba(255, 107, 157, 0.3);
        color: var(--pink);
        padding: 6px 16px;
        border-radius: 20px;
        font-size: 0.78rem;
        font-weight: 700;
        margin-bottom: 18px;
        text-transform: uppercase;
        letter-spacing: 0.8px;
      }
      .live-dot {
        width: 8px;
        height: 8px;
        background: var(--pink);
        border-radius: 50%;
        animation: blink 1.2s infinite;
      }
      @keyframes blink {
        0%,
        100% {
          opacity: 1;
        }
        50% {
          opacity: 0.2;
        }
      }
      .offer-banner h2 {
        color: var(--white);
        font-size: clamp(1.8rem, 3.5vw, 2.8rem);
        font-weight: 800;
        margin-bottom: 10px;
      }
      .offer-banner h2 span {
        color: var(--green);
      }
      .offer-banner p {
        color: rgba(255, 255, 255, 0.65);
        font-size: 1rem;
        margin-bottom: 28px;
        line-height: 1.7;
      }
      .offer-countdown {
        display: flex;
        justify-content: center;
        gap: 14px;
        margin-bottom: 32px;
        flex-wrap: wrap;
      }
      .oc-unit {
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 12px;
        padding: 14px 20px;
        min-width: 72px;
        text-align: center;
        transition: all 0.3s;
      }
      .oc-unit:hover {
        background: rgba(0, 212, 140, 0.15);
        border-color: rgba(0, 212, 140, 0.3);
        transform: scale(1.05);
      }
      .oc-num {
        font-family: "Syne", sans-serif;
        font-size: 1.8rem;
        font-weight: 800;
        color: var(--green);
        display: block;
        line-height: 1;
        margin-bottom: 5px;
      }
      .oc-label {
        font-size: 0.68rem;
        color: rgba(255, 255, 255, 0.4);
        text-transform: uppercase;
        letter-spacing: 0.5px;
      }
      .offer-code {
        display: inline-block;
        background: rgba(0, 212, 140, 0.1);
        border: 2px dashed rgba(0, 212, 140, 0.4);
        border-radius: 10px;
        padding: 12px 28px;
        margin-bottom: 28px;
        font-family: "Syne", sans-serif;
        font-size: 1.15rem;
        font-weight: 800;
        color: var(--white);
        letter-spacing: 3px;
        cursor: pointer;
        transition: all 0.3s;
        position: relative;
        overflow: hidden;
      }
      .offer-code::before {
        content: "Click to Copy!";
        position: absolute;
        inset: 0;
        background: var(--green);
        color: var(--navy);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.9rem;
        font-weight: 800;
        opacity: 0;
        transition: opacity 0.3s;
      }
      .offer-code:hover::before {
        opacity: 1;
      }
      .offer-code em {
        font-style: normal;
        color: var(--green);
      }
      .offer-btns {
        display: flex;
        justify-content: center;
        gap: 14px;
        flex-wrap: wrap;
      }

      /* ===================== CTA BANNER ===================== */
      .cta-section {
        background: linear-gradient(135deg, var(--green) 0%, #00b878 100%);
        padding: 80px 24px;
        text-align: center;
        position: relative;
        overflow: hidden;
      }
      .cta-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000' fill-opacity='.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      }
      .cta-section h2 {
        font-size: clamp(1.9rem, 3.5vw, 2.6rem);
        color: var(--navy);
        margin-bottom: 12px;
        position: relative;
        z-index: 1;
      }
      .cta-section p {
        color: rgba(11, 31, 58, 0.7);
        font-size: 1.05rem;
        margin-bottom: 32px;
        line-height: 1.7;
        position: relative;
        z-index: 1;
      }
      .cta-btns {
        display: flex;
        justify-content: center;
        gap: 14px;
        flex-wrap: wrap;
        position: relative;
        z-index: 1;
      }
      .btn-dark {
        background: var(--navy);
        color: var(--white);
        font-family: "Syne", sans-serif;
        font-weight: 700;
        padding: 14px 30px;
        border-radius: 10px;
        font-size: 0.95rem;
        display: inline-flex;
        align-items: center;
        gap: 9px;
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        border: none;
        cursor: pointer;
        position: relative;
        overflow: hidden;
      }
      .btn-dark::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.07),
          transparent
        );
        transform: translateX(-100%);
      }
      .btn-dark:hover::before {
        transform: translateX(100%);
        transition: transform 0.5s;
      }
      .btn-dark:hover {
        background: #0d2e50;
        transform: translateY(-3px);
        box-shadow: 0 10px 28px rgba(11, 31, 58, 0.35);
      }
      .btn-dark i {
        transition: transform 0.3s;
      }
      .btn-dark:hover i {
        transform: translateX(4px) rotate(-8deg);
      }
      .btn-wa {
        background: #25d366;
        color: var(--white);
        font-family: "Syne", sans-serif;
        font-weight: 700;
        padding: 14px 30px;
        border-radius: 10px;
        font-size: 0.95rem;
        display: inline-flex;
        align-items: center;
        gap: 9px;
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        position: relative;
        overflow: hidden;
      }
      .btn-wa::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.15),
          transparent
        );
        transform: translateX(-100%);
      }
      .btn-wa:hover::before {
        transform: translateX(100%);
        transition: transform 0.5s;
      }
      .btn-wa:hover {
        background: #20c05a;
        transform: translateY(-3px);
        box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
      }
      .btn-wa i {
        transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
      }
      .btn-wa:hover i {
        transform: rotate(15deg) scale(1.2);
      }

      /* ===================== FOOTER ===================== */
      footer {
        background: #060f1a;
        padding: 70px 24px 0;
        color: rgba(255, 255, 255, 0.7);
      }
      .footer-grid {
        max-width: 1240px;
        margin: auto;
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 48px;
        padding-bottom: 56px;
      }
      footer h4 {
        color: var(--white);
        font-size: 0.95rem;
        font-weight: 700;
        margin-bottom: 18px;
        font-family: "Syne", sans-serif;
      }
      footer p {
        font-size: 0.87rem;
        line-height: 1.75;
        margin-bottom: 10px;
        color: rgba(255, 255, 255, 0.6);
      }
      footer ul {
        list-style: none;
        padding-left: 0;
      }
      footer ul li {
        margin-bottom: 12px;
      }
      footer ul li a {
        color: rgba(255, 255, 255, 0.55);
        font-size: 0.87rem;
        transition: all 0.2s;
        display: inline-block;
      }
      footer ul li a:hover {
        color: var(--green);
        transform: translateX(4px);
      }
      .footer-logo {
        font-family: "Syne", sans-serif;
        font-size: 1.6rem;
        font-weight: 800;
        color: var(--white);
        margin-bottom: 14px;
        display: flex;
        align-items: center;
        gap: 10px;
      }
      .footer-logo em {
        font-style: normal;
        color: var(--green);
      }
      .social-links {
        display: flex;
        gap: 10px;
        margin-top: 18px;
      }
      .social-links a {
        width: 38px;
        height: 38px;
        background: rgba(255, 255, 255, 0.07);
        border-radius: 9px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, 0.65);
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        font-size: 0.9rem;
      }
      .social-links a:hover {
        background: var(--green);
        color: var(--navy);
        transform: translateY(-4px) scale(1.1);
      }
      .payment-badges {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 12px;
      }
      .payment-badges span {
        background: rgba(255, 255, 255, 0.07);
        padding: 5px 12px;
        border-radius: 5px;
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.55);
        transition: all 0.2s;
        cursor: default;
      }
      .payment-badges span:hover {
        background: rgba(255, 255, 255, 0.12);
        color: rgba(255, 255, 255, 0.8);
      }
      .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.07);
        padding: 22px 0;
        max-width: 1240px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 10px;
        font-size: 0.82rem;
        color: rgba(255, 255, 255, 0.35);
      }
      .footer-bottom a {
        color: rgba(255, 255, 255, 0.35);
        transition: color 0.2s;
      }
      .footer-bottom a:hover {
        color: var(--green);
      }

      /* ===================== FLOAT WA ===================== */
      .float-wa {
        position: fixed;
        bottom: 28px;
        right: 28px;
        background: #25d366;
        color: white;
        width: 58px;
        height: 58px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.55rem;
        z-index: 998;
        box-shadow: 0 4px 24px rgba(37, 211, 102, 0.55);
        animation: floatup 3s ease-in-out infinite;
        transition:
          transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
          box-shadow 0.3s;
      }
      .float-wa:hover {
        transform: scale(1.15) !important;
        box-shadow: 0 8px 32px rgba(37, 211, 102, 0.7);
      }
      @keyframes floatup {
        0%,
        100% {
          transform: translateY(0);
        }
        50% {
          transform: translateY(-7px);
        }
      }
      /* WA ping ring */
      .float-wa::after {
        content: "";
        position: absolute;
        inset: -4px;
        border-radius: 50%;
        border: 3px solid rgba(37, 211, 102, 0.5);
        animation: waPing 2s ease-out infinite;
      }
      @keyframes waPing {
        0% {
          transform: scale(1);
          opacity: 1;
        }
        100% {
          transform: scale(1.6);
          opacity: 0;
        }
      }

      /* ===================== SECTION HELPERS ===================== */
      .section-tag {
        display: inline-block;
        background: rgba(0, 212, 140, 0.1);
        color: var(--green);
        border: 1px solid rgba(0, 212, 140, 0.25);
        padding: 5px 18px;
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: 700;
        margin-bottom: 14px;
        letter-spacing: 0.8px;
        text-transform: uppercase;
      }
      .section-header {
        text-align: center;
        margin-bottom: 56px;
      }
      .section-header h2 {
        font-size: clamp(1.7rem, 3vw, 2.4rem);
        font-weight: 800;
        color: var(--navy);
        margin-bottom: 12px;
      }
      .section-header p {
        color: var(--muted);
        font-size: 1rem;
        max-width: 560px;
        margin: 0 auto;
        line-height: 1.75;
      }
      .container {
        max-width: 1240px;
        margin: auto;
      }

      /* ===== SCROLL FADE (enhanced) ===== */
      .fade-in {
        opacity: 0;
        transform: translateY(28px);
        transition:
          opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
          transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
      }
      .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
      }

      /* ===== COUNTER ANIMATION ===== */
      .stat-big[data-target] {
        display: block;
      }

      /* ===== RIPPLE ON CLICK ===== */
      .ripple-btn {
        position: relative;
        overflow: hidden;
      }
      .ripple-effect {
        position: absolute;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.35);
        transform: scale(0);
        animation: rippleAnim 0.6s linear;
        pointer-events: none;
      }
      @keyframes rippleAnim {
        to {
          transform: scale(4);
          opacity: 0;
        }
      }

      /* ===================== RESPONSIVE ===================== */
      @media (max-width: 960px) {
        .hero-inner {
          grid-template-columns: 1fr;
          gap: 40px;
        }
        .hero-visual {
          display: none;
        }
        .why-inner {
          grid-template-columns: 1fr;
        }
        .footer-grid {
          grid-template-columns: 1fr 1fr;
          gap: 36px;
        }
        .how-steps {
          grid-template-columns: repeat(2, 1fr);
        }
        .how-steps::before {
          display: none;
        }
        .stats-strip-inner {
          grid-template-columns: repeat(2, 1fr);
        }
        .stat-item:nth-child(2) {
          border-right: none;
        }
      }
      @media (max-width: 600px) {
        .footer-grid {
          grid-template-columns: 1fr;
        }
        .tb-inner {
          justify-content: center;
        }
        .hero h1 {
          font-size: 2rem;
        }
        .how-steps {
          grid-template-columns: 1fr 1fr;
        }
        .stats-strip-inner {
          grid-template-columns: repeat(1, 1fr);
        }
        #cursor-glow {
          display: none;
        }
      }