    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --black:      #0a0e0a;
      --charcoal:   #141914;
      --card:       #1c221c;
      --card2:      #202620;
      --border:     #2a382a;
      --green:      #2d5a27;
      --green-mid:  #3d7a35;
      --green-lt:   #7dc470;
      --green-pale: #a8d9a0;
      --green-glow: rgba(125,196,112,0.15);
      --green-glow2:rgba(125,196,112,0.06);
      --amber:      #f59e0b;
      --text:       #e2e8e2;
      --muted:      #7a8e7a;
      --muted2:     #5a6e5a;
      --white:      #ffffff;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--black);
      color: var(--text);
      font-family: 'DM Sans', sans-serif;
      font-size: 16px;
      line-height: 1.6;
      overflow-x: hidden;
      cursor: none;
    }

    /* ─── CUSTOM CURSOR ─── */
    #cursor {
      position: fixed;
      width: 10px; height: 10px;
      background: var(--green-lt);
      border-radius: 50%;
      pointer-events: none !important;
      z-index: 9999;
      transform: translate(-50%, -50%);
      transition: transform 0.1s, width 0.3s, height 0.3s, opacity 0.3s;
      mix-blend-mode: screen;
    }
    #cursor-ring {
      position: fixed;
      width: 36px; height: 36px;
      border: 1.5px solid rgba(125,196,112,0.5);
      border-radius: 50%;
      pointer-events: none !important;
      z-index: 9998;
      transform: translate(-50%, -50%);
      transition: transform 0.18s ease, width 0.3s, height 0.3s, border-color 0.3s;
    }
    body:has(a:hover) #cursor,
    body:has(button:hover) #cursor { width: 18px; height: 18px; }
    body:has(a:hover) #cursor-ring,
    body:has(button:hover) #cursor-ring {
      width: 52px; height: 52px;
      border-color: rgba(125,196,112,0.8);
    }

    /* ─── PARTICLE CANVAS ─── */
    #particle-canvas {
      position: fixed;
      inset: 0;
      pointer-events: none !important;
      z-index: 0;
      opacity: 0.4;
    }

    /* ─── FLOATING ORBS ─── */
    .orb {
      position: fixed;
      border-radius: 50%;
      filter: blur(90px);
      pointer-events: none !important;
      z-index: 0;
      animation: orbFloat linear infinite;
    }
    .orb-1 {
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(45,90,39,0.25) 0%, transparent 70%);
      top: -200px; right: -100px;
      animation-duration: 18s;
    }
    .orb-2 {
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(125,196,112,0.1) 0%, transparent 70%);
      bottom: 10%; left: -150px;
      animation-duration: 24s;
      animation-delay: -8s;
    }
    .orb-3 {
      width: 300px; height: 300px;
      background: radial-gradient(circle, rgba(45,90,39,0.15) 0%, transparent 70%);
      top: 50%; left: 40%;
      animation-duration: 30s;
      animation-delay: -15s;
    }
    @keyframes orbFloat {
      0%,100% { transform: translate(0,0) scale(1); }
      33%      { transform: translate(30px,-40px) scale(1.05); }
      66%      { transform: translate(-20px,20px) scale(0.97); }
    }

    /* ─── GRAIN OVERLAY ─── */
    body::after {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
      pointer-events: none !important;
      z-index: 1;
      opacity: 0.4;
    }

    /* ─── NAV ─── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 10000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 48px;
      background: rgba(10,14,10,0);
      backdrop-filter: blur(0px);
      border-bottom: 1px solid transparent;
      transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
    }
    nav.scrolled {
      background: rgba(10,14,10,0.92);
      backdrop-filter: blur(16px);
      border-color: var(--border);
    }
    .nav-logo {
      display: flex;
      align-items: center;
      text-decoration: none;
      flex-shrink: 0;
      opacity: 0;
      transform: translateY(-8px);
      animation: navIn 0.7s ease 0.2s forwards;
    }
    nav img {
      height: 30px; width: auto;
      display: block;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      opacity: 0;
      transform: translateY(-8px);
      animation: navIn 0.7s ease 0.35s forwards;
    }
    @keyframes navIn {
      to { opacity: 1; transform: translateY(0); }
    }
    .nav-links a.nav-text {
      color: var(--muted);
      text-decoration: none;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.5px;
      transition: color 0.2s;
      white-space: nowrap;
    }
    .nav-links a.nav-text:hover { color: var(--green-lt); }
    .nav-cta {
      color: #fff !important;
      text-decoration: none;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      background: var(--green);
      padding: 10px 22px;
      border-radius: 6px;
      white-space: nowrap;
      transition: background 0.2s, box-shadow 0.2s, transform 0.15s !important;
      box-shadow: 0 0 0 rgba(125,196,112,0);
    }
    .nav-cta:hover {
      background: var(--green-mid) !important;
      box-shadow: 0 0 24px rgba(125,196,112,0.3) !important;
      transform: translateY(-1px);
    }

    /* ─── TICKER ─── */
    .ticker-wrap {
      margin-top: 62px;
      background: linear-gradient(90deg, var(--green) 0%, #3d7a35 50%, var(--green) 100%);
      overflow: hidden;
      padding: 9px 0;
      position: relative;
      z-index: 2;
      border-top: 1px solid rgba(125,196,112,0.3);
      border-bottom: 1px solid rgba(125,196,112,0.3);
    }
    .ticker-track {
      display: flex;
      white-space: nowrap;
      animation: ticker 32s linear infinite;
    }
    .ticker-track span {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.9);
      padding: 0 40px;
    }
    .ticker-track span::after {
      content: '◆';
      margin-left: 40px;
      color: rgba(125,196,112,0.7);
      font-size: 8px;
    }
    @keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

    /* ─── LAYOUT ─── */
    section { position: relative; z-index: 2; }
    .container { max-width: 1120px; margin: 0 auto; padding: 0 36px; }

    /* ─── SCROLL REVEAL ─── */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
    }
    .reveal.visible { opacity: 1; transform: none; }
    .reveal-delay-1 { transition-delay: 0.08s; }
    .reveal-delay-2 { transition-delay: 0.16s; }
    .reveal-delay-3 { transition-delay: 0.24s; }
    .reveal-delay-4 { transition-delay: 0.32s; }
    .reveal-delay-5 { transition-delay: 0.40s; }
    .reveal-delay-6 { transition-delay: 0.48s; }

    /* ─── HERO ─── */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 120px 0 80px;
      position: relative;
      overflow: hidden;
    }

    /* Animated grid lines */
    .hero-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(45,90,39,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(45,90,39,0.08) 1px, transparent 1px);
      background-size: 80px 80px;
      mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
      animation: gridPulse 4s ease-in-out infinite;
    }
    @keyframes gridPulse {
      0%,100% { opacity: 0.5; }
      50%      { opacity: 1; }
    }

    .hero-inner {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 72px;
      align-items: center;
      position: relative;
      z-index: 2;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--green-lt);
      background: rgba(125,196,112,0.08);
      border: 1px solid rgba(125,196,112,0.2);
      padding: 7px 16px;
      border-radius: 100px;
      margin-bottom: 28px;
      position: relative;
      overflow: hidden;
      opacity: 0;
      animation: fadeUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.4s forwards;
    }
    .hero-eyebrow::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent, rgba(125,196,112,0.15), transparent);
      transform: translateX(-100%);
      animation: shimmer 3s ease 1.5s infinite;
    }
    @keyframes shimmer { to { transform: translateX(100%); } }

    .hero h1 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(60px, 7vw, 96px);
      line-height: 0.93;
      letter-spacing: 1px;
      color: var(--white);
      margin-bottom: 28px;
      opacity: 0;
      animation: fadeUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.55s forwards;
    }
    .hero h1 .line { display: block; overflow: hidden; }
    .hero h1 em {
      font-style: normal;
      color: var(--green-lt);
      position: relative;
      display: inline-block;
    }
    /* Underline draw animation */
    .hero h1 em::after {
      content: '';
      position: absolute;
      bottom: 4px; left: 0; right: 0;
      height: 3px;
      background: var(--green-lt);
      transform: scaleX(0);
      transform-origin: left;
      animation: drawLine 0.6s ease 1.4s forwards;
    }
    @keyframes drawLine { to { transform: scaleX(1); } }

    .hero-sub {
      font-size: 17px;
      line-height: 1.8;
      color: var(--muted);
      margin-bottom: 40px;
      max-width: 500px;
      opacity: 0;
      animation: fadeUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.7s forwards;
    }
    .hero-sub strong { color: var(--text); font-weight: 600; }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
      opacity: 0;
      animation: fadeUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.85s forwards;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--green);
      color: #fff;
      font-size: 15px;
      font-weight: 700;
      padding: 16px 34px;
      border-radius: 8px;
      text-decoration: none;
      letter-spacing: 0.2px;
      position: relative;
      overflow: hidden;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      box-shadow: 0 4px 24px rgba(45,90,39,0.4);
    }
    .btn-primary::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
      opacity: 0;
      transition: opacity 0.2s;
    }
    .btn-primary:hover {
      background: var(--green-mid);
      transform: translateY(-3px);
      box-shadow: 0 8px 40px rgba(45,90,39,0.5);
    }
    .btn-primary:hover::before { opacity: 1; }

    /* Pulsing ring on CTA */
    .btn-primary-wrap {
      position: relative;
      display: inline-block;
    }
    .btn-primary-wrap::before,
    .btn-primary-wrap::after {
      content: '';
      position: absolute;
      inset: -4px;
      border-radius: 12px;
      border: 1px solid rgba(125,196,112,0.4);
      animation: ctaPulse 2.5s ease-out infinite;
      pointer-events: none !important;
    }
    .btn-primary-wrap::after { animation-delay: 1.25s; }
    @keyframes ctaPulse {
      0%   { transform: scale(1); opacity: 0.7; }
      100% { transform: scale(1.15); opacity: 0; }
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--muted);
      font-size: 14px;
      font-weight: 500;
      text-decoration: none;
      transition: color 0.2s;
      border-bottom: 1px solid transparent;
      padding-bottom: 2px;
    }
    .btn-ghost:hover { color: var(--green-lt); border-color: var(--green-lt); }

    /* Hero right stat box */
    .hero-stat-box {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 40px;
      position: relative;
      overflow: hidden;
      opacity: 0;
      animation: fadeUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.65s forwards;
      transition: box-shadow 0.3s, border-color 0.3s;
    }
    .hero-stat-box:hover {
      border-color: rgba(125,196,112,0.4);
      box-shadow: 0 0 60px rgba(45,90,39,0.2);
    }
    .hero-stat-box::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--green-lt), var(--green), transparent);
      animation: borderFlow 3s linear infinite;
    }
    @keyframes borderFlow {
      0%   { background-position: -200% 0; }
      100% { background-position: 200% 0; }
    }

    .hero-stat-box::after {
      content: '';
      position: absolute;
      top: -100px; right: -100px;
      width: 300px; height: 300px;
      background: radial-gradient(circle, rgba(125,196,112,0.06) 0%, transparent 60%);
      animation: orbFloat 8s ease-in-out infinite;
    }

    .big-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 100px;
      line-height: 1;
      color: var(--green-lt);
      letter-spacing: 3px;
      text-shadow: 0 0 40px rgba(125,196,112,0.3);
      position: relative;
      z-index: 1;
    }
    .big-num sub {
      font-size: 48px;
      vertical-align: baseline;
      color: var(--green);
    }

    .big-label {
      font-size: 17px;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 10px;
      position: relative; z-index: 1;
    }
    .big-desc {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.75;
      position: relative; z-index: 1;
    }

    .stat-divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--border), transparent);
      margin: 24px 0;
    }

    .mini-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
      position: relative; z-index: 1;
    }
    .mini-stat {}
    .mini-stat .num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 36px;
      line-height: 1;
      color: var(--white);
    }
    .mini-stat .num em {
      font-style: normal;
      color: var(--green-lt);
      font-size: 24px;
    }
    .mini-stat .lbl {
      font-size: 11px;
      color: var(--muted);
      margin-top: 3px;
      line-height: 1.4;
    }

    /* ─── SECTION LABELS ─── */
    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--green-lt);
      margin-bottom: 14px;
    }
    .section-label::before {
      content: '';
      width: 20px; height: 1px;
      background: var(--green-lt);
    }

    .section-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(38px, 4.5vw, 62px);
      color: var(--white);
      line-height: 1.0;
      margin-bottom: 18px;
    }

    .section-sub {
      font-size: 16px;
      color: var(--muted);
      line-height: 1.8;
      max-width: 580px;
      margin-bottom: 64px;
    }

    /* ─── STATS SECTION ─── */
    .stats-section {
      padding: 120px 0;
      background:
        radial-gradient(ellipse 100% 60% at 50% 0%, rgba(45,90,39,0.1) 0%, transparent 60%),
        var(--charcoal);
      position: relative;
      overflow: hidden;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-bottom: 20px;
    }

    .stat-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 32px 28px;
      position: relative;
      overflow: hidden;
      transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
      cursor: default;
    }
    .stat-card::before {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--green), var(--green-lt));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
    }
    .stat-card:hover {
      border-color: rgba(125,196,112,0.35);
      transform: translateY(-6px);
      box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 40px rgba(45,90,39,0.15);
    }
    .stat-card:hover::before { transform: scaleX(1); }

    /* Glow on hover */
    .stat-card::after {
      content: '';
      position: absolute;
      top: -50%; left: -50%;
      width: 200%; height: 200%;
      background: radial-gradient(circle at center, rgba(125,196,112,0.04) 0%, transparent 60%);
      opacity: 0;
      transition: opacity 0.4s;
    }
    .stat-card:hover::after { opacity: 1; }

    .stat-icon {
      font-size: 26px;
      margin-bottom: 18px;
      display: block;
    }
    .stat-value {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 54px;
      color: var(--green-lt);
      line-height: 1;
      letter-spacing: 1px;
      text-shadow: 0 0 30px rgba(125,196,112,0.25);
    }
    .stat-value sup { font-size: 30px; vertical-align: super; }
    .stat-name {
      font-size: 14px;
      font-weight: 700;
      color: var(--white);
      margin: 10px 0 8px;
    }
    .stat-desc {
      font-size: 12.5px;
      color: var(--muted);
      line-height: 1.7;
    }
    .stat-source {
      font-size: 10px;
      color: var(--muted2);
      letter-spacing: 0.5px;
      margin-top: 12px;
      font-style: italic;
    }

    /* Highlight bar */
    .highlight-bar {
      background: var(--card2);
      border: 1px solid var(--border);
      border-left: 4px solid var(--green-lt);
      border-radius: 14px;
      padding: 30px 36px;
      margin-top: 20px;
      display: flex;
      align-items: center;
      gap: 32px;
      flex-wrap: wrap;
      position: relative;
      overflow: hidden;
      transition: border-color 0.3s, box-shadow 0.3s;
    }
    .highlight-bar:hover {
      border-color: var(--green-lt);
      box-shadow: 0 0 40px rgba(125,196,112,0.08);
    }
    .highlight-bar::before {
      content: '';
      position: absolute;
      top: 0; right: 0;
      width: 200px; height: 200px;
      background: radial-gradient(circle, rgba(125,196,112,0.06) 0%, transparent 60%);
    }
    .highlight-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 56px;
      color: var(--green-lt);
      line-height: 1;
      flex-shrink: 0;
      text-shadow: 0 0 40px rgba(125,196,112,0.3);
    }

    /* ─── HOW IT WORKS ─── */
    .how-section {
      padding: 120px 0;
      background: var(--black);
      position: relative;
      overflow: hidden;
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      position: relative;
      margin-top: 64px;
    }

    /* Animated connecting line */
    .steps-line {
      position: absolute;
      top: 35px;
      left: calc(16.67% + 24px);
      right: calc(16.67% + 24px);
      height: 1px;
      background: var(--border);
      overflow: hidden;
    }
    .steps-line::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, var(--green), var(--green-lt), var(--green));
      animation: lineFlow 2s ease-in-out infinite;
    }
    @keyframes lineFlow {
      0%   { transform: translateX(-100%); }
      100% { transform: translateX(100%); }
    }

    .step {
      text-align: center;
      padding: 0 36px;
      position: relative;
    }
    .step-num {
      width: 70px; height: 70px;
      background: var(--green);
      border: 2px solid rgba(125,196,112,0.4);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 30px;
      color: #fff;
      margin: 0 auto 28px;
      position: relative;
      z-index: 1;
      transition: box-shadow 0.3s, transform 0.3s, background 0.3s;
    }
    .step:hover .step-num {
      box-shadow: 0 0 40px rgba(125,196,112,0.4);
      transform: scale(1.1);
      background: var(--green-mid);
    }
    .step-icon { font-size: 20px; display: block; margin-bottom: 12px; }
    .step h3 {
      font-size: 17px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 12px;
    }
    .step p { font-size: 13.5px; color: var(--muted); line-height: 1.75; }

    /* ─── BENEFITS ─── */
    .benefits-section {
      padding: 120px 0;
      background: var(--charcoal);
    }

    .benefits-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-top: 64px;
    }

    .benefit-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 30px;
      display: flex;
      gap: 20px;
      align-items: flex-start;
      transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
      position: relative;
      overflow: hidden;
    }
    .benefit-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(125,196,112,0.03) 0%, transparent 60%);
      opacity: 0;
      transition: opacity 0.3s;
    }
    .benefit-card:hover {
      border-color: rgba(125,196,112,0.3);
      transform: translateY(-4px);
      box-shadow: 0 16px 48px rgba(0,0,0,0.2);
    }
    .benefit-card:hover::before { opacity: 1; }

    .benefit-icon {
      width: 48px; height: 48px;
      background: rgba(125,196,112,0.1);
      border: 1px solid rgba(125,196,112,0.2);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      flex-shrink: 0;
      transition: background 0.3s, border-color 0.3s, transform 0.3s;
    }
    .benefit-card:hover .benefit-icon {
      background: rgba(125,196,112,0.18);
      border-color: rgba(125,196,112,0.4);
      transform: scale(1.1) rotate(3deg);
    }
    .benefit-card h3 {
      font-size: 15px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 8px;
    }
    .benefit-card p { font-size: 13.5px; color: var(--muted); line-height: 1.75; }

    /* ─── ZERO RISK BANNER ─── */
    .risk-banner {
      padding: 80px 0;
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, #1a3d14 0%, #0f2a0a 50%, #1a3d14 100%);
    }
    .risk-banner::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 80% at 0% 50%, rgba(125,196,112,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 100% 50%, rgba(45,90,39,0.12) 0%, transparent 60%);
    }
    /* Animated border top */
    .risk-banner::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent 0%, var(--green-lt) 50%, transparent 100%);
      animation: bannerBorder 4s ease-in-out infinite;
    }
    @keyframes bannerBorder {
      0%,100% { opacity: 0.3; }
      50% { opacity: 1; }
    }

    .risk-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 48px;
      position: relative;
      z-index: 1;
    }

    .risk-inner h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 48px;
      color: #fff;
      line-height: 1.05;
      margin-bottom: 12px;
    }
    .risk-inner > div > p {
      font-size: 16px;
      color: rgba(255,255,255,0.65);
      line-height: 1.75;
      max-width: 480px;
    }

    .risk-items {
      display: flex;
      flex-direction: column;
      gap: 12px;
      flex-shrink: 0;
    }
    .risk-item {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 15px;
      font-weight: 500;
      color: rgba(255,255,255,0.9);
      opacity: 0;
      transform: translateX(20px);
      transition: opacity 0.5s, transform 0.5s;
    }
    .risk-item.visible { opacity: 1; transform: none; }
    .risk-item:nth-child(1) { transition-delay: 0.05s; }
    .risk-item:nth-child(2) { transition-delay: 0.12s; }
    .risk-item:nth-child(3) { transition-delay: 0.19s; }
    .risk-item:nth-child(4) { transition-delay: 0.26s; }
    .risk-item:nth-child(5) { transition-delay: 0.33s; }

    .risk-check {
      width: 24px; height: 24px;
      background: rgba(125,196,112,0.2);
      border: 1px solid rgba(125,196,112,0.4);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      flex-shrink: 0;
      color: var(--green-lt);
    }

    /* ─── BOOKING SECTION ─── */
    .booking-section {
      padding: 120px 0;
      background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(45,90,39,0.12) 0%, transparent 60%),
        var(--black);
    }

    .booking-header { text-align: center; margin-bottom: 56px; }
    .booking-header .section-label { justify-content: center; }
    .booking-header .section-label::before { display: none; }
    .booking-header .section-label::after {
      content: '';
      width: 20px; height: 1px;
      background: var(--green-lt);
    }
    .booking-header .section-sub { margin: 0 auto; text-align: center; }

    .booking-note {
      text-align: center;
      margin-top: 24px;
      font-size: 14px;
      color: var(--muted);
    }
    .booking-note a {
      color: var(--green-lt);
      font-weight: 600;
      text-decoration: none;
      transition: color 0.2s;
    }
    .booking-note a:hover { color: var(--green-pale); }

    /* Booking CTA Box */
    .booking-cta-box {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 24px;
      overflow: hidden;
      position: relative;
      transition: box-shadow 0.3s, border-color 0.3s;
    }
    .booking-cta-box:hover {
      border-color: rgba(125,196,112,0.3);
      box-shadow: 0 0 80px rgba(45,90,39,0.15);
    }
    .booking-cta-box::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--green), var(--green-lt), var(--green), transparent);
      z-index: 1;
    }
    .booking-cta-box::after {
      content: '';
      position: absolute;
      top: -120px; right: -120px;
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(125,196,112,0.06) 0%, transparent 60%);
      pointer-events: none;
    }
    .booking-cta-inner {
      padding: 72px 48px;
      text-align: center;
      position: relative;
      z-index: 1;
      background:
        radial-gradient(ellipse 80% 60% at 50% 100%, rgba(45,90,39,0.12) 0%, transparent 60%),
        transparent;
    }
    .booking-cta-icon {
      font-size: 48px;
      margin-bottom: 24px;
      display: block;
      animation: floatIcon 3s ease-in-out infinite;
    }
    @keyframes floatIcon {
      0%,100% { transform: translateY(0); }
      50%      { transform: translateY(-8px); }
    }
    .booking-cta-inner h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(32px, 4vw, 52px);
      color: var(--white);
      line-height: 1.05;
      margin-bottom: 16px;
    }
    .booking-cta-inner > p {
      font-size: 16px;
      color: var(--muted);
      line-height: 1.8;
      max-width: 520px;
      margin: 0 auto 40px;
    }
    .booking-cta-actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 24px;
      flex-wrap: wrap;
      margin-bottom: 24px;
    }
    .btn-large {
      font-size: 17px !important;
      padding: 20px 44px !important;
      border-radius: 10px !important;
    }
    .booking-reassure {
      font-size: 12px;
      color: var(--muted2);
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    /* ─── FOOTER ─── */
    footer {
      background: var(--charcoal);
      border-top: 1px solid var(--border);
      padding: 40px 0;
    }
    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
    }
    footer img { height: 26px; width: auto; opacity: 0.8; }
    .footer-links {
      display: flex;
      gap: 32px;
      align-items: center;
    }
    .footer-links a {
      color: var(--muted);
      text-decoration: none;
      font-size: 13px;
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--green-lt); }
    footer .copy {
      font-size: 12px;
      color: var(--muted2);
      text-align: center;
      margin-top: 24px;
      padding-top: 24px;
      border-top: 1px solid var(--border);
    }

    /* ─── KEYFRAMES ─── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 960px) {
      nav { padding: 12px 20px; }
      nav img { height: 26px; }
      .nav-links a.nav-text { display: none; }
      .nav-cta { font-size: 11px; padding: 9px 14px; letter-spacing: 0.3px; }
      .hero-inner { grid-template-columns: 1fr; gap: 48px; }
      .hero { min-height: auto; padding: 100px 0 64px; }
      .stats-grid { grid-template-columns: 1fr 1fr; }
      .steps { grid-template-columns: 1fr; gap: 40px; }
      .steps-line { display: none; }
      .benefits-grid { grid-template-columns: 1fr; }
      .risk-inner { flex-direction: column; }
      .footer-inner { flex-direction: column; align-items: flex-start; }
      .footer-links { flex-wrap: wrap; gap: 16px; }
    }
    @media (max-width: 480px) {
      nav { padding: 10px 16px; }
      nav img { height: 22px; }
      .nav-cta { font-size: 10px; padding: 8px 12px; }
      .stats-grid { grid-template-columns: 1fr; }
      .mini-stats { grid-template-columns: 1fr 1fr; }
      .container { padding: 0 20px; }
      body { cursor: auto; }
      #cursor, #cursor-ring { display: none; }
      .hero h1 { font-size: clamp(44px, 12vw, 72px); }
      .booking-cta-inner { padding: 48px 24px; }
    }
