

      :root {
         --g: #2a9d38;
         --g-deep: #1a6b25;
         --g-soft: rgba(42, 157, 56, 0.08);
         --ink: #0d1f15;
         --ink2: #2d4a36;
         --ink3: #5a7a64;
         --ink4: #8faf98;
         --mint2: #d1f5d7;
      }
      * { box-sizing: border-box; }
      body {

        color: var(--ink);
        -webkit-font-smoothing: antialiased;
        overflow-x: hidden;
      }
      @keyframes fadeUp {
         from { opacity: 0; transform: translateY(32px); }
         to { opacity: 1; transform: translateY(0); }
      }
      @keyframes pulse {
         0%, 100% { opacity: 1; }
         50% { opacity: 0.45; }
      }
      @keyframes breathe {
         0%, 100% { box-shadow: 0 0 0 1px rgba(42,157,56,.2), 0 8px 32px rgba(42,157,56,.15), 0 32px 72px rgba(42,157,56,.08); }
         50% { box-shadow: 0 0 0 1px rgba(42,157,56,.38), 0 14px 48px rgba(42,157,56,.3), 0 48px 96px rgba(42,157,56,.15); }
      }
      @keyframes orb1 {
         0%, 100% { transform: translate(0,0) scale(1); }
         33% { transform: translate(28px,-18px) scale(1.07); }
         66% { transform: translate(-18px,14px) scale(0.96); }
      }
      @keyframes orb2 {
         0%, 100% { transform: translate(0,0) scale(1); }
         33% { transform: translate(-22px,18px) scale(1.05); }
         66% { transform: translate(18px,-12px) scale(0.97); }
      }
      .fade-up { animation: fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) both; }
      .delay-1 { animation-delay: 0.1s; }
      .delay-2 { animation-delay: 0.2s; }
      .delay-3 { animation-delay: 0.3s; }
      .delay-4 { animation-delay: 0.4s; }
      .shimmer-text {
         background: linear-gradient(90deg, var(--g-deep) 0%, var(--g) 40%, #38be48 70%, var(--g-deep) 100%);
         background-size: 800px 100%;
         -webkit-background-clip: text;
         -webkit-text-fill-color: transparent;
         background-clip: text;
      }
      .shimmer-text-footer { color: #38be48; }
      .live-dot {
         width: 7px; height: 7px;
         border-radius: 50%;
         animation: pulse 2s ease-in-out infinite;
         display: inline-block;
      }
      /* ── PRICING CARDS ── */
      .pricing-card {
         background: #fff;
         border-radius: 20px;
         border: 1.5px solid rgba(0,0,0,.07);
         transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s ease;
         height: 100%;
      }
      .pricing-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,.08); }
      .pricing-card.featured {
         border: 2px solid rgba(42,157,56,.4);
         background: linear-gradient(160deg, #fff 0%, #f2faf3 100%);
         animation: breathe 4s ease-in-out infinite;
         z-index: 2;
      }
      .pricing-card.featured:hover { transform: translateY(-8px); }
      .tier-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
      .tier-bar-seg { width: 16px; height: 4px; border-radius: 99px; display: inline-block; }
      .plan-badge {
         position: absolute; top: -12px; left: 50%;
         transform: translateX(-50%);
         border-radius: 99px; padding: 5px 16px;
         font-size: 10px; font-weight: 800;
         letter-spacing: .07em; white-space: nowrap; color: #fff;
      }
      .btn-solid-g {
         display: block; width: 100%; padding: 12px 16px;
         border: none; border-radius: 12px;
         font-size: 13px; font-weight: 800; cursor: pointer;
         background: linear-gradient(140deg, #2a9d38 0%, #1a7a26 100%);
         color: #fff; box-shadow: 0 4px 18px rgba(42,157,56,.38);
         transition: transform .2s, box-shadow .2s;
         text-align: center;
      }
      .btn-solid-g:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(42,157,56,.5); }
      .btn-ghost-g {
         display: block; width: 100%; padding: 12px 16px;
         border-radius: 12px; font-size: 13px; font-weight: 700; cursor: pointer;
         background: transparent; border: 1.5px solid rgba(13,31,21,.15);
         color: var(--ink2); transition: all .2s; text-align: center;
      }
      .btn-ghost-g:hover { border-color: var(--g); background: var(--g-soft); color: var(--g-deep); transform: translateY(-2px); }
      .stat-card { border-right: 1px solid rgba(0,0,0,.06); }
      .stat-card:last-child { border-right: none; }
      .icon-wrap { display: flex; justify-content: center; margin-bottom: 6px; }
      .specialty-card {
         background: #fff; border-radius: 16px;
         border: 1.5px solid rgba(0,0,0,.07);
         box-shadow: 0 2px 14px rgba(0,0,0,.04);
         transition: transform .3s cubic-bezier(0.22,1,0.36,1);
      }
      .specialty-card:hover { transform: translateY(-4px); }
      .addon-tag {
         display: inline-flex; align-items: center; gap: 6px;
         background: rgba(0,0,0,.03); border: 1px solid rgba(0,0,0,.07);
         border-radius: 99px; padding: 6px 14px;
         font-size: 12px; font-weight: 600; color: var(--ink2);
      }
      /* ── FAQ ── */
      .faq-item {
         background: #fff; border-radius: 14px;
         border: 1.5px solid rgba(0,0,0,.07);
         cursor: pointer; transition: all .25s; overflow: hidden;
      }
      .faq-item.open { border-color: rgba(42,157,56,.3); box-shadow: 0 4px 20px rgba(42,157,56,.1); }
      .faq-toggle {
         width: 24px; height: 24px; border-radius: 50%;
         background: rgba(0,0,0,.06); display: flex;
         align-items: center; justify-content: center;
         font-size: 16px; color: var(--ink4); transition: all .2s; flex-shrink: 0;
      }
      .faq-item.open .faq-toggle { background: var(--g); color: #fff; }
      .faq-answer {
         display: none; font-size: 14px; color: var(--ink3);
         margin-top: 12px; line-height: 1.65;
      }
      .faq-item.open .faq-answer { display: block; }
      /* ── HOW IT WORKS ── */
      .step-card {
         background: #fff; border: 1px solid rgba(42,157,56,.13);
         border-radius: 18px; padding: 28px 26px 26px;
         box-shadow: 0 2px 20px rgba(42,157,56,.08), 0 1px 4px rgba(0,0,0,.04);
         transition: box-shadow .3s, transform .3s; position: relative; height: 100%;
      }
      .step-card:hover { box-shadow: 0 8px 40px rgba(42,157,56,.15), 0 2px 12px rgba(0,0,0,.06); transform: translateY(-3px); }
      .step-card.featured { border-color: var(--g); box-shadow: 0 4px 30px rgba(42,157,56,.18); margin-top: 10px; }
      .badge-guarantee {
         position: absolute; top: -14px; left: 50%;
         transform: translateX(-50%);
         background: var(--g); color: #fff;
         font-size: 9px; font-weight: 800; letter-spacing: .12em;
         text-transform: uppercase; padding: 5px 14px;
         border-radius: 999px; white-space: nowrap;
      }
      .icon-box {
         width: 44px; height: 44px; border-radius: 12px;
         display: flex; align-items: center; justify-content: center;
      }
      .icon-box svg { width: 22px; height: 22px; }
      .card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
      .card-step-num { font-size: 36px; font-weight: 900; color: rgba(42,157,56,.13); line-height: 1; }
      .card-title { font-size: 16px; font-weight: 800; color: var(--ink); margin-bottom: 8px; }
      .featured .card-title { color: var(--g); }
      .card-desc { font-size: 14px; color: var(--ink3); line-height: 1.65; margin: 0 0 18px; }
      /* ── LEGAL CARDS ── */
      .legal-card {
         background: #fff; border-radius: 14px;
         border: 1.5px solid rgba(0,0,0,.07);
         box-shadow: 0 2px 10px rgba(0,0,0,.03);
      }
      /* ── CTA ── */
      .cta-dark {
         background: linear-gradient(145deg, #0d1f15 0%, #0f2a19 40%, #0b1f14 100%);
         border-radius: 28px; position: relative; overflow: hidden;
         box-shadow: 0 32px 80px rgba(13,31,21,.35);
      }
      .cta-orb { position: absolute; border-radius: 50%; pointer-events: none; }
      .cta-grid {
         position: absolute; inset: 0;
         background-image: linear-gradient(rgba(42,157,56,.06) 1px, transparent 1px),
            linear-gradient(90deg, rgba(42,157,56,.06) 1px, transparent 1px);
         background-size: 48px 48px; opacity: .5; pointer-events: none;
      }
      .btn-cta-main {
         padding: 14px 32px; border-radius: 14px;
         font-size: 14px; font-weight: 800; border: none; cursor: pointer;
         background: linear-gradient(135deg, #2a9d38, #1a7a26);
         color: #fff; box-shadow: 0 8px 32px rgba(42,157,56,.45); transition: all .2s;
      }
      .btn-cta-main:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(42,157,56,.6); }
      /* ── REVEAL ── */
      .reveal { opacity: 0; transform: translateY(36px); transition: opacity .7s ease, transform .7s cubic-bezier(0.22,1,0.36,1); }
      .reveal.in { opacity: 1; transform: translateY(0); }
      /* ── PROGRESS ── */
      .progress-wrap { margin: 32px 0 40px; }
      .progress-label { display: flex; justify-content: space-between; font-size: 12px; color: var(--ink3); margin-bottom: 8px; }
      .progress-track { height: 5px; background: rgba(42,157,56,.12); border-radius: 99px; overflow: hidden; }
      .progress-fill { height: 100%; width: 0%; background: linear-gradient(90deg, #2A9D38, #5ec26a); border-radius: 99px; transition: width 1.4s cubic-bezier(.16,1,.3,1); }
      /* ── STAT NUMBERS ── */
      .rec-badge {
         display: flex; align-items: center; gap: 10px;
         border-radius: 12px; padding: 10px 18px; transition: all .3s;
      }
      /* feature list */
      .feature-list { list-style: none; padding: 0; margin: 0; }
      .feature-list li {
         display: flex; align-items: flex-start; gap: 7px;
         font-size: 13px; color: var(--ink2); margin-bottom: 8px; line-height: 1.45;
      }
      .feature-list li .dot-icon {
         width: 5px; height: 5px; border-radius: 50%;
         flex-shrink: 0; display: inline-block; margin-top: 5px;
      }
      .feature-list-section { margin-bottom: 12px; }
      .feature-list-section-title {
         font-size: 9px; font-weight: 800; letter-spacing: .1em;
         text-transform: uppercase; color: var(--ink4); margin-bottom: 6px;
      }
      /* ── VOLUME SLIDER ── */
      input[type="range"] {
         border-radius: 99px; background: var(--mint2); outline: none; cursor: pointer;
      }
      input[type="range"]::-webkit-slider-thumb {
         -webkit-appearance: none; width: 22px; height: 22px;
         border-radius: 50%; background: #fff; border: 3px solid var(--g);
         box-shadow: 0 0 0 4px rgba(42,157,56,.12), 0 4px 12px rgba(42,157,56,.3);
         cursor: pointer; transition: transform .18s, box-shadow .18s;
      }
      input[type="range"]::-webkit-slider-thumb:hover {
         transform: scale(1.22);
         box-shadow: 0 0 0 7px rgba(42,157,56,.12), 0 4px 20px rgba(42,157,56,.42);
      }
      /* ── SLIDER TICK MARKS ── */
      .slider-ticks {
         display: flex; justify-content: space-between;
         margin-top: 10px; padding: 0 2px;
      }
      .slider-tick {
         display: flex; flex-direction: column; align-items: center; gap: 4px;
         cursor: pointer; transition: opacity .2s;
      }
      .slider-tick:hover { opacity: .75; }
      .slider-tick-bar {
         width: 2px; height: 8px; border-radius: 99px;
         background: rgba(0,0,0,.12);
         transition: background .3s, height .2s;
      }
      .slider-tick.active .slider-tick-bar { height: 12px; }
      .slider-tick-label {
         font-size: 10px; font-weight: 700; color: var(--ink4);
         white-space: nowrap; transition: color .3s;
      }
      .slider-tick.active .slider-tick-label { color: var(--ink2); }
      /* UAE flag accent */
      .uae-flag { display: inline-flex; align-items: center; gap: 5px; }
      .flag-stripe-red { width: 6px; height: 18px; background: #EF3340; border-radius: 2px; }
      .flag-stripe-white { width: 6px; height: 6px; background: #fff; border-radius: 1px; }
      .flag-stripe-black { width: 6px; height: 6px; background: #000; border-radius: 1px; }
      .flag-stripe-green { width: 6px; height: 6px; background: #00732F; border-radius: 1px; }
