
      :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;
      }
      @media (prefers-reduced-motion: reduce) {
        * {
          animation-duration: 0.01ms !important;
          transition-duration: 0.01ms !important;
        }
      }

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      html {
        scroll-behavior: smooth;
      }
      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);
      }
      ul {
        padding-left: 1.2rem;
      }
      li {
        margin-bottom: 0.5rem;
        line-height: 1.75;
        color: var(--muted);
      }
      .container {
        max-width: 1240px;
        margin: auto;
        padding: 0 24px;
      }

      /* ===== PAGE 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 ===== */
      #cursor-glow {
        width: 280px;
        height: 280px;
        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;
      }

      /* Topbar & navbar styles now live only in assets/css/main.css — single source of truth to prevent nav/dropdown drift across pages. */

      /* ===================== PAGE HERO ===================== */
      .page-hero {
        background: var(--navy);
        padding: 80px 24px 70px;
        text-align: center;
        position: relative;
        overflow: hidden;
      }
      .page-hero-mesh {
        position: absolute;
        inset: 0;
        background:
          radial-gradient(
            ellipse at 20% 60%,
            rgba(0, 212, 140, 0.1) 0%,
            transparent 50%
          ),
          radial-gradient(
            ellipse at 80% 30%,
            rgba(167, 139, 250, 0.1) 0%,
            transparent 50%
          ),
          radial-gradient(
            ellipse at 50% 100%,
            rgba(56, 189, 248, 0.07) 0%,
            transparent 50%
          );
      }
      /* Floating shapes */
      .ph-shape {
        position: absolute;
        border-radius: 50%;
        opacity: 0.05;
        animation: shapeFloat ease-in-out infinite;
      }
      .ph-s1 {
        width: 400px;
        height: 400px;
        background: var(--green);
        top: -160px;
        left: -120px;
        animation-duration: 10s;
      }
      .ph-s2 {
        width: 250px;
        height: 250px;
        background: var(--purple);
        bottom: -80px;
        right: -60px;
        animation-duration: 8s;
        animation-delay: -3s;
      }
      @keyframes shapeFloat {
        0%,
        100% {
          transform: scale(1);
        }
        50% {
          transform: scale(1.12);
        }
      }

      /* Particles */
      .ph-particles {
        position: absolute;
        inset: 0;
        overflow: hidden;
        pointer-events: none;
      }
      .ph-particle {
        position: absolute;
        border-radius: 50%;
        animation: particleRise linear infinite;
        opacity: 0;
      }
      @keyframes particleRise {
        0% {
          opacity: 0;
          transform: translateY(0) scale(0);
        }
        10% {
          opacity: 1;
        }
        90% {
          opacity: 1;
        }
        100% {
          opacity: 0;
          transform: translateY(-60vh) scale(1);
        }
      }

      .page-hero-inner {
        max-width: 760px;
        margin: auto;
        position: relative;
        z-index: 1;
      }
      .breadcrumb {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(255, 255, 255, 0.07);
        border: 1px solid rgba(255, 255, 255, 0.12);
        color: rgba(255, 255, 255, 0.6);
        padding: 6px 16px;
        border-radius: 30px;
        font-size: 0.8rem;
        margin-bottom: 24px;
        animation: heroFade 0.7s ease 0.1s both;
      }
      .breadcrumb a {
        color: rgba(255, 255, 255, 0.6);
        transition: color 0.2s;
      }
      .breadcrumb a:hover {
        color: var(--green);
      }
      .breadcrumb i {
        font-size: 0.65rem;
        color: rgba(255, 255, 255, 0.3);
      }
      .page-hero h1 {
        color: var(--white);
        font-size: clamp(2.2rem, 4.5vw, 3.2rem);
        font-weight: 800;
        margin-bottom: 16px;
        animation: heroFade 0.7s ease 0.2s both;
      }
      .page-hero h1 em {
        font-style: normal;
        background: linear-gradient(90deg, var(--green), var(--blue));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        background-size: 200% auto;
        animation:
          heroFade 0.7s ease 0.2s both,
          gradShift 4s ease infinite 0.9s;
      }
      @keyframes gradShift {
        0% {
          background-position: 0% center;
        }
        50% {
          background-position: 100% center;
        }
        100% {
          background-position: 0% center;
        }
      }
      .page-hero p {
        color: rgba(255, 255, 255, 0.65);
        font-size: 1.05rem;
        line-height: 1.75;
        max-width: 620px;
        margin: 0 auto;
        animation: heroFade 0.7s ease 0.35s both;
      }
      @keyframes heroFade {
        from {
          opacity: 0;
          transform: translateY(22px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      /* ===================== SECTION HELPERS ===================== */
      .section {
        padding: 90px 24px;
      }
      .section-alt {
        background: var(--off);
      }
      .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;
      }

      /* FADE IN */
      .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);
      }

      /* ===================== CONTENT LAYOUT ===================== */
      .content-layout {
        display: grid;
        grid-template-columns: 1fr 380px;
        gap: 60px;
        align-items: start;
      }
      .content-body {
        animation: heroFade 0.7s ease 0.3s both;
      }
      .content-body h2 {
        font-size: 1.65rem;
        color: var(--navy);
        margin: 36px 0 12px;
        font-family: "Syne", sans-serif;
      }
      .content-body h2:first-child {
        margin-top: 0;
      }
      .content-body p {
        font-size: 1rem;
        color: var(--muted);
        line-height: 1.8;
      }
      .content-body ul {
        padding-left: 0;
        list-style: none;
      }
      .content-body ul li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 12px 16px;
        border-radius: 10px;
        margin-bottom: 8px;
        background: var(--white);
        border: 1.5px solid var(--border);
        font-size: 0.92rem;
        color: var(--text);
        transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
        animation: listSlide 0.5s ease both;
      }
      .content-body ul li:nth-child(1) {
        animation-delay: 0.1s;
      }
      .content-body ul li:nth-child(2) {
        animation-delay: 0.17s;
      }
      .content-body ul li:nth-child(3) {
        animation-delay: 0.24s;
      }
      .content-body ul li:nth-child(4) {
        animation-delay: 0.31s;
      }
      .content-body ul li:nth-child(5) {
        animation-delay: 0.38s;
      }
      .content-body ul li:nth-child(6) {
        animation-delay: 0.45s;
      }
      .content-body ul li:nth-child(7) {
        animation-delay: 0.52s;
      }
      @keyframes listSlide {
        from {
          opacity: 0;
          transform: translateX(-20px);
        }
        to {
          opacity: 1;
          transform: translateX(0);
        }
      }
      .content-body ul li:hover {
        border-color: var(--green);
        background: rgba(0, 212, 140, 0.04);
        transform: translateX(6px);
      }
      .content-body ul li::before {
        content: "\f058";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        color: var(--green);
        font-size: 0.9rem;
        margin-top: 2px;
        flex-shrink: 0;
        transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
      }
      .content-body ul li:hover::before {
        transform: scale(1.3) rotate(-10deg);
      }

      /* ===================== QUOTE WIDGET ===================== */
      .quote-widget {
        background: var(--navy);
        border-radius: 20px;
        padding: 28px;
        position: sticky;
        top: 90px;
        animation: heroFade 0.7s ease 0.45s both;
        border: 1px solid rgba(255, 255, 255, 0.07);
        transition: box-shadow 0.3s;
      }
      .quote-widget:hover {
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
      }
      .quote-widget h3 {
        color: var(--white);
        font-size: 1.1rem;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
      }
      .quote-widget h3 i {
        color: var(--green);
        animation: spinIcon 4s linear infinite;
      }
      @keyframes spinIcon {
        to {
          transform: rotate(360deg);
        }
      }
      .form-group {
        margin-bottom: 14px;
      }
      .form-group label {
        display: block;
        font-size: 0.78rem;
        color: rgba(255, 255, 255, 0.5);
        margin-bottom: 6px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
      }
      .form-group select,
      .form-group input {
        width: 100%;
        background: rgba(255, 255, 255, 0.07);
        border: 1px solid rgba(255, 255, 255, 0.12);
        color: var(--white);
        border-radius: 8px;
        padding: 10px 12px;
        font-size: 0.9rem;
        font-family: "DM Sans", sans-serif;
        transition: all 0.25s;
        outline: none;
      }
      .form-group select:focus,
      .form-group input:focus {
        border-color: rgba(0, 212, 140, 0.5);
        background: rgba(0, 212, 140, 0.07);
        box-shadow: 0 0 0 3px rgba(0, 212, 140, 0.12);
      }
      .form-group select option {
        background: #0b1f3a;
        color: #fff;
      }
      .quote-total {
        background: rgba(0, 212, 140, 0.1);
        border: 1px solid rgba(0, 212, 140, 0.2);
        border-radius: 12px;
        padding: 16px;
        margin: 18px 0;
        text-align: center;
        transition: all 0.3s;
      }
      .price-label {
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.5);
        margin-bottom: 6px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
      }
      .price {
        font-family: "Syne", sans-serif;
        font-size: 2rem;
        font-weight: 800;
        color: var(--green);
        transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
      }
      .price.bump {
        transform: scale(1.15);
      }

      /* ===================== BUTTONS ===================== */
      .btn-primary {
        background: var(--green);
        color: var(--navy);
        font-family: "Syne", sans-serif;
        font-weight: 800;
        padding: 14px 28px;
        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;
        box-shadow: 0 6px 20px rgba(0, 212, 140, 0.35);
        text-decoration: none;
        animation: idleBounce 3s ease-in-out infinite 2s;
      }
      @keyframes idleBounce {
        0%,
        85%,
        100% {
          transform: translateY(0);
        }
        90% {
          transform: translateY(-6px);
        }
        95% {
          transform: translateY(-3px);
        }
      }
      .btn-primary::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.28),
          transparent
        );
        transform: translateX(-100%);
      }
      .btn-primary:hover::before {
        transform: translateX(100%);
        transition: transform 0.5s ease;
      }
      .btn-primary:hover {
        background: var(--green2);
        transform: translateY(-4px) scale(1.03);
        box-shadow: 0 14px 32px rgba(0, 212, 140, 0.5);
        animation: none;
      }
      .btn-primary:active {
        transform: scale(0.97);
      }
      .btn-primary i {
        transition: transform 0.3s;
      }
      .btn-primary:hover i {
        transform: translateX(5px) rotate(-8deg);
      }

      /* Ripple */
      .ripple-host {
        overflow: hidden;
      }
      .ripple-circle {
        position: absolute;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.38);
        transform: scale(0);
        animation: rippleOut 0.6s linear forwards;
        pointer-events: none;
      }
      @keyframes rippleOut {
        to {
          transform: scale(4);
          opacity: 0;
        }
      }

      .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);
      }

      /* ===================== STATS ===================== */
      .stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        max-width: 1000px;
        margin: 0 auto;
      }
      .stat-box {
        background: var(--white);
        border: 1.5px solid var(--border);
        border-radius: 16px;
        padding: 32px 20px;
        text-align: center;
        transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
        position: relative;
        overflow: hidden;
      }
      .stat-box::before {
        content: "";
        position: absolute;
        bottom: 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;
      }
      .stat-box:hover::before {
        transform: scaleX(1);
      }
      .stat-box:hover {
        border-color: var(--green);
        transform: translateY(-6px);
        box-shadow: 0 16px 40px rgba(0, 212, 140, 0.14);
      }
      .stat-num {
        font-family: "Syne", sans-serif;
        font-size: 2.4rem;
        font-weight: 800;
        color: var(--navy);
        line-height: 1;
        margin-bottom: 8px;
      }
      .stat-num span {
        color: var(--green);
      }
      .stat-label {
        color: var(--muted);
        font-size: 0.85rem;
      }

      /* ===================== FEATURE CARDS ===================== */
      .feature-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
      }
      .feat-card {
        background: var(--white);
        border: 1.5px solid var(--border);
        border-radius: 12px;
        padding: 22px;
        display: flex;
        gap: 16px;
        align-items: flex-start;
        transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
        position: relative;
        overflow: hidden;
      }
      .feat-card::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          135deg,
          rgba(0, 212, 140, 0.05) 0%,
          transparent 60%
        );
        opacity: 0;
        transition: opacity 0.3s;
      }
      .feat-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: -80%;
        width: 50%;
        height: 100%;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.5),
          transparent
        );
        transform: skewX(-20deg);
        transition: left 0.6s ease;
      }
      .feat-card:hover::before {
        left: 140%;
      }
      .feat-card:hover {
        border-color: var(--green);
        box-shadow: 0 10px 32px rgba(0, 212, 140, 0.14);
        transform: translateY(-5px);
      }
      .feat-card:hover::after {
        opacity: 1;
      }
      .feat-icon-wrap {
        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.35s cubic-bezier(0.34, 1.56, 0.64, 1);
      }
      .feat-card:hover .feat-icon-wrap {
        background: var(--green);
        color: var(--navy);
        transform: scale(1.12) rotate(-8deg);
      }
      .feat-card h4 {
        font-size: 0.92rem;
        color: var(--navy);
        margin-bottom: 4px;
        font-family: "Syne", sans-serif;
      }
      .feat-card p {
        color: var(--muted);
        font-size: 0.85rem;
        line-height: 1.6;
        margin: 0;
      }

      /* ===================== CTA BANNER ===================== */
      .cta-banner {
        background: linear-gradient(135deg, var(--green) 0%, #00b878 100%);
        padding: 80px 24px;
        text-align: center;
        position: relative;
        overflow: hidden;
      }
      .cta-banner::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-banner h2 {
        font-size: clamp(1.9rem, 3.5vw, 2.6rem);
        color: var(--navy);
        margin-bottom: 12px;
        position: relative;
        z-index: 1;
        font-family: "Syne", sans-serif;
      }
      .cta-banner 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;
      }

      /* ===================== 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);
        }
      }
      .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;
        }
      }

      /* ===================== 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;
      }
      @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);
        }
      }

      /* ===================== TIMELINE (story) ===================== */
      .timeline {
        position: relative;
        max-width: 740px;
        margin: 40px auto 0;
        padding-left: 32px;
      }
      .timeline::before {
        content: "";
        position: absolute;
        left: 10px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: linear-gradient(
          180deg,
          var(--green),
          rgba(0, 212, 140, 0.15)
        );
      }
      .tl-item {
        position: relative;
        margin-bottom: 36px;
        padding-left: 28px;
      }
      .tl-dot {
        position: absolute;
        left: -32px;
        top: 4px;
        width: 22px;
        height: 22px;
        border-radius: 50%;
        background: var(--green);
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 0 0 4px rgba(0, 212, 140, 0.15);
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        font-size: 0.65rem;
        color: var(--navy);
        font-weight: 900;
      }
      .tl-item:hover .tl-dot {
        transform: scale(1.3);
        box-shadow: 0 0 0 8px rgba(0, 212, 140, 0.12);
      }
      .tl-year {
        font-size: 0.75rem;
        font-weight: 700;
        color: var(--green);
        letter-spacing: 0.5px;
        margin-bottom: 4px;
        text-transform: uppercase;
      }
      .tl-item h4 {
        font-size: 1rem;
        color: var(--navy);
        margin-bottom: 5px;
        font-family: "Syne", sans-serif;
      }
      .tl-item p {
        font-size: 0.9rem;
        color: var(--muted);
        line-height: 1.7;
        margin: 0;
      }

      /* ===================== RESPONSIVE ===================== */
      @media (max-width: 960px) {
        .content-layout {
          grid-template-columns: 1fr;
        }
        .quote-widget {
          position: static;
        }
        .stats-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .footer-grid {
          grid-template-columns: 1fr 1fr;
          gap: 36px;
        }
      }
      
      /* ===================== 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: #fff;
        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: 0;
      }
      footer ul li {
        margin-bottom: 10px;
      }
      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: #fff;
        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);
      }

@media (max-width: 600px) {
        .stats-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .footer-grid {
          grid-template-columns: 1fr;
        }
        #cursor-glow {
          display: none;
        }
      }