      :root {
        /* Palette Baya */
        --green-bright: #03bb87; /* vert vif, accent principal */
        --green-deep: #063831; /* vert très profond, texte/fond sombre */
        --green-mid: #0c7054; /* vert moyen */
        --green-soft: #c0ecce; /* vert pastel doux */
        --green-cream: #dbffdb; /* vert crème, fond clair */

        --ink: #063831;
        --paper: #f6fff5;
        --white: #ffffff;
        --line: rgba(6, 56, 49, 0.1);
        --muted: rgba(6, 56, 49, 0.65);

        --font: "Poppins", system-ui, -apple-system, sans-serif;
        --font-ar: "Tajawal", "Poppins", system-ui, sans-serif;

        --max: 1280px;
        --radius: 18px;
        --radius-lg: 28px;
        --radius-xl: 36px;
      }

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

      html {
        scroll-behavior: smooth;
        -webkit-font-smoothing: antialiased;
      }

      body {
        font-family: var(--font);
        background: var(--paper);
        color: var(--ink);
        line-height: 1.6;
        font-size: 16px;
        overflow-x: hidden;
        font-weight: 400;
      }

      body[dir="rtl"] {
        font-family: var(--font-ar);
      }

      img {
        max-width: 100%;
        display: block;
      }
      a {
        color: inherit;
        text-decoration: none;
      }

      h1,
      h2,
      h3,
      h4,
      h5 {
        font-family: var(--font);
        font-weight: 700;
        letter-spacing: -0.02em;
        line-height: 1.1;
      }

      /* Decorative dot pattern background */
      .dotgrid {
        background-image: radial-gradient(
          circle,
          rgba(6, 56, 49, 0.08) 1px,
          transparent 1px
        );
        background-size: 24px 24px;
      }

      /* ===== NAV ===== */
      .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        padding: 14px 32px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: rgba(246, 255, 245, 0.85);
        backdrop-filter: blur(16px) saturate(180%);
        -webkit-backdrop-filter: blur(16px) saturate(180%);
        border-bottom: 1px solid transparent;
        transition: all 0.3s ease;
      }

      .nav.scrolled {
        background: rgba(246, 255, 245, 0.96);
        border-bottom-color: var(--line);
      }

      .logo {
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 0;
        margin-left: 22px;
        width: 80px;
        height: 80px;
        overflow: hidden;
        flex-shrink: 0;
      }

      .logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transform: scale(1.2);
        transform-origin: center center;
      }

      .nav-links {
        display: flex;
        align-items: center;
        gap: 32px;
        list-style: none;
      }

      .nav-links a {
        font-size: 14px;
        font-weight: 500;
        color: var(--ink);
        position: relative;
        padding: 4px 0;
        transition: color 0.2s;
      }

      .nav-links a::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--green-bright);
        transition: width 0.3s ease;
        border-radius: 2px;
      }

      .nav-links a:hover {
        color: var(--green-bright);
      }
      .nav-links a:hover::after {
        width: 100%;
      }

      .nav-right {
        display: flex;
        align-items: center;
        gap: 14px;
      }

      .lang-switch {
        display: flex;
        background: var(--green-cream);
        border-radius: 999px;
        padding: 4px;
        font-size: 12px;
        font-weight: 600;
      }

      .lang-btn {
        border: none;
        background: transparent;
        padding: 6px 12px;
        border-radius: 999px;
        cursor: pointer;
        color: var(--green-deep);
        font-family: inherit;
        font-weight: 600;
        font-size: 12px;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        transition: all 0.2s;
      }

      .lang-btn.active {
        background: var(--green-deep);
        color: var(--green-cream);
      }

      .btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        border: none;
        cursor: pointer;
        font-family: inherit;
        font-weight: 600;
        border-radius: 999px;
        transition:
          transform 0.2s,
          background 0.2s,
          box-shadow 0.2s;
        white-space: nowrap;
      }

      .btn-primary {
        background: var(--green-bright);
        color: var(--white);
        padding: 12px 22px;
        font-size: 14px;
        box-shadow: 0 6px 20px -6px rgba(3, 187, 135, 0.5);
      }

      .btn-primary:hover {
        background: var(--green-mid);
        transform: translateY(-2px);
        box-shadow: 0 12px 30px -8px rgba(3, 187, 135, 0.6);
      }

      .btn-dark {
        background: var(--green-deep);
        color: var(--green-cream);
        padding: 12px 22px;
        font-size: 14px;
      }

      .btn-dark:hover {
        background: var(--green-mid);
        transform: translateY(-2px);
      }

      .menu-toggle {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        color: var(--green-deep);
      }

      /* ===== HERO ===== */
      .hero {
        min-height: 100vh;
        padding: 120px 32px 80px;
        position: relative;
        overflow: hidden;
        background: var(--paper);
      }

      .hero::before {
        content: "";
        position: absolute;
        top: -200px;
        right: -200px;
        width: 700px;
        height: 700px;
        border-radius: 50%;
        background: radial-gradient(circle, var(--green-soft), transparent 60%);
        opacity: 0.6;
      }

      .hero::after {
        content: "";
        position: absolute;
        bottom: -150px;
        left: -150px;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: radial-gradient(
          circle,
          var(--green-cream),
          transparent 60%
        );
        opacity: 0.7;
      }

      .hero-inner {
        max-width: var(--max);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.1fr 1fr;
        gap: 60px;
        align-items: center;
        position: relative;
        z-index: 2;
      }

      .hero-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 8px 16px 8px 10px;
        background: var(--white);
        border: 1px solid var(--green-soft);
        border-radius: 999px;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        margin-bottom: 28px;
        color: var(--green-deep);
        box-shadow: 0 2px 8px rgba(6, 56, 49, 0.04);
      }

      .hero-eyebrow .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--green-bright);
        animation: pulse 2s infinite;
        position: relative;
      }

      .hero-eyebrow .dot::after {
        content: "";
        position: absolute;
        inset: -4px;
        border-radius: 50%;
        border: 2px solid var(--green-bright);
        animation: ripple 2s infinite;
      }

      @keyframes pulse {
        0%,
        100% {
          opacity: 1;
          transform: scale(1);
        }
        50% {
          opacity: 0.7;
          transform: scale(0.92);
        }
      }

      @keyframes ripple {
        0% {
          transform: scale(0.8);
          opacity: 1;
        }
        100% {
          transform: scale(2);
          opacity: 0;
        }
      }

      .hero h1 {
        font-size: clamp(40px, 6.2vw, 84px);
        font-weight: 800;
        margin-bottom: 28px;
        color: var(--green-deep);
        letter-spacing: -0.04em;
        line-height: 1.02;
      }

      .hero h1 .accent {
        color: var(--green-bright);
        display: inline-block;
        position: relative;
      }

      .hero h1 .underline {
        display: inline-block;
        position: relative;
      }

      .hero h1 .underline svg {
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 100%;
        height: 14px;
      }

      .hero-lead {
        font-size: clamp(17px, 1.4vw, 20px);
        line-height: 1.55;
        max-width: 540px;
        margin-bottom: 38px;
        color: var(--muted);
        font-weight: 400;
      }

      .hero-lead strong {
        color: var(--green-deep);
        font-weight: 700;
      }

      .hero-actions {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        align-items: center;
        margin-bottom: 36px;
      }

      .btn-store {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        background: var(--green-deep);
        color: var(--green-cream);
        padding: 13px 22px;
        border-radius: 14px;
        font-weight: 500;
        transition:
          transform 0.2s,
          background 0.2s;
      }

      .btn-store:hover {
        background: var(--green-mid);
        transform: translateY(-2px);
      }
      .btn-store svg {
        flex-shrink: 0;
      }
      .btn-store-text {
        line-height: 1.1;
        text-align: left;
      }
      body[dir="rtl"] .btn-store-text {
        text-align: right;
      }
      .btn-store-small {
        font-size: 10px;
        opacity: 0.75;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        font-weight: 500;
      }
      .btn-store-large {
        font-size: 16px;
        font-weight: 700;
        letter-spacing: -0.01em;
      }

      /* trust row */
      .hero-trust {
        display: flex;
        align-items: center;
        gap: 18px;
        flex-wrap: wrap;
        font-size: 13px;
        color: var(--muted);
      }

      .hero-trust .stars {
        color: var(--green-bright);
        letter-spacing: 2px;
        font-size: 14px;
      }

      .hero-trust strong {
        color: var(--green-deep);
        font-weight: 700;
      }

      .hero-trust-sep {
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: var(--green-soft);
      }

      /* HERO VISUAL — phone mockup */
      .hero-visual {
        position: relative;
        height: 640px;
      }

      .phone-frame {
        width: 290px;
        height: 590px;
        background: var(--green-deep);
        border-radius: 44px;
        padding: 12px;
        box-shadow:
          0 50px 100px -20px rgba(6, 56, 49, 0.45),
          0 30px 60px -30px rgba(6, 56, 49, 0.4),
          inset 0 0 0 2px rgba(255, 255, 255, 0.05);
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(-3deg);
        z-index: 2;
      }

      .phone-screen {
        width: 100%;
        height: 100%;
        background: #0a1614;
        border-radius: 33px;
        overflow: hidden;
        position: relative;
      }

      .phone-screenshot {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        display: block;
      }

      /* Floating decorations near phone */
      .float-deco {
        position: absolute;
        pointer-events: none;
        z-index: 3;
        background: var(--white);
        border-radius: 18px;
        box-shadow: 0 14px 40px -10px rgba(6, 56, 49, 0.25);
        padding: 14px 18px;
      }

      .float-1 {
        top: 6%;
        right: 0%;
        transform: rotate(6deg);
        animation: float 6s ease-in-out infinite;
        border: 1px solid var(--green-soft);
      }

      .float-2 {
        bottom: 18%;
        left: -2%;
        transform: rotate(-5deg);
        animation: float 7s ease-in-out infinite reverse;
        background: var(--green-deep);
        color: var(--green-cream);
      }

      .float-3 {
        bottom: 3%;
        right: 4%;
        transform: rotate(4deg);
        animation: float 8s ease-in-out infinite;
        animation-delay: -2s;
        background: var(--green-bright);
        color: var(--white);
      }

      .float-deco .num {
        font-size: 28px;
        font-weight: 800;
        line-height: 1;
        color: var(--green-bright);
        letter-spacing: -0.03em;
      }

      .float-2 .num {
        color: var(--green-bright);
      }
      .float-3 .num {
        color: var(--white);
      }

      .float-deco .lbl {
        font-size: 11px;
        font-weight: 600;
        margin-top: 4px;
        display: block;
        color: var(--green-deep);
      }

      .float-2 .lbl {
        color: var(--green-cream);
      }
      .float-3 .lbl {
        color: rgba(255, 255, 255, 0.95);
      }

      @keyframes float {
        0%,
        100% {
          transform: rotate(var(--rot, 6deg)) translateY(0);
        }
        50% {
          transform: rotate(var(--rot, 6deg)) translateY(-12px);
        }
      }

      .float-1 {
        --rot: 6deg;
      }
      .float-2 {
        --rot: -5deg;
      }
      .float-3 {
        --rot: 4deg;
      }

      /* ===== MARQUEE ===== */
      .marquee {
        background: var(--green-deep);
        color: var(--green-cream);
        padding: 22px 0;
        overflow: hidden;
        position: relative;
        z-index: 2;
      }

      .marquee-track {
        display: flex;
        gap: 50px;
        animation: scroll 45s linear infinite;
        white-space: nowrap;
        width: max-content;
      }

      .marquee-item {
        font-size: 22px;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 50px;
        letter-spacing: -0.01em;
      }

      .marquee-item .star {
        color: var(--green-bright);
        font-size: 18px;
      }

      .marquee-item .it {
        font-style: italic;
        color: var(--green-bright);
        font-weight: 500;
      }

      @keyframes scroll {
        from {
          transform: translateX(0);
        }
        to {
          transform: translateX(-50%);
        }
      }

      body[dir="rtl"] .marquee-track {
        animation-direction: reverse;
      }

      /* ===== SECTIONS commun ===== */
      .section {
        padding: 120px 32px;
        position: relative;
      }
      .section-inner {
        max-width: var(--max);
        margin: 0 auto;
      }

      .section-eyebrow {
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: var(--green-bright);
        margin-bottom: 18px;
        display: inline-flex;
        align-items: center;
        gap: 12px;
      }

      .section-eyebrow::before {
        content: "";
        width: 28px;
        height: 2px;
        background: var(--green-bright);
        border-radius: 2px;
      }

      .section-title {
        font-size: clamp(32px, 4.6vw, 60px);
        margin-bottom: 22px;
        max-width: 900px;
        font-weight: 800;
        letter-spacing: -0.03em;
        line-height: 1.05;
      }

      .section-title .it {
        color: var(--green-bright);
        font-style: italic;
        font-weight: 700;
      }

      .section-lead {
        font-size: 18px;
        max-width: 640px;
        color: var(--muted);
        margin-bottom: 60px;
        font-weight: 400;
      }

      /* ===== STATS / IMPACT ===== */
      .stats {
        background: var(--paper);
      }

      .basket-saved {
        background: var(--green-deep);
        border-radius: var(--radius-xl);
        padding: 60px;
        color: var(--green-cream);
        display: grid;
        grid-template-columns: 1fr 1.5fr;
        gap: 50px;
        align-items: center;
        position: relative;
        overflow: hidden;
        margin-top: 20px;
      }

      .basket-saved::before {
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        background: radial-gradient(
          circle,
          var(--green-bright),
          transparent 70%
        );
        top: -200px;
        right: -150px;
        border-radius: 50%;
        opacity: 0.25;
      }

      .basket-saved::after {
        content: "";
        position: absolute;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, var(--green-mid), transparent 70%);
        bottom: -150px;
        left: -100px;
        border-radius: 50%;
        opacity: 0.4;
      }

      .basket-saved h3 {
        font-size: clamp(28px, 3vw, 42px);
        line-height: 1.05;
        position: relative;
        font-weight: 800;
        letter-spacing: -0.03em;
      }

      .basket-saved h3 .it {
        color: var(--green-bright);
        font-style: italic;
        font-weight: 700;
      }

      .basket-saved-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        position: relative;
      }

      .basket-stat {
        border-left: 2px solid var(--green-bright);
        padding-left: 18px;
      }

      body[dir="rtl"] .basket-stat {
        border-left: none;
        border-right: 2px solid var(--green-bright);
        padding-left: 0;
        padding-right: 18px;
      }

      .basket-stat-num {
        font-size: 40px;
        font-weight: 800;
        color: var(--green-bright);
        line-height: 1;
        margin-bottom: 6px;
        letter-spacing: -0.04em;
      }

      .basket-stat-num .unit {
        font-size: 0.55em;
        font-weight: 600;
        margin-left: 2px;
        opacity: 0.85;
      }

      .basket-stat-lbl {
        font-size: 12px;
        opacity: 0.8;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        font-weight: 500;
      }

      /* ===== HOW IT WORKS ===== */
      .how {
        background: var(--green-cream);
        position: relative;
      }

      .how::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(
          circle,
          rgba(6, 56, 49, 0.06) 1px,
          transparent 1px
        );
        background-size: 28px 28px;
        pointer-events: none;
      }

      .how-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        margin-top: 60px;
        position: relative;
      }

      .step {
        position: relative;
        padding: 40px 32px;
        background: var(--white);
        border-radius: var(--radius-lg);
        border: 1px solid var(--line);
        transition: all 0.4s;
        overflow: hidden;
      }

      .step::before {
        content: attr(data-num);
        position: absolute;
        top: -20px;
        right: -10px;
        font-size: 130px;
        font-weight: 900;
        color: var(--green-cream);
        line-height: 1;
        z-index: 0;
        letter-spacing: -0.05em;
        font-style: italic;
      }

      body[dir="rtl"] .step::before {
        right: auto;
        left: -10px;
      }

      .step:hover {
        transform: translateY(-6px);
        box-shadow: 0 30px 60px -20px rgba(6, 56, 49, 0.18);
        border-color: var(--green-bright);
      }

      .step-icon {
        width: 56px;
        height: 56px;
        border-radius: 16px;
        background: var(--green-bright);
        color: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 22px;
        position: relative;
        z-index: 1;
      }

      .step:nth-child(2) .step-icon {
        background: var(--green-deep);
      }
      .step:nth-child(3) .step-icon {
        background: var(--green-mid);
      }

      .step h3 {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 10px;
        letter-spacing: -0.02em;
        position: relative;
        z-index: 1;
      }

      .step p {
        font-size: 15px;
        color: var(--muted);
        line-height: 1.6;
        position: relative;
        z-index: 1;
      }

      /* ===== WHY BAYA ===== */
      .why {
        background: var(--paper);
      }

      .why-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
      }

      .why-features {
        display: flex;
        flex-direction: column;
        gap: 0;
      }

      .feature {
        display: flex;
        gap: 20px;
        padding: 26px 0;
        border-top: 1px solid var(--line);
        align-items: flex-start;
        transition: transform 0.3s;
      }

      .feature:hover {
        transform: translateX(6px);
      }
      body[dir="rtl"] .feature:hover {
        transform: translateX(-6px);
      }

      .feature:last-child {
        border-bottom: 1px solid var(--line);
      }

      .feature-icon {
        width: 48px;
        height: 48px;
        flex-shrink: 0;
        border-radius: 14px;
        background: var(--green-cream);
        color: var(--green-deep);
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--green-soft);
      }

      .feature:nth-child(2) .feature-icon {
        background: var(--green-bright);
        color: var(--white);
        border-color: var(--green-bright);
      }
      .feature:nth-child(3) .feature-icon {
        background: var(--green-soft);
        border-color: var(--green-mid);
      }
      .feature:nth-child(4) .feature-icon {
        background: var(--green-deep);
        color: var(--green-cream);
        border-color: var(--green-deep);
      }

      .feature h4 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 5px;
        letter-spacing: -0.02em;
      }

      .feature p {
        font-size: 15px;
        color: var(--muted);
        line-height: 1.5;
      }

      .why-visual {
        position: relative;
        aspect-ratio: 4/5;
        border-radius: var(--radius-xl);
        overflow: hidden;
        background:
          radial-gradient(
            circle at 80% 20%,
            var(--green-bright),
            transparent 50%
          ),
          linear-gradient(135deg, var(--green-mid), var(--green-deep));
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 50px;
        color: var(--green-cream);
      }

      .why-visual::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(
          circle,
          rgba(255, 255, 255, 0.08) 1px,
          transparent 1px
        );
        background-size: 24px 24px;
      }

      .why-quote {
        position: relative;
        font-weight: 700;
        font-size: clamp(28px, 3vw, 42px);
        line-height: 1.15;
        text-align: center;
        letter-spacing: -0.03em;
      }

      .why-quote .it {
        color: var(--green-bright);
        font-style: italic;
        font-weight: 600;
      }

      .why-quote::before {
        content: '"';
        display: block;
        font-size: 100px;
        line-height: 0.4;
        margin-bottom: 26px;
        color: var(--green-bright);
        font-weight: 800;
      }

      .why-quote-author {
        display: block;
        margin-top: 28px;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        opacity: 0.8;
      }

      /* ===== WORLD STATS ===== */
      .world {
        background: var(--green-deep);
        color: var(--green-cream);
        position: relative;
        overflow: hidden;
      }

      .world::before {
        content: "";
        position: absolute;
        width: 800px;
        height: 800px;
        background: radial-gradient(
          circle,
          var(--green-bright),
          transparent 70%
        );
        top: -300px;
        left: -200px;
        border-radius: 50%;
        opacity: 0.15;
      }

      .world::after {
        content: "";
        position: absolute;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, var(--green-mid), transparent 70%);
        bottom: -200px;
        right: -200px;
        border-radius: 50%;
        opacity: 0.4;
      }

      .world .section-eyebrow {
        color: var(--green-bright);
      }

      .world .section-lead {
        color: rgba(219, 255, 219, 0.75);
      }

      .world-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        position: relative;
      }

      .world-card {
        padding: 40px 32px;
        border: 1px solid rgba(219, 255, 219, 0.15);
        border-radius: var(--radius-lg);
        background: rgba(219, 255, 219, 0.03);
        transition: all 0.4s;
      }

      .world-card:hover {
        background: rgba(219, 255, 219, 0.07);
        border-color: var(--green-bright);
        transform: translateY(-6px);
      }

      .world-num {
        font-size: clamp(48px, 6vw, 72px);
        font-weight: 800;
        line-height: 1;
        margin-bottom: 18px;
        color: var(--green-bright);
        letter-spacing: -0.04em;
      }

      .world-num .it {
        font-style: italic;
      }

      .world-label {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 12px;
        letter-spacing: -0.01em;
      }

      .world-desc {
        font-size: 14px;
        opacity: 0.78;
        line-height: 1.6;
      }

      /* ===== CTA DOWNLOAD ===== */
      .cta {
        background: var(--paper);
      }

      .cta-card {
        max-width: var(--max);
        margin: 0 auto;
        background:
          radial-gradient(
            circle at 80% 20%,
            var(--green-bright),
            transparent 55%
          ),
          linear-gradient(135deg, var(--green-mid), var(--green-deep));
        border-radius: var(--radius-xl);
        padding: 80px 60px;
        color: var(--green-cream);
        position: relative;
        overflow: hidden;
        display: grid;
        grid-template-columns: 1.4fr 1fr;
        gap: 60px;
        align-items: center;
      }

      .cta-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(
          circle,
          rgba(255, 255, 255, 0.06) 1px,
          transparent 1px
        );
        background-size: 24px 24px;
      }

      .cta-card h2 {
        font-size: clamp(32px, 4.4vw, 54px);
        line-height: 1.05;
        margin-bottom: 22px;
        position: relative;
        letter-spacing: -0.03em;
        font-weight: 800;
      }

      .cta-card h2 .it {
        color: var(--green-bright);
        font-style: italic;
        font-weight: 700;
      }

      .cta-card p {
        font-size: 17px;
        opacity: 0.88;
        margin-bottom: 32px;
        max-width: 480px;
        position: relative;
      }

      .cta-actions {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        position: relative;
      }

      .cta-card .btn-store {
        background: var(--white);
        color: var(--green-deep);
      }

      .cta-card .btn-store:hover {
        background: var(--green-bright);
        color: var(--white);
      }

      .cta-visual {
        position: relative;
        height: 380px;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .basket-illu-wrap {
        position: relative;
        width: 100%;
        max-width: 360px;
        aspect-ratio: 1;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .basket-illu-bg {
        position: absolute;
        inset: 0;
        border-radius: 50%;
        background: radial-gradient(
          circle,
          rgba(3, 187, 135, 0.35),
          transparent 65%
        );
        animation: pulseBg 4s ease-in-out infinite;
      }

      @keyframes pulseBg {
        0%,
        100% {
          transform: scale(1);
          opacity: 0.8;
        }
        50% {
          transform: scale(1.08);
          opacity: 1;
        }
      }

      .basket-illu {
        position: relative;
        width: 100%;
        height: 100%;
        filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.35));
        animation: floatIllu 6s ease-in-out infinite;
      }

      @keyframes floatIllu {
        0%,
        100% {
          transform: translateY(0) rotate(-2deg);
        }
        50% {
          transform: translateY(-10px) rotate(2deg);
        }
      }

      .basket-badge {
        position: absolute;
        top: 6%;
        right: 0%;
        background: var(--white);
        color: var(--green-deep);
        padding: 10px 16px;
        border-radius: 999px;
        font-weight: 700;
        font-size: 13px;
        box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.25);
        transform: rotate(8deg);
        z-index: 3;
        display: flex;
        align-items: center;
        gap: 8px;
      }

      .basket-badge::before {
        content: "";
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--green-bright);
        animation: pulse 2s infinite;
      }

      /* ===== MERCHANT ===== */
      .merchant {
        background: var(--green-cream);
        border-top: 1px solid var(--line);
      }

      .merchant-card {
        max-width: var(--max);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
      }

      .merchant-content h2 {
        font-size: clamp(30px, 3.8vw, 46px);
        line-height: 1.05;
        margin-bottom: 18px;
        font-weight: 800;
        letter-spacing: -0.03em;
      }

      .merchant-content h2 .it {
        color: var(--green-bright);
        font-style: italic;
        font-weight: 700;
      }

      .merchant-content p {
        font-size: 17px;
        color: var(--muted);
        margin-bottom: 28px;
        max-width: 520px;
      }

      .merchant-perks {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 32px;
      }

      .merchant-perks li {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 15px;
        color: var(--green-deep);
        font-weight: 500;
      }

      .merchant-perks .check {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: var(--green-bright);
        color: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        flex-shrink: 0;
        font-weight: 700;
      }

      .merchant-visual {
        aspect-ratio: 1;
        background:
          radial-gradient(
            circle at 30% 30%,
            var(--green-bright),
            transparent 50%
          ),
          linear-gradient(135deg, var(--green-mid), var(--green-deep));
        border-radius: var(--radius-xl);
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .merchant-visual::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: repeating-linear-gradient(
          45deg,
          transparent,
          transparent 32px,
          rgba(255, 255, 255, 0.04) 32px,
          rgba(255, 255, 255, 0.04) 33px
        );
      }

      .merchant-badge {
        position: relative;
        background: var(--white);
        padding: 36px 48px;
        border-radius: 24px;
        text-align: center;
        transform: rotate(-3deg);
        box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.3);
      }

      .merchant-badge .num {
        font-size: 72px;
        font-weight: 900;
        color: var(--green-bright);
        line-height: 1;
        font-style: italic;
        letter-spacing: -0.04em;
      }

      .merchant-badge .lbl {
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: var(--green-deep);
        margin-top: 8px;
      }

      /* ===== FAQ ===== */
      .faq {
        background: var(--paper);
      }

      .faq-list {
        max-width: 880px;
        margin: 50px auto 0;
      }

      .faq-item {
        border-bottom: 1px solid var(--line);
        padding: 26px 0;
        cursor: pointer;
        transition: padding 0.3s;
      }

      .faq-item.open {
        padding-bottom: 32px;
      }

      .faq-q {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
        font-size: clamp(18px, 2.2vw, 24px);
        font-weight: 700;
        letter-spacing: -0.02em;
        transition: color 0.2s;
      }

      .faq-item:hover .faq-q {
        color: var(--green-bright);
      }

      .faq-toggle {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: var(--green-cream);
        color: var(--green-deep);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: all 0.3s;
        font-weight: 700;
        font-size: 18px;
      }

      .faq-item.open .faq-toggle {
        background: var(--green-bright);
        color: var(--white);
        transform: rotate(45deg);
      }

      .faq-a {
        max-height: 0;
        overflow: hidden;
        transition:
          max-height 0.4s ease,
          margin-top 0.3s;
        font-size: 16px;
        color: var(--muted);
        line-height: 1.6;
        max-width: 740px;
      }

      .faq-item.open .faq-a {
        max-height: 320px;
        margin-top: 14px;
      }

      /* ===== FOOTER ===== */
      footer {
        background: var(--green-deep);
        color: var(--green-cream);
        padding: 80px 32px 32px;
        position: relative;
        overflow: hidden;
      }

      footer::before {
        content: "";
        position: absolute;
        width: 600px;
        height: 600px;
        background: radial-gradient(
          circle,
          var(--green-bright),
          transparent 70%
        );
        top: -300px;
        right: -200px;
        border-radius: 50%;
        opacity: 0.1;
      }

      .footer-inner {
        max-width: var(--max);
        margin: 0 auto;
        position: relative;
      }

      .footer-top {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 60px;
        margin-bottom: 60px;
      }

      .footer-brand-row {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 18px;
      }

      .footer-brand-row img {
        width: 50px;
        height: 50px;
        object-fit: contain;
      }

      .footer-brand-row .name {
        font-size: 38px;
        font-weight: 800;
        letter-spacing: -0.04em;
        color: var(--green-cream);
      }

      .footer-tagline {
        font-size: 15px;
        opacity: 0.75;
        max-width: 380px;
        line-height: 1.55;
      }

      .footer-col h5 {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        margin-bottom: 18px;
        color: var(--green-bright);
      }

      .footer-col ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 12px;
      }

      .footer-col a {
        font-size: 14px;
        opacity: 0.85;
        transition: all 0.2s;
      }

      .footer-col a:hover {
        opacity: 1;
        color: var(--green-bright);
      }

      .footer-bottom {
        border-top: 1px solid rgba(219, 255, 219, 0.15);
        padding-top: 28px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 12px;
        opacity: 0.7;
        flex-wrap: wrap;
        gap: 16px;
      }

      .footer-social {
        display: flex;
        gap: 10px;
      }

      .social-link {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(219, 255, 219, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s;
      }

      .social-link:hover {
        background: var(--green-bright);
        color: var(--white);
        transform: translateY(-2px);
      }

      /* Nav download: icon only when viewport < 1200px (nav links can stay desktop until 1000px) */
      @media (max-width: 1199px) {
        .nav-right .btn-primary {
          position: relative;
          padding: 11px 12px;
          gap: 0;
        }
        .nav-right .btn-primary .nav-cta-text {
          border: 0;
          clip-path: inset(50%);
          height: 1px;
          margin: -1px;
          overflow: hidden;
          padding: 0;
          position: absolute;
          width: 1px;
          white-space: nowrap;
        }
      }

      /* MOBILE */
      @media (max-width: 1000px) {
        .hero-inner {
          grid-template-columns: 1fr;
          gap: 60px;
        }
        .hero-visual {
          height: 580px;
        }
        .how-grid,
        .world-grid {
          grid-template-columns: 1fr;
        }
        .basket-saved {
          grid-template-columns: 1fr;
          padding: 40px;
        }
        .basket-saved-stats {
          grid-template-columns: repeat(3, 1fr);
        }
        .why-grid,
        .merchant-card,
        .cta-card {
          grid-template-columns: 1fr;
        }
        .cta-card {
          padding: 50px 32px;
        }
        .cta-visual {
          height: 240px;
        }
        .footer-top {
          grid-template-columns: 1fr 1fr;
          gap: 40px;
        }

        .menu-toggle {
          display: block;
        }
        .nav-links {
          display: none;
          position: absolute;
          top: 100%;
          left: 0;
          right: 0;
          background: var(--paper);
          flex-direction: column;
          padding: 24px 32px;
          gap: 18px;
          border-bottom: 1px solid var(--line);
        }
        .nav-links.open {
          display: flex;
        }
      }

      @media (max-width: 600px) {
        .nav {
          padding: 12px 18px;
        }
        .hero {
          padding: 100px 18px 60px;
        }
        .section {
          padding: 80px 18px;
        }
        .footer-top {
          grid-template-columns: 1fr;
        }
        .step {
          padding: 32px 26px;
        }
        .basket-saved-stats {
          grid-template-columns: 1fr;
          gap: 24px;
        }
        .basket-stat {
          padding-left: 16px;
        }
        .footer-brand-row .name {
          font-size: 32px;
        }
        footer {
          padding: 60px 18px 24px;
        }
        .float-1 {
          padding: 9px 13px;
          right: -2%;
          top: 4%;
        }
        .float-2 {
          padding: 9px 13px;
          left: -4%;
          bottom: 22%;
        }
        .float-3 {
          padding: 9px 13px;
          right: -2%;
          bottom: 4%;
        }
        .float-deco .num {
          font-size: 20px;
        }
        .float-deco .lbl {
          font-size: 9px;
        }
        .marquee-item {
          font-size: 18px;
          gap: 36px;
        }
        .marquee-item .star {
          font-size: 14px;
        }
      }

      /* Reveal */
      .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition:
          opacity 0.8s ease,
          transform 0.8s ease;
      }
      .reveal.in {
        opacity: 1;
        transform: translateY(0);
      }

      /* ===== MODAL / FORMS ===== */
      .modal-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(6, 56, 49, 0.65);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 24px;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.25s ease;
      }

      .modal-backdrop.open {
        opacity: 1;
        pointer-events: auto;
      }

      .modal-card {
        background: var(--paper);
        border-radius: var(--radius-xl);
        width: 100%;
        max-width: 540px;
        max-height: 90vh;
        overflow-y: auto;
        position: relative;
        transform: translateY(20px) scale(0.98);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.5);
      }

      .modal-backdrop.open .modal-card {
        transform: translateY(0) scale(1);
      }

      .modal-header {
        padding: 32px 36px 0;
        position: relative;
      }

      .modal-close {
        position: absolute;
        top: 18px;
        right: 18px;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: none;
        background: var(--green-cream);
        color: var(--green-deep);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s;
        z-index: 2;
      }

      body[dir="rtl"] .modal-close {
        right: auto;
        left: 18px;
      }

      .modal-close:hover {
        background: var(--green-bright);
        color: var(--white);
        transform: rotate(90deg);
      }

      .modal-eyebrow {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: var(--green-bright);
        margin-bottom: 12px;
      }

      .modal-title {
        font-size: clamp(24px, 3vw, 32px);
        font-weight: 800;
        margin-bottom: 8px;
        letter-spacing: -0.03em;
        line-height: 1.1;
        color: var(--green-deep);
      }

      .modal-title .it {
        color: var(--green-bright);
        font-style: italic;
      }

      .modal-desc {
        font-size: 15px;
        color: var(--muted);
        margin-bottom: 24px;
      }

      .modal-form {
        padding: 8px 36px 36px;
        display: flex;
        flex-direction: column;
        gap: 16px;
      }

      .form-field {
        display: flex;
        flex-direction: column;
        gap: 6px;
      }

      .form-label {
        font-size: 12px;
        font-weight: 600;
        color: var(--green-deep);
        letter-spacing: 0.02em;
      }

      .form-label .req {
        color: var(--green-bright);
      }

      .form-input,
      .form-select,
      .form-textarea {
        background: var(--white);
        border: 1.5px solid var(--green-soft);
        border-radius: 12px;
        padding: 12px 16px;
        font-family: inherit;
        font-size: 15px;
        color: var(--green-deep);
        transition: all 0.2s;
        width: 100%;
      }

      .form-input::placeholder,
      .form-textarea::placeholder {
        color: rgba(6, 56, 49, 0.4);
      }

      .form-input:focus,
      .form-select:focus,
      .form-textarea:focus {
        outline: none;
        border-color: var(--green-bright);
        background: var(--white);
        box-shadow: 0 0 0 4px rgba(3, 187, 135, 0.12);
      }

      .form-textarea {
        min-height: 110px;
        resize: vertical;
        font-family: inherit;
      }

      .form-select {
        appearance: none;
        -webkit-appearance: none;
        background-image: url("../assets/icons/select-chevron.svg");
        background-repeat: no-repeat;
        background-position: right 16px center;
        padding-right: 40px;
        cursor: pointer;
      }

      body[dir="rtl"] .form-select {
        background-position: left 16px center;
        padding-right: 16px;
        padding-left: 40px;
      }

      .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
      }

      .form-submit {
        margin-top: 10px;
        background: var(--green-bright);
        color: var(--white);
        border: none;
        padding: 14px 24px;
        font-family: inherit;
        font-size: 15px;
        font-weight: 700;
        border-radius: 999px;
        cursor: pointer;
        transition: all 0.25s;
        box-shadow: 0 8px 24px -6px rgba(3, 187, 135, 0.5);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
      }

      .form-submit:hover:not(:disabled) {
        background: var(--green-mid);
        transform: translateY(-2px);
        box-shadow: 0 14px 32px -8px rgba(3, 187, 135, 0.6);
      }

      .form-submit:disabled {
        opacity: 0.6;
        cursor: not-allowed;
      }

      .form-success {
        background: var(--green-cream);
        border: 1.5px solid var(--green-bright);
        border-radius: 16px;
        padding: 20px;
        text-align: center;
        display: none;
      }

      .form-success.show {
        display: block;
      }

      .form-success .check-circle {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: var(--green-bright);
        color: var(--white);
        margin: 0 auto 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        font-weight: 800;
      }

      .form-success h4 {
        font-size: 18px;
        margin-bottom: 6px;
        color: var(--green-deep);
      }

      .form-success p {
        font-size: 14px;
        color: var(--muted);
      }

      .form-alert {
        background: #fff0f0;
        border: 1.5px solid #e85d5d;
        border-radius: 12px;
        padding: 12px 16px;
        font-size: 14px;
        color: #9b2c2c;
        margin-bottom: 14px;
      }

      .form-alert[hidden] {
        display: none;
      }

      .form-field.has-error .form-input,
      .form-field.has-error .form-select,
      .form-field.has-error .form-textarea {
        border-color: #e85d5d;
      }

      .form-field-error {
        margin: 6px 0 0;
        font-size: 13px;
        color: #c53030;
        line-height: 1.35;
      }

      @media (max-width: 600px) {
        .modal-header {
          padding: 28px 24px 0;
        }
        .modal-form {
          padding: 8px 24px 28px;
        }
        .form-row {
          grid-template-columns: 1fr;
        }
      }

      /* ===== RÉCLAMATION SECTION ===== */
      .reclamation {
        background: var(--green-cream);
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
      }

      .reclamation .section-inner {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 60px;
        align-items: start;
      }

      .reclamation-intro h2 {
        font-size: clamp(28px, 3.8vw, 44px);
        font-weight: 800;
        letter-spacing: -0.03em;
        line-height: 1.1;
        margin-bottom: 16px;
      }

      .reclamation-intro h2 .it {
        color: var(--green-bright);
        font-style: italic;
      }

      .reclamation-intro p {
        font-size: 16px;
        color: var(--muted);
        margin-bottom: 28px;
        max-width: 440px;
      }

      .reclamation-contacts {
        display: flex;
        flex-direction: column;
        gap: 14px;
      }

      .reclamation-contact {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 16px 18px;
        background: var(--white);
        border-radius: 16px;
        border: 1px solid var(--line);
        transition: all 0.25s;
        color: var(--green-deep);
      }

      .reclamation-contact:hover {
        border-color: var(--green-bright);
        transform: translateX(4px);
        box-shadow: 0 12px 30px -10px rgba(6, 56, 49, 0.12);
      }

      body[dir="rtl"] .reclamation-contact:hover {
        transform: translateX(-4px);
      }

      .reclamation-contact-icon {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        background: var(--green-cream);
        color: var(--green-deep);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
      }

      .reclamation-contact .lbl {
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: var(--muted);
        display: block;
        margin-bottom: 2px;
      }

      .reclamation-contact .val {
        font-size: 15px;
        font-weight: 700;
      }

      .reclamation-form-card {
        background: var(--white);
        border-radius: var(--radius-xl);
        padding: 36px;
        border: 1px solid var(--line);
        box-shadow: 0 20px 50px -20px rgba(6, 56, 49, 0.1);
      }

      .reclamation-form-card .modal-title {
        margin-bottom: 8px;
        font-size: 24px;
      }

      .reclamation-form-card .modal-desc {
        margin-bottom: 22px;
        font-size: 14px;
      }

      .reclamation-form-card .modal-form {
        padding: 0;
        gap: 14px;
      }

      @media (max-width: 1000px) {
        .reclamation .section-inner {
          grid-template-columns: 1fr;
          gap: 40px;
        }
      }

      @media (max-width: 600px) {
        .reclamation-form-card {
          padding: 26px;
        }
      }