 
      *,
      *::before,
      *::after {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      :root {
        --bg: #080d16;
        --bg-alt: #0d1420;
        --bg-dark: #050811;
        --surface: #111a28;
        --border: #243047;
        --border-light: #1b2638;
        --text-dark: #f5f7fb;
        --text: #c2cada;
        --text-muted: #7f8ba3;
        --green: #38d39f;
        --green-bg: #12352f;
        --green-dark: #23b989;
        --blue: #315efb;
        --blue-dark: #2449c8;
        --blue-bg: #17264b;
        --navy: #07101d;
        --red: #ef4056;
        --amber: #f5c451;
      }

      body {
        font-family:
          "Inter",
          -apple-system,
          BlinkMacSystemFont,
          sans-serif;
        background: var(--bg);
        color: var(--text-dark);
        line-height: 1.65;
        overflow-x: hidden;
      }

      /* ===== NAV ===== */
      nav {
        position: sticky;
        top: 0;
        z-index: 100;
        background: rgba(7, 16, 29, 0.94);
        backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--border);
      }

      .nav-inner {
        max-width: 1160px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 64px;
        padding: 0 24px;
      }

      .logo {
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
      }

      .logo-mark {
        width: 34px;
        height: 34px;
        background: var(--navy);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        font-size: 0.85rem;
        color: "#f7f9fcfff";
      }

      .logo-name {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--navy);
      }

      .logo-name span {
        font-weight: 400;
        color: var(--text-muted);
      }

      @media (max-width: 600px) {
        .logo-name {
          display: none;
        }
      }

      .nav-links {
        display: flex;
        align-items: center;
        gap: 28px;
      }
      .nav-links a {
        color: var(--text);
        text-decoration: none;
        font-size: 0.85rem;
        font-weight: 500;
        transition: color 0.2s;
      }
      .nav-links a:hover {
        color: var(--navy);
      }

      .nav-cta {
        background: var(--blue);
        color: #f7f9fc;
        padding: 9px 22px;
        border-radius: 8px;
        font-size: 0.82rem;
        font-weight: 600;
        text-decoration: none;
        transition: background 0.2s;
      }
      .nav-cta:hover {
        background: var(--blue-dark);
      }

      .nav-flag {
        font-size: 1.2rem;
        line-height: 1;
      }

      /* ===== HERO ===== */
      .hero {
        background: var(--bg-alt);
        border-bottom: 1px solid var(--border);
        padding: 64px 24px 72px;
      }

      .hero-inner {
        max-width: 1160px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 56px;
        align-items: center;
      }

      .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--blue-bg);
        border: 1px solid rgba(10, 190, 107, 0.2);
        padding: 6px 14px;
        border-radius: 100px;
        font-size: 0.74rem;
        font-weight: 600;
        color: var(--white);
        margin-bottom: 20px;
      }

      .hero-text h1 {
        font-size: 3.2rem;
        line-height: 1.1;
        font-weight: 800;
        color: var(--navy);
        margin-bottom: 18px;
        letter-spacing: -0.5px;
      }

      .hero-text h1 .blue {
        color: var(--blue);
      }

      .hero-text {
        font-size: 1.3rem;
        color: var(--text);
        margin-bottom: 32px;
        max-width: 500px;
        line-height: 1.75;
      }

      .lead {
        margin-bottom: 32px;
        font-size: 1.3rem;
      }

      .hero-cta-row {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 32px;
      }

      .btn-hero {
        background: var(--blue);
        color: #f7f9fc;
        padding: 14px 32px;
        border-radius: 10px;
        font-size: 0.92rem;
        font-weight: 700;
        border: none;
        cursor: pointer;
        text-decoration: none;
        transition: background 0.2s;
      }

      .btn-hero:hover {
        background: var(--green-dark);
      }

      .hero-note {
        font-size: 0.8rem;
        color: var(--text-muted);
      }

      .hero-note strong {
        color: var(--text);
      }

      /* ===== FORM ===== */
      .form-card {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 32px;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
      }

      .form-card h2 {
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 4px;
        color: var(--navy);
      }

      .form-card .subtitle {
        color: var(--text-muted);
        font-size: 0.88rem;
        margin-bottom: 22px;
      }

      .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
      }
      .form-group {
        margin-bottom: 14px;
      }

      .form-group label {
        display: block;
        font-size: 0.75rem;
        color: var(--text-muted);
        margin-bottom: 5px;
        font-weight: 600;
      }

      .form-group input {
        width: 100%;
        padding: 12px 14px;
        background: #ffffff;
        border: 1px solid #cbd5e1;
        border-radius: 8px;
        color: #111827;
        font-family: "Inter", sans-serif;
        font-size: 0.9rem;
        transition:
          border-color 0.2s,
          box-shadow 0.2s;
        outline: none;
      }

      .form-group input::placeholder {
        color: var(--text-muted);
      }
      .form-group input:focus {
        border-color: var(--green);
      }

      .phone-wrapper {
        display: flex;
        border: 1px solid var(--border);
        border-radius: 8px;
        overflow: hidden;
        background: #ffffff;
        transition: border-color 0.2s;
      }
      .phone-wrapper:focus-within {
        border-color: var(--green);
      }
      .phone-prefix {
        padding: 0 2px 0 4px;
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--navy);
        background: #ffffff;
        border: none;
        border-right: 1px solid var(--border);
        outline: none;
        cursor: pointer;
        font-family: "Inter", sans-serif;
        -webkit-appearance: none;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%238490a5'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 6px center;
        padding-right: 18px;
      }
      .phone-wrapper input {
        border: none !important;
        background: transparent !important;
        border-radius: 0 !important;
      }

      .btn-primary {
        width: 100%;
        padding: 13px;
        background: var(--blue);
        color: #f7f9fc;
        font-family: "Inter", sans-serif;
        font-size: 0.9rem;
        font-weight: 700;
        border: none;
        border-radius: 10px;
        cursor: pointer;
        transition: background 0.2s;
        margin-top: 4px;
      }

      .btn-primary:hover {
        background: var(--green-dark);
      }

      .form-footer {
        display: flex;
        justify-content: center;
        gap: 16px;
        margin-top: 14px;
      }

      .form-footer span {
        font-size: 0.7rem;
        color: var(--text-muted);
      }

      /* ===== PROFIT BANNER ===== */
      .profit-banner {
        background: var(--navy);
        color: #f7f9fc;
        padding: 20px 24px;
        overflow: hidden;
      }

      .profit-track {
        display: flex;
        gap: 12px;
        animation: scrollProfit 40s linear infinite;
        width: max-content;
      }

      @keyframes scrollProfit {
        0% {
          transform: translateX(0);
        }
        100% {
          transform: translateX(-50%);
        }
      }

      .profit-chip {
        display: flex;
        align-items: center;
        gap: 10px;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 8px 16px;
        border-radius: 100px;
        white-space: nowrap;
        font-size: 0.82rem;
      }

      .profit-chip .p-avatar {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        overflow: hidden;
      }

      .profit-chip .p-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .profit-chip .p-name {
        font-weight: 600;
        color: rgba(255, 255, 255, 0.85);
      }
      .profit-chip .p-city {
        color: rgba(255, 255, 255, 0.4);
      }
      .profit-chip .p-amount {
        color: var(--green);
        font-weight: 700;
      }

      /* ===== SECTION SHARED ===== */
      .section {
        max-width: 1160px;
        margin: 0 auto;
        padding: 88px 24px;
      }

      .section-label {
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        color: var(--blue);
        margin-bottom: 10px;
      }

      .section-heading {
        font-size: 2.4rem;
        font-weight: 800;
        color: var(--navy);
        line-height: 1.15;
        margin-bottom: 14px;
        letter-spacing: -0.3px;
      }

      .section-desc {
        color: var(--text);
        font-size: 1rem;
        max-width: 560px;
        line-height: 1.75;
      }

      .section-header {
        margin-bottom: 52px;
      }
      .section-header.center {
        text-align: center;
      }
      .section-header.center .section-desc {
        margin: 0 auto;
      }

      /* ===== USER PROFITS GRID ===== */
      .profits-section {
        background: var(--bg-alt);
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
      }

      .profits-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
      }

      .profit-card {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 14px;
        padding: 24px;
        transition: box-shadow 0.3s;
      }

      .profit-card:hover {
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
      }

      .profit-card-top {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 16px;
      }

      .pc-avatar {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        overflow: hidden;
      }

      .pc-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .pc-name {
        font-weight: 700;
        font-size: 0.95rem;
        color: var(--navy);
      }
      .pc-loc {
        font-size: 0.78rem;
        color: var(--text-muted);
        display: flex;
        align-items: center;
        gap: 4px;
      }

      .profit-card-amount {
        font-size: 2rem;
        font-weight: 800;
        color: var(--green);
        margin-bottom: 4px;
      }

      .profit-card-detail {
        font-size: 0.82rem;
        color: var(--text-muted);
        margin-bottom: 16px;
      }

      .profit-card-quote {
        font-size: 0.88rem;
        color: var(--text);
        line-height: 1.65;
        padding-top: 14px;
        border-top: 1px solid var(--border-light);
        font-style: italic;
      }

      /* ===== STATS STRIP ===== */
      .stats-strip {
        background: var(--navy);
        padding: 52px 24px;
      }

      .stats-inner {
        max-width: 1160px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
        text-align: center;
      }

      .stat-num {
        font-size: 2.6rem;
        font-weight: 800;
        color: var(--blue);
        line-height: 1;
        margin-bottom: 6px;
      }

      .stat-label {
        font-size: 0.82rem;
        color: rgba(255, 255, 255, 0.5);
      }

      /* ===== STEPS ===== */
      .steps-section {
        background: var(--bg-alt);
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
      }

      .steps-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
      }

      .step-card {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 14px;
        padding: 28px 24px;
        text-align: center;
        transition: box-shadow 0.3s;
      }

      .step-card:hover {
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
      }

      .step-icon {
        width: 56px;
        height: 56px;
        margin: 0 auto 16px;
        background: var(--green-bg);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
      }

      .step-num-label {
        font-size: 0.65rem;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--blue);
        margin-bottom: 8px;
      }

      .step-card h3 {
        font-size: 1.05rem;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 8px;
      }

      .step-card p {
        font-size: 0.85rem;
        color: var(--text-muted);
        line-height: 1.65;
      }

      /* ===== MARKETS SPLIT ===== */
      .split {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 56px;
        align-items: center;
      }

      .split-img {
        border-radius: 14px;
        overflow: hidden;
        aspect-ratio: 4/3;
      }

      .split-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .feature-list {
        margin-top: 28px;
        display: flex;
        flex-direction: column;
        gap: 18px;
      }

      .feat-row {
        display: flex;
        gap: 14px;
        align-items: flex-start;
      }

      .feat-check {
        width: 24px;
        height: 24px;
        min-width: 24px;
        background: var(--green-bg);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--green);
        font-size: 0.7rem;
        font-weight: 800;
        margin-top: 2px;
      }

      .feat-row h4 {
        font-size: 0.92rem;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 2px;
      }
      .feat-row p {
        font-size: 0.85rem;
        color: var(--text-muted);
        line-height: 1.6;
      }

      /* ===== TRUST BAR ===== */
      .trust-bar {
        background: var(--bg-alt);
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        padding: 32px 24px;
      }

      .trust-inner {
        max-width: 1160px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        gap: 40px;
        flex-wrap: wrap;
        align-items: center;
      }

      .trust-item {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.85rem;
        color: var(--text);
        font-weight: 500;
      }

      .trust-item .ti-icon {
        width: 36px;
        height: 36px;
        background: var(--green-bg);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
      }

      /* ===== REVIEWS ===== */
      .reviews-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
      }

      .review-card {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 14px;
        padding: 24px;
        display: flex;
        flex-direction: column;
        transition: box-shadow 0.3s;
      }

      .review-card:hover {
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
      }

      .review-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 14px;
      }

      .review-stars {
        color: var(--amber);
        font-size: 0.82rem;
        letter-spacing: 1px;
      }

      .review-tag {
        background: var(--green-bg);
        color: var(--green-dark);
        font-size: 0.7rem;
        font-weight: 700;
        padding: 3px 10px;
        border-radius: 6px;
      }

      .review-card blockquote {
        font-size: 0.9rem;
        color: var(--text);
        line-height: 1.7;
        flex: 1;
        margin-bottom: 18px;
      }

      .reviewer {
        display: flex;
        align-items: center;
        gap: 10px;
        padding-top: 14px;
        border-top: 1px solid var(--border-light);
      }

      .rv-avatar {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        overflow: hidden;
      }
      .rv-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      .rv-name {
        font-weight: 700;
        font-size: 1.5rem;
        color: var(--white);
      }
      .rv-loc {
        font-size: 0.9rem;
        color: var(--text-muted);
      }

      /* ===== FEATURED REVIEW WITH SIDE IMAGE ===== */
      .review-card.featured-review {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 320px 1fr;
        padding: 0;
        overflow: hidden;
      }

      .featured-review-image {
        width: 100%;
        height: 100%;
      }

      .featured-review-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }

      .featured-review-content {
        padding: 32px;
        display: flex;
        flex-direction: column;
        justify-content: center;
      }

      @media (max-width: 768px) {
        .review-card.featured-review {
          grid-template-columns: 1fr;
        }

        .featured-review-image {
          height: 280px;
        }

        .featured-review-content {
          padding: 24px;
        }
      }

      /* Reverse the order for image-right */
      .review-card.featured-review.image-right {
        direction: rtl; /* Puts image on right */
      }

      /* Reset text direction for content so it's readable */
      .review-card.featured-review.image-right .featured-review-content {
        direction: ltr;
      }

      @media (max-width: 768px) {
        /* On mobile, reset direction so image is on top again */
        .review-card.featured-review.image-right {
          direction: ltr;
        }
      }

      /* ===== CTA BOTTOM ===== */
      .cta-section {
        background: var(--navy);
        padding: 88px 24px;
      }

      .cta-inner {
        max-width: 1160px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 64px;
        align-items: center;
      }

      .cta-text h2 {
        font-size: 2.4rem;
        font-weight: 800;
        color: #f7f9fc;
        line-height: 1.15;
        margin-bottom: 14px;
        letter-spacing: -0.3px;
      }

      .cta-text p {
        color: rgba(255, 255, 255, 0.6);
        font-size: 1rem;
        margin-bottom: 24px;
        line-height: 1.75;
        max-width: 460px;
      }

      .cta-pills {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
      }

      .cta-pill {
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 7px 14px;
        border-radius: 8px;
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.7);
        display: flex;
        align-items: center;
        gap: 6px;
      }

      .cta-pill .cp-i {
        color: var(--green);
      }

      .cta-section .form-card {
        background: var(--surface);
        border: 1px solid var(--border);
      }

      .cta-section .form-card h2 {
        color: var(--navy);
      }

      /* ===== FOOTER ===== */
      footer {
        background: var(--bg-alt);
        border-top: 1px solid var(--border);
      }

      .footer-inner {
        max-width: 1160px;
        margin: 0 auto;
        padding: 52px 24px 36px;
      }

      .footer-top {
        display: grid;
        grid-template-columns: 1.4fr 1fr 1fr 1fr;
        gap: 40px;
        margin-bottom: 40px;
      }

      .footer-brand p {
        color: var(--text-muted);
        font-size: 0.85rem;
        margin-top: 14px;
        line-height: 1.65;
      }

      .footer-col h4 {
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--text-muted);
        margin-bottom: 14px;
      }

      .footer-col a {
        display: block;
        color: var(--text);
        text-decoration: none;
        font-size: 0.88rem;
        padding: 3px 0;
        transition: color 0.2s;
      }

      .footer-col a:hover {
        color: var(--green);
      }

      .footer-bottom {
        border-top: 1px solid var(--border);
        padding-top: 24px;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 24px;
        flex-wrap: wrap;
      }

      .footer-bottom p {
        color: var(--text-muted);
        font-size: 0.72rem;
        line-height: 1.65;
      }

      .footer-disclaimer {
        max-width: 560px;
        font-size: 0.68rem;
        color: var(--text-muted);
        line-height: 1.65;
      }

      /* ===== SUCCESS ===== */
      .form-success {
        display: none;
        text-align: center;
        padding: 44px 20px;
      }

      .form-success .sc {
        width: 52px;
        height: 52px;
        background: var(--green-bg);
        border: 2px solid var(--green);
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
        color: var(--green);
        margin-bottom: 14px;
      }

      .form-success h3 {
        font-size: 1.25rem;
        color: var(--navy);
        margin-bottom: 6px;
      }
      .form-success p {
        color: var(--text-muted);
        font-size: 0.9rem;
      }

      /* ===== DARK FRENCH THEME ===== */
      body {
        background:
          radial-gradient(
            circle at 12% 8%,
            rgba(49, 94, 251, 0.1),
            transparent 28%
          ),
          radial-gradient(
            circle at 88% 18%,
            rgba(239, 64, 86, 0.07),
            transparent 24%
          ),
          var(--bg);
      }

      .hero {
        background:
          linear-gradient(135deg, rgba(49, 94, 251, 0.08), transparent 45%),
          var(--bg-alt);
      }

      .hero-badge {
        box-shadow: 0 0 0 1px rgba(49, 94, 251, 0.06);
      }

      .nav-cta,
      .btn-hero,
      .btn-primary {
        background: linear-gradient(135deg, #315efb, #2348cf);
        box-shadow: 0 8px 24px rgba(49, 94, 251, 0.22);
      }

      .nav-cta:hover,
      .btn-hero:hover,
      .btn-primary:hover {
        background: linear-gradient(135deg, #3f6cff, #315efb);
      }

      .profit-banner,
      .stats-strip,
      .cta-section {
        background:
          radial-gradient(
            circle at 15% 20%,
            rgba(49, 94, 251, 0.12),
            transparent 30%
          ),
          radial-gradient(
            circle at 85% 80%,
            rgba(239, 64, 86, 0.08),
            transparent 26%
          ),
          #050a13;
      }

      .profit-chip,
      .cta-pill {
        background: rgba(255, 255, 255, 0.045);
        border-color: rgba(255, 255, 255, 0.09);
      }

      .form-card,
      .profit-card,
      .step-card,
      .review-card {
        box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
      }

      .form-group input,
      .phone-wrapper,
      .phone-prefix {
        color-scheme: dark;
      }

      .section-label,
      .step-num-label {
        color: #5f83ff;
      }

      .section-heading,
      .step-card h3,
      .feat-row h4,
      .pc-name,
      .form-card h2,
      .form-success h3 {
        color: #f5f7fb;
      }

      .trust-item {
        color: #cbd3e1;
      }

      footer {
        background: #090f19;
      }

      .footer-col a {
        color: #b9c3d4;
      }

      .footer-col a:hover {
        color: #5f83ff;
      }

      /* ===== RESPONSIVE ===== */
      @media (max-width: 1024px) {
        .hero-inner,
        .split,
        .cta-inner {
          grid-template-columns: 1fr;
          gap: 40px;
        }
        .hero-text h1 {
          font-size: 2.6rem;
        }
        .section-heading {
          font-size: 2rem;
        }
        .steps-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .footer-top {
          grid-template-columns: 1fr 1fr;
        }

        .nav-links {
          display: none;
        }
      }

      @media (max-width: 768px) {
        .hero-text {
          text-align: center;
          min-width: 100%;
        }

        .profits-grid,
        .reviews-grid {
          grid-template-columns: 1fr;
        }
        .steps-grid {
          grid-template-columns: 1fr;
        }
        .stats-inner {
          grid-template-columns: repeat(2, 1fr);
        }
        .form-row {
          grid-template-columns: 1fr;
        }
        .hero-text h1 {
          font-size: 2.1rem;
        }
        .footer-top {
          grid-template-columns: 1fr;
        }
        .trust-inner {
          gap: 20px;
        }
      }

      /* ===== PRIVACY MODAL ===== */
      .modal-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 9999;
        justify-content: center;
        align-items: center;
        padding: 24px;
      }

      .modal-overlay.active {
        display: flex;
      }

      .modal-box {
        background: #f7f9fc;
        border-radius: 14px;
        max-width: 720px;
        width: 100%;
        max-height: 85vh;
        overflow-y: auto;
        padding: 40px;
        position: relative;
        color: #f5f7fb;
      }

      .modal-close {
        position: absolute;
        top: 16px;
        right: 16px;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 1px solid #243047;
        background: #0d1420;
        font-size: 1.1rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #c2cada;
        transition: background 0.2s;
      }

      .modal-close:hover {
        background: #243047;
      }

      .modal-box h1 {
        font-size: 1.6rem;
        font-weight: 800;
        margin-bottom: 24px;
        color: #f5f7fb;
      }
      .modal-box h2 {
        font-size: 1.15rem;
        font-weight: 700;
        color: #315efb;
        margin-bottom: 8px;
        margin-top: 28px;
        font-family: "Inter", sans-serif;
      }
      .modal-box p {
        font-size: 0.9rem;
        color: #c2cada;
        line-height: 1.7;
        margin-bottom: 8px;
      }
      .modal-box ul {
        list-style: disc;
        padding-left: 20px;
        margin: 8px 0 16px;
      }
      .modal-box li {
        font-size: 0.88rem;
        color: #c2cada;
        line-height: 1.65;
        margin-bottom: 4px;
      }
      .modal-box a {
        color: #315efb;
        text-decoration: underline;
      }
      .modal-box .highlight {
        font-weight: 600;
        color: #ef4056;
      }
      .modal-box .note {
        font-size: 0.78rem;
        color: #7f8ba3;
        font-style: italic;
      }
      .modal-box .modal-footer {
        margin-top: 28px;
        text-align: center;
        font-size: 0.78rem;
        color: #7f8ba3;
      }

      /* Mobile CTA Bar */
      .mobile-nav {
        display: none;
      }

      .hero-rating-container {
        margin-top: 32px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
      }

      @media (max-width: 1024px) {
        .mobile-nav-cta {
          background: #315efb;
          color: #f7f9fc;
          text-decoration: none;
          padding: 10px 18px;
          border-radius: 8px;
          font-size: 0.85rem;
          font-weight: 700;
          white-space: nowrap;
        }
        .mobile-nav {
          position: sticky;
          top: 64px; /* below existing navbar */
          z-index: 99;

          display: flex;
          justify-content: space-between;
          align-items: center;

          padding: 10px 16px;
          background: transparent;
          border-bottom: 1px solid var(--border);
        }
      }

      @media (max-width: 768px) {
        .hero-rating-container {
          align-items: center;
        }

        .spots-left {
          font-size: 0.85rem;
          font-weight: 600;
          color: var(--red);
          padding-right: 12px;
        }
      }

      body {
        background-color: #080d16 !important;
        background-image:
          radial-gradient(
            circle at 15% 20%,
            rgba(49, 94, 251, 0.1) 0,
            rgba(49, 94, 251, 0) 28%
          ),
          radial-gradient(
            circle at 85% 12%,
            rgba(239, 64, 86, 0.07) 0,
            rgba(239, 64, 86, 0) 24%
          ),
          radial-gradient(
            circle at 50% 90%,
            rgba(56, 211, 159, 0.045) 0,
            rgba(56, 211, 159, 0) 30%
          ),
          repeating-linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.018) 0px,
            rgba(255, 255, 255, 0.018) 1px,
            transparent 1px,
            transparent 5px
          ) !important;
        background-attachment: fixed;
      }

      section,
      header,
      footer {
        position: relative;
      }

      /* Subtle grain overlay */
      body::before {
        content: "";
        position: fixed;
        inset: 0;
        pointer-events: none;
        z-index: 9999;
        opacity: 0.16;
        background-image: radial-gradient(
          rgba(255, 255, 255, 0.22) 0.55px,
          transparent 0.65px
        );
        background-size: 4px 4px;
        mix-blend-mode: soft-light;
      }

      /* Keep content readable above the texture */
      main,
      header,
      footer,
      nav {
        position: relative;
        z-index: 1;
      }

      /* French-inspired blue/red glow accents */
      .hero,
      .hero-section {
        background-image:
          radial-gradient(
            ellipse at 20% 15%,
            rgba(49, 94, 251, 0.12),
            transparent 42%
          ),
          radial-gradient(
            ellipse at 82% 25%,
            rgba(239, 64, 86, 0.08),
            transparent 38%
          );
      }

      /* Improve readability of the main earnings headline */
      .hero h1,
      .hero-section h1,
      h1 {
        color: #ffffff !important;
        text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
      }

      .hero h1 *,
      .hero-section h1 * {
        color: #ffffff !important;
      }
