﻿/* ======================================================
       CSS Custom Properties - Design System
    ====================================================== */
    :root {
      --purple-deep: #3B0D52;
      --magenta: #C400E8;
      --magenta-light: #D630F5;
      --magenta-pale: #F5EAFC;
      --white:      #FFFFFF;
      --off-white:  #F7F9FC;
      --surface:    #FFFFFF;
      --border:     #E2E0E8;
      --text:       #1A1A2E;
      --muted:      #5E6070;
      --light-text: #8A8A9A;
      --error:      #C0392B;
      --success:    #C400E8;

      --font-display: 'Cormorant Garamond', Georgia, serif;
      --font-body:    'Figtree', system-ui, sans-serif;

      --radius-sm:  6px;
      --radius-md:  12px;
      --radius-lg:  20px;

      --shadow-sm: 0 1px 4px rgba(59,13,82,.06);
      --shadow-md: 0 4px 20px rgba(59,13,82,.10);
      --shadow-lg: 0 12px 48px rgba(59,13,82,.14);

      --transition: 240ms cubic-bezier(.4,0,.2,1);
      --max-w: 1200px;
    }

    /* ======================================================
       Reset & Base
    ====================================================== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html {
      scroll-behavior: smooth;
      -webkit-text-size-adjust: 100%;
    }

    body {
      font-family: var(--font-body);
      color: var(--text);
      background: var(--white);
      line-height: 1.65;
      font-size: 16px;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    img { max-width: 100%; height: auto; display: block; }

    a { color: inherit; text-decoration: none; }

    ul, ol { list-style: none; }

    button, input, textarea, select {
      font-family: inherit;
      font-size: inherit;
    }

    :focus-visible {
      outline: 2px solid var(--magenta);
      outline-offset: 3px;
      border-radius: var(--radius-sm);
    }

    /* ======================================================
       Typography
    ====================================================== */
    .display-xl {
      font-family: var(--font-display);
      font-size: clamp(2.8rem, 5vw + 1rem, 5rem);
      font-weight: 300;
      line-height: 1.08;
      letter-spacing: -0.01em;
    }

    .display-lg {
      font-family: var(--font-display);
      font-size: clamp(2.2rem, 3.5vw, 3.6rem);
      font-weight: 400;
      line-height: 1.12;
    }

    .display-md {
      font-family: var(--font-display);
      font-size: clamp(1.6rem, 2.5vw, 2.4rem);
      font-weight: 400;
      line-height: 1.2;
    }

    .body-lg { font-size: 1.125rem; line-height: 1.7; }
    .body-sm { font-size: 0.875rem; line-height: 1.6; color: var(--muted); }

    .label {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--magenta);
    }

    /* ======================================================
       Layout Utilities
    ====================================================== */
    .container {
      width: 100%;
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 clamp(1rem, 4vw, 3rem);
    }

    .section {
      padding: clamp(4rem, 8vw, 7rem) 0;
    }

    .section--alt {
      background: var(--off-white);
    }

    .section--deep {
      background: var(--purple-deep);
      color: var(--white);
    }

    .grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
    .grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
    .grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }

    .flex { display: flex; }
    .flex-center { display: flex; align-items: center; justify-content: center; }
    .flex-between { display: flex; align-items: center; justify-content: space-between; }
    .flex-wrap-gap { flex-wrap: wrap; gap: 1rem; }
    .label-block-xs { display: block; margin-bottom: 0.5rem; }
    .label-block-sm { display: block; margin-bottom: 0.75rem; }
    .label-block-md { display: block; margin-bottom: 1rem; }
    .label-on-dark-40 { color: rgba(255,255,255,.4); }
    .label-on-dark-50 { color: rgba(255,255,255,.5); }
    .text-on-dark-soft { color: rgba(255,255,255,.6); }
    .mt-md { margin-top: 1.25rem; }
    .mt-lg { margin-top: 1.5rem; }
    .mt-xl { margin-top: 2rem; }
    .mt-2xl { margin-top: 2.5rem; }
    .mb-md { margin-bottom: 1rem; }
    .mb-lg { margin-bottom: 1.25rem; }
    .mb-xl { margin-bottom: 1.5rem; }
    .mb-2xl { margin-bottom: 2rem; }
    .mb-3xl { margin-bottom: 2.5rem; }
    .max-w-mission { max-width: 760px; margin: 0 auto; text-align: center; }
    .mission-quote {
      font-family: var(--font-display);
      font-size: clamp(1.8rem,3.5vw,2.8rem);
      font-weight: 300;
      line-height: 1.2;
      color: white;
      font-style: italic;
    }

    .about-mission-band {
      position: relative;
      overflow: hidden;
      background: var(--purple-deep);
    }

    .about-mission-band > .container {
      position: relative;
      z-index: 1;
    }

    .about-mission-band .hero-glow-orb {
      top: 50%;
      left: 50%;
      opacity: .42;
    }

    .about-mission-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0;
      align-items: start;
      max-width: 1080px;
      margin: 0 auto;
    }

    .about-mission-item {
      position: relative;
      min-height: 100%;
      padding-inline: clamp(2rem, 4vw, 3.25rem);
    }

    .about-mission-item + .about-mission-item {
      border-inline-start: 1px solid rgba(255,255,255,.14);
    }

    .about-mission-quote {
      font-size: clamp(1.45rem, 2vw, 2rem);
      line-height: 1.25;
      text-align: start;
      font-style: italic;
      color: rgba(255,255,255,.94);
    }
    .hero-card-label {
      color: rgba(255,255,255,.5);
      font-family: var(--font-body);
      font-size: .72rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      font-weight: 600;
      margin-bottom: 1.25rem;
    }
    .store-intro { margin-bottom: 2rem; }
    .why-intro {
      color: var(--muted);
      margin-bottom: 2.5rem;
      line-height: 1.75;
      font-size: 1.05rem;
    }
    .footer-logo-link {
      background: none;
      border: none;
      cursor: pointer;
    }
    .footer-logo-link img {
      height: 32px;
      width: auto;
      display: block;
    }
    .footer-logo-text { color: white; }
    .form-submit-full { width: 100%; }
    body.modal-lock { overflow: hidden; }

    /* ======================================================
       Page Routing
    ====================================================== */
    .page { display: none; }
    .page.active { display: block; }

    /* ======================================================
       Navigation
    ====================================================== */
    #nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 900;
      height: 70px;
      transition: background var(--transition), box-shadow var(--transition);
    }

    #nav.scrolled {
      background: rgba(255,255,255,.97);
      box-shadow: var(--shadow-sm);
      backdrop-filter: blur(12px);
    }

    #nav.nav-dark {
      background: transparent;
    }

    #nav.nav-dark.scrolled {
      background: rgba(255,255,255,.97);
    }

    .nav-inner {
      height: 70px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 0.52rem;
      cursor: pointer;
    }

    html[dir="rtl"] .nav-logo {
      direction: ltr;
      flex-direction: row;
    }

    .nav-logo-img {
      display: none;
      height: 32px;
      width: auto;
    }

    /* Logo swap based on existing nav state */
    #nav.nav-dark:not(.scrolled) .nav-logo-img--on-dark { display: block; }
    #nav.scrolled .nav-logo-img--on-light { display: block; }

    .nav-logo-symbol,
    .nav-logo-wordmark {
      position: relative;
      display: block;
      flex: 0 0 auto;
      height: 32px;
    }

    .nav-logo-symbol {
      width: 33.77px;
      transform: rotate(var(--logo-rotation, 0deg));
      transform-origin: 47.43% 54.98%;
      will-change: transform;
    }

    .nav-logo-wordmark {
      width: 160px;
    }

    .nav-logo-piece {
      position: absolute;
      top: 50%;
      left: 50%;
      display: none;
      width: 100%;
      height: 100%;
      object-fit: contain;
      transform: translate(-50%, -50%);
    }

    #nav.nav-dark:not(.scrolled) .nav-logo-piece--on-dark { display: block; }
    #nav.scrolled .nav-logo-piece--on-light,
    #nav:not(.nav-dark) .nav-logo-piece--on-light { display: block; }

    .nav-logo-mark {
      width: 32px;
      height: 32px;
      background: var(--magenta);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .nav-logo-mark svg { width: 18px; height: 18px; fill: white; }

    .nav-logo-text {
      font-family: var(--font-display);
      font-size: 1.45rem;
      font-weight: 500;
      color: var(--purple-deep);
      letter-spacing: 0.02em;
    }

    #nav.nav-dark:not(.scrolled) .nav-logo-text { color: white; }
    #nav.nav-dark:not(.scrolled) .nav-links a { color: rgba(255,255,255,.85); }
    #nav.nav-dark:not(.scrolled) .nav-links a:hover { color: white; }
    #nav.nav-dark:not(.scrolled) .nav-lang {
      color: white;
      border-color: rgba(255,255,255,.35);
      background: rgba(255,255,255,.08);
    }
    #nav.nav-dark:not(.scrolled) .nav-lang:hover {
      background: rgba(255,255,255,.16);
      border-color: rgba(255,255,255,.58);
    }
    #nav.nav-dark:not(.scrolled) .nav-cta { border-color: rgba(255,255,255,.5); color: white; }
    #nav.nav-dark:not(.scrolled) .nav-cta:hover { background: white; color: var(--purple-deep); border-color: white; }
    #nav.nav-dark:not(.scrolled) .nav-hamburger span { background: white; }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 2rem;
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .nav-lang {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 52px;
      min-height: 36px;
      padding: 0.46rem 0.85rem;
      border: 1px solid rgba(59,13,82,.2);
      border-radius: 999px;
      background: rgba(245,234,252,.78);
      color: var(--purple-deep);
      font-family: var(--font-body);
      font-size: 0.72rem;
      font-weight: 600;
      line-height: 1;
      letter-spacing: 0.06em;
      text-decoration: none;
      transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition);
    }

    .nav-lang:hover {
      background: rgba(245,234,252,.96);
      border-color: rgba(59,13,82,.36);
      color: var(--purple-deep);
      transform: translateY(-1px);
    }

    .nav-shop {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.82rem;
      font-weight: 600;
      padding: 0.45rem 0.9rem;
      border-radius: 999px;
      background: var(--magenta);
      color: white;
      text-decoration: none;
      transition: background var(--transition), transform var(--transition);
      white-space: nowrap;
    }

    .nav-shop:hover {
      background: var(--magenta-light);
      transform: translateY(-1px);
    }

    .nav-shop svg {
      width: 14px;
      height: 14px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      opacity: 0.95;
    }

    .nav-links a {
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--text);
      transition: color var(--transition);
      position: relative;
      padding-bottom: 2px;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -2px; left: 0; right: 0;
      height: 1px;
      background: var(--magenta);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform var(--transition);
    }

    .nav-links a:hover { color: var(--magenta); }
    .nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
    .nav-links a.active { color: var(--magenta); }

    .nav-cta {
      font-size: 0.875rem;
      font-weight: 500;
      padding: 0.5rem 1.25rem;
      border: 1.5px solid var(--purple-deep);
      border-radius: 100px;
      color: var(--purple-deep);
      cursor: pointer;
      transition: all var(--transition);
      background: transparent;
      white-space: nowrap;
    }

    .nav-cta:hover {
      background: var(--purple-deep);
      color: white;
    }

    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
      border-radius: var(--radius-sm);
    }

    .nav-hamburger span {
      display: block;
      width: 22px;
      height: 1.5px;
      background: var(--purple-deep);
      transition: all var(--transition);
      border-radius: 2px;
    }

    /* Mobile nav drawer */
    .nav-drawer {
      position: fixed;
      top: 70px; left: 0; right: 0; bottom: 0;
      background: white;
      z-index: 899;
      padding: 2rem;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      transform: translateX(100%);
      transition: transform 300ms cubic-bezier(.4,0,.2,1);
    }

    .nav-drawer.open { transform: translateX(0); }

    .nav-drawer a {
      font-size: 1.5rem;
      font-family: var(--font-display);
      font-weight: 400;
      color: var(--purple-deep);
      border-bottom: 1px solid var(--border);
      padding-bottom: 1rem;
    }

    .nav-drawer .nav-lang {
      width: fit-content;
      border: 1px solid rgba(59,13,82,.2);
      padding: 0.52rem 0.9rem;
      font-family: var(--font-body);
      font-size: 0.72rem;
      font-weight: 600;
      line-height: 1;
      color: var(--purple-deep);
    }

    /* ======================================================
       Buttons
    ====================================================== */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-family: var(--font-body);
      font-size: 0.9rem;
      font-weight: 500;
      padding: 0.75rem 1.75rem;
      border-radius: 100px;
      cursor: pointer;
      border: none;
      transition: all var(--transition);
      text-decoration: none;
      white-space: nowrap;
      letter-spacing: 0.01em;
    }

    .btn-primary {
      background: var(--magenta);
      color: white;
    }

    .btn-primary:hover {
      background: var(--magenta-light);
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(215,0,253,.3);
    }

    .btn-primary:active { transform: translateY(0); }

    .btn-outline {
      background: transparent;
      color: var(--purple-deep);
      border: 1.5px solid var(--purple-deep);
    }

    .btn-outline:hover {
      background: var(--purple-deep);
      color: white;
      transform: translateY(-1px);
    }

    .btn-outline-white {
      background: transparent;
      color: white;
      border: 1.5px solid rgba(255,255,255,.6);
    }

    .btn-outline-white:hover {
      background: white;
      color: var(--purple-deep);
      border-color: white;
    }

    .btn-lg { padding: 0.9rem 2.2rem; font-size: 1rem; }
    .btn-sm { padding: 0.5rem 1.2rem; font-size: 0.8rem; }

    /* ======================================================
       Cards
    ====================================================== */
    .card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      overflow: hidden;
      transition: box-shadow var(--transition), transform var(--transition);
    }

    .card:hover {
      box-shadow: var(--shadow-md);
      transform: translateY(-3px);
    }

    /* ======================================================
       Section Headers
    ====================================================== */
    .section-header {
      margin-bottom: 3rem;
    }

    .section-header--center {
      text-align: center;
      max-width: 620px;
      margin: 0 auto 3rem;
    }

    .section-header .label { margin-bottom: 0.75rem; display: block; }

    .section-header h2 {
      margin-bottom: 1rem;
    }

    .section-header p {
      color: var(--muted);
      font-size: 1.05rem;
      line-height: 1.7;
    }

    /* ======================================================
       HOME PAGE
    ====================================================== */

    /* Hero */
    .hero {
      min-height: 100vh;
      background: var(--purple-deep);
      position: relative;
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    /* Subtle grid pattern */
    .hero-bg::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, rgba(255,255,255,.095) 1px, transparent 1px);
      background-size: 28px 28px;
    }

    .hero--interactive-field .hero-bg::before {
      opacity: 0;
    }

    .hero-field-canvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 0;
    }

    .hero-glow-orb {
      position: absolute;
      top: 36%;
      left: 28%;
      width: clamp(18rem, 36vw, 34rem);
      height: clamp(18rem, 36vw, 34rem);
      border-radius: 50%;
      background:
        radial-gradient(circle at 35% 35%, rgba(214,48,245,.34), rgba(196,0,232,.18) 36%, rgba(59,13,82,.02) 68%, transparent 74%);
      filter: blur(86px);
      opacity: .52;
      pointer-events: none;
      z-index: 0;
      transform: translate3d(-50%, -50%, 0);
      will-change: transform;
    }

    .hero.hero--interactive-field .hero-glow-orb {
      width: clamp(14.5rem, 28vw, 26rem);
      height: clamp(14.5rem, 28vw, 26rem);
      background:
        radial-gradient(circle at 35% 35%, rgba(214,48,245,.28), rgba(196,0,232,.15) 38%, rgba(59,13,82,.018) 68%, transparent 76%);
      opacity: .32;
      filter: blur(78px);
    }

    .about-hero,
    .products-hero,
    .contact-hero {
      position: relative;
      overflow: hidden;
    }

    .about-hero > .container,
    .products-hero > .container,
    .contact-hero > .container {
      position: relative;
      z-index: 1;
    }

    .products-hero .hero-glow-orb {
      background:
        radial-gradient(circle at 38% 38%, rgba(196,0,232,.24), rgba(214,48,245,.13) 35%, rgba(245,234,252,.72) 58%, transparent 74%);
      opacity: .9;
      filter: blur(72px);
      mix-blend-mode: multiply;
    }

    .hero-glow-orb--ambient {
      animation: heroOrbDrift 16s ease-in-out infinite alternate;
    }

    @keyframes heroOrbDrift {
      0% { top: 32%; left: 24%; transform: translate3d(-50%, -50%, 0) scale(1); }
      50% { top: 42%; left: 34%; transform: translate3d(-50%, -50%, 0) scale(1.08); }
      100% { top: 28%; left: 42%; transform: translate3d(-50%, -50%, 0) scale(.96); }
    }

    @media (prefers-reduced-motion: reduce) {
      .hero-glow-orb {
        animation: none !important;
      }
    }

    .hero-content {
      position: relative;
      z-index: 1;
      padding: 7.25rem 0 7.25rem;
      width: 100%;
    }

    .hero-inner {
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
      gap: clamp(3rem, 5vw, 5.5rem);
      align-items: center;
    }

    .hero-text { color: white; }

    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(2.8rem, 4.5vw, 5rem);
      font-weight: 300;
      line-height: 1.05;
      color: white;
      margin-bottom: 1.25rem;
    }

    .hero-title em {
      font-style: italic;
      color: rgba(255,255,255,.7);
    }

    .hero-subtitle {
      font-size: 1rem;
      color: rgba(255,255,255,.65);
      line-height: 1.7;
      margin-bottom: 2.75rem;
      max-width: 480px;
    }

    .hero-actions {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .hero-visual {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-card-stack {
      position: relative;
      width: min(100%, 580px);
      height: 380px;
    }

    .hero-card {
      position: absolute;
      background:
        linear-gradient(145deg, rgba(255,255,255,.10) 0%, rgba(255,255,255,.055) 100%);
      border: 1px solid rgba(255,255,255,.22);
      border-radius: 16px;
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,.18),
        inset 0 -28px 60px rgba(196,0,232,.055),
        0 24px 70px rgba(20,0,30,.16);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      padding: 2rem;
      transition: transform var(--transition);
    }

    .hero-card--main {
      top: 142px; left: 0; right: 0;
      z-index: 1;
      min-height: 220px;
    }

    .hero-card--accent {
      top: 28px;
      left: 50%;
      width: 88%;
      transform: translateX(-50%);
      height: 100px;
      background:
        linear-gradient(145deg, rgba(255,255,255,.07) 0%, rgba(255,255,255,.035) 100%);
      border-color: rgba(255,255,255,.18);
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,.16),
        0 18px 48px rgba(20,0,30,.12);
      display: flex;
      align-items: center;
      gap: 1rem;
      z-index: 2;
    }

    .hero-stat {
      color: white;
    }

    .hero-stat-num {
      font-family: var(--font-display);
      font-size: 2.5rem;
      font-weight: 300;
      line-height: 1;
    }

    .hero-stat-label {
      font-size: 0.78rem;
      color: rgba(255,255,255,.55);
      margin-top: 0.25rem;
    }

    .hero-stat-divider {
      width: 1px;
      height: 40px;
      background: rgba(255,255,255,.15);
    }

    .hero-icon-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      column-gap: 1rem;
      row-gap: 0.85rem;
      margin-top: 1.35rem;
    }

    .hero-icon-item {
      display: flex;
      align-items: center;
      gap: 0.65rem;
      color: rgba(255,255,255,.78);
      font-weight: 500;
      font-size: 0.82rem;
    }

    .hero-icon-dot {
      width: 34px;
      height: 34px;
      background: rgba(196,0,232,.18);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .hero-icon-dot svg { width: 16px; height: 16px; stroke: var(--magenta-light); fill: none; }

    /* Value props */
    .value-props {
      background: var(--off-white);
    }

    .vp-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 2px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      overflow: hidden;
    }

    .vp-item {
      background: var(--white);
      padding: 2.5rem 2rem;
      transition: background var(--transition);
    }

    .vp-item:hover {
      background: var(--magenta-pale);
    }

    .vp-icon {
      width: 44px;
      height: 44px;
      background: var(--magenta-pale);
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.25rem;
    }

    .vp-icon svg { width: 20px; height: 20px; stroke: var(--magenta); fill: none; }

    .vp-title {
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
      color: var(--purple-deep);
    }

    .vp-text {
      font-size: 0.875rem;
      color: var(--muted);
      line-height: 1.65;
    }

    /* Product highlights on home */
    .product-highlights {}

    /* Store band on home */
    .store-band {
      background: var(--magenta-pale);
    }

    .store-band-grid {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 3rem;
      align-items: center;
    }

    .store-band p {
      color: var(--muted);
      line-height: 1.75;
      font-size: 1.05rem;
    }

    .store-tiles {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1rem;
    }

    .store-tile {
      background: rgba(255,255,255,.9);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 1.1rem;
      transition: box-shadow var(--transition), transform var(--transition);
    }

    .store-tile:hover {
      box-shadow: var(--shadow-sm);
      transform: translateY(-2px);
    }

    .store-tile-icon {
      width: 44px;
      height: 44px;
      background: var(--off-white);
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 0.9rem;
    }

    .store-tile-icon svg {
      width: 22px;
      height: 22px;
      stroke: var(--purple-deep);
      fill: none;
      stroke-width: 1.8;
    }

    .store-tile-label {
      font-weight: 600;
      color: var(--purple-deep);
      font-size: 0.95rem;
      line-height: 1.25;
    }

    .ph-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    .ph-card {
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      overflow: hidden;
      background: white;
      transition: all var(--transition);
      cursor: pointer;
      display: flex;
      flex-direction: column;
    }

    .ph-card:hover {
      box-shadow: var(--shadow-md);
      transform: translateY(-4px);
      border-color: var(--magenta);
    }

    .ph-card-visual {
      height: 180px;
      background: var(--off-white);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .ph-card-visual::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 60px;
      background: linear-gradient(transparent, var(--off-white));
    }

    .ph-device-icon {
      width: 80px;
      height: 80px;
      opacity: 0.35;
    }

    .ph-card-body {
      padding: 1.5rem;
      display: flex;
      flex: 1;
      flex-direction: column;
    }

    .ph-category {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--magenta);
      margin-bottom: 0.5rem;
    }

    .ph-title {
      font-family: var(--font-display);
      font-size: 1.3rem;
      font-weight: 500;
      margin-bottom: 0.5rem;
      color: var(--purple-deep);
    }

    .ph-desc {
      font-size: 0.855rem;
      color: var(--muted);
      line-height: 1.6;
      margin-bottom: 1.25rem;
    }

    .ph-link {
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--magenta);
      display: flex;
      align-items: center;
      gap: 0.4rem;
      margin-top: auto;
      transition: gap var(--transition);
    }

    .ph-link:hover { gap: 0.7rem; }

    /* Why Gestiva */
    .why-section {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    .why-visual {
      position: relative;
    }

    .why-visual-box {
      background: var(--purple-deep);
      border-radius: var(--radius-lg);
      padding: 3rem;
      position: relative;
      overflow: hidden;
    }

    .why-visual-box::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -30%;
      width: 80%;
      height: 80%;
      background: radial-gradient(circle, rgba(59,13,82,.25) 0%, transparent 70%);
    }

    .why-metrics {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
      position: relative;
      z-index: 1;
    }

    .why-metric {
      color: white;
    }

    .why-metric-num {
      font-family: var(--font-display);
      font-size: 2.8rem;
      font-weight: 300;
      color: white;
      line-height: 1;
    }

    .why-metric-label {
      font-size: 0.8rem;
      color: rgba(255,255,255,.5);
      margin-top: 0.35rem;
      line-height: 1.4;
    }

    .why-cert-row {
      display: flex;
      gap: 0.75rem;
      margin-top: 2rem;
      position: relative;
      z-index: 1;
      flex-wrap: wrap;
    }

    .why-cert-badge {
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.15);
      border-radius: var(--radius-sm);
      padding: 0.4rem 0.8rem;
      font-size: 0.75rem;
      color: rgba(255,255,255,.75);
      font-weight: 500;
    }

    .why-list {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .why-item {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
    }

    .why-item-num {
      font-family: var(--font-display);
      font-size: 2rem;
      font-weight: 300;
      color: #1a0a24;
      line-height: 1;
      flex-shrink: 0;
      width: 40px;
    }

    .why-item-title {
      font-weight: 600;
      font-size: 0.95rem;
      margin-bottom: 0.3rem;
      color: var(--purple-deep);
    }

    .why-item-text {
      font-size: 0.875rem;
      color: var(--muted);
      line-height: 1.65;
    }

    /* CTA band */
    .cta-band {
      background: var(--purple-deep);
      padding: 5rem 0;
      text-align: center;
    }

    .cta-band h2 {
      font-family: var(--font-display);
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 300;
      color: white;
      margin-bottom: 1rem;
    }

    .cta-band p {
      color: rgba(255,255,255,.75);
      font-size: 1.05rem;
      margin-bottom: 2.5rem;
      max-width: 500px;
      margin-left: auto;
      margin-right: auto;
    }

    .cta-band-actions {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* Partners / trust strip */
    .trust-strip {
      padding: 3rem 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .trust-strip-inner {
      display: flex;
      align-items: center;
      gap: 3rem;
      flex-wrap: wrap;
      justify-content: center;
    }

    .trust-label-text {
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--light-text);
      white-space: nowrap;
    }

    .trust-items {
      display: flex;
      align-items: center;
      gap: 2.5rem;
      flex-wrap: wrap;
      justify-content: center;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--muted);
      font-size: 0.82rem;
      font-weight: 500;
    }

    .trust-item svg {
      width: 16px;
      height: 16px;
      stroke: var(--magenta);
      fill: none;
    }

    /* ======================================================
       ABOUT PAGE
    ====================================================== */
    .about-hero {
      background: var(--purple-deep);
      padding: 8rem 0 5rem;
      color: white;
    }

    .about-hero h1 {
      font-family: var(--font-display);
      font-size: clamp(2.5rem, 5vw, 4.5rem);
      font-weight: 300;
      line-height: 1.08;
      margin-bottom: 1.25rem;
    }

    .about-hero p {
      font-size: 1.1rem;
      color: rgba(255,255,255,.65);
      max-width: 560px;
      line-height: 1.75;
    }

    .about-split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: start;
    }

    .about-text h2 {
      margin-bottom: 1.25rem;
    }

    .about-text p {
      color: var(--muted);
      line-height: 1.75;
      margin-bottom: 1rem;
    }

    .about-values {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .about-value-card {
      background: var(--off-white);
      border-radius: var(--radius-md);
      padding: 1.5rem;
      border: 1px solid var(--border);
    }

    .about-value-card h3 {
      font-size: 0.95rem;
      font-weight: 600;
      margin-bottom: 0.4rem;
      color: var(--purple-deep);
    }

    .about-value-card p {
      font-size: 0.835rem;
      color: var(--muted);
      line-height: 1.6;
    }

    /* Standards */
    .standards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.5rem;
    }

    .standard-card {
      background: white;
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 1.75rem;
    }

    .standard-icon {
      width: 48px;
      height: 48px;
      background: var(--magenta-pale);
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
    }

    .standard-icon svg { width: 22px; height: 22px; stroke: var(--magenta); fill: none; }

    .standard-card h3 {
      font-size: 1rem;
      font-weight: 600;
      color: var(--purple-deep);
      margin-bottom: 0.5rem;
    }

    .standard-card p {
      font-size: 0.855rem;
      color: var(--muted);
      line-height: 1.6;
    }

    .leadership-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.25rem;
      max-width: 980px;
      margin: 0 auto;
      align-items: stretch;
    }

    .leadership-card {
      position: relative;
      min-height: 150px;
      padding: 2rem 1.5rem;
      background:
        linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(245,234,252,.45) 100%);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      box-shadow: 0 18px 45px rgba(59,13,82,.06);
      overflow: hidden;
      --mouse-x: 50%;
      --mouse-y: 50%;
    }

    .leadership-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(196,0,232,.12), transparent 60%);
      opacity: 0;
      pointer-events: none;
      transition: opacity var(--transition);
    }

    .leadership-card--spotlit::before {
      opacity: 1;
    }

    .leadership-card > * {
      position: relative;
      z-index: 1;
    }

    .leadership-card--primary {
      background:
        linear-gradient(180deg, white 0%, rgba(245,234,252,.72) 100%);
      border: 2px solid rgba(196,0,232,.32);
      box-shadow: 0 22px 60px rgba(59,13,82,.1);
    }

    .leadership-card h3 {
      font-family: var(--font-display);
      font-size: clamp(1.45rem, 2vw, 1.9rem);
      font-weight: 300;
      color: var(--purple-deep);
      line-height: 1.15;
      margin-bottom: .65rem;
    }

    .leadership-card p {
      font-size: .78rem;
      font-weight: 600;
      color: var(--magenta);
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    /* ======================================================
       PRODUCTS PAGE
    ====================================================== */
    .products-hero {
      background: var(--off-white);
      padding: 8rem 0 4rem;
      border-bottom: 1px solid var(--border);
    }

    .products-hero h1 {
      font-family: var(--font-display);
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 300;
      line-height: 1.1;
      margin-bottom: 1rem;
      color: var(--purple-deep);
    }

    .products-hero p {
      font-size: 1.05rem;
      color: var(--muted);
      max-width: 520px;
      line-height: 1.7;
    }

    /* Filter bar */
    .filter-bar {
      padding: 2rem 0;
      position: sticky;
      top: 70px;
      background: white;
      z-index: 10;
      border-bottom: 1px solid var(--border);
    }

    .filter-tabs {
      display: flex;
      gap: 0.5rem;
      flex-wrap: wrap;
    }

    .filter-tab {
      padding: 0.5rem 1.25rem;
      border-radius: 100px;
      font-size: 0.855rem;
      font-weight: 500;
      cursor: pointer;
      border: 1.5px solid var(--border);
      background: transparent;
      color: var(--muted);
      transition: all var(--transition);
    }

    .filter-tab:hover, .filter-tab.active {
      background: var(--purple-deep);
      color: white;
      border-color: var(--purple-deep);
    }

    /* Product catalog grid */
    .product-catalog {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 1.5rem;
      padding: 3rem 0;
    }

    .product-card {
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      overflow: hidden;
      background: white;
      transition: all var(--transition);
      display: flex;
      flex-direction: column;
      transform-style: preserve-3d;
      will-change: transform;
    }

    .product-card:hover {
      box-shadow: var(--shadow-md);
      transform: translateY(-3px);
      border-color: rgba(215,0,253,.3);
    }

    .product-card-img {
      height: 200px;
      background:
        radial-gradient(circle at 18% 18%, rgba(196,0,232,.12), transparent 34%),
        linear-gradient(135deg, rgba(245,234,252,.95) 0%, rgba(255,255,255,.86) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      border-bottom: 1px solid var(--border);
    }

    .product-card-img::after {
      content: '';
      position: absolute;
      inset: 1.25rem;
      border: 1px solid rgba(59,13,82,.08);
      border-radius: var(--radius-sm);
      pointer-events: none;
    }

    .product-card-photo {
      position: relative;
      z-index: 1;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .product-card-visual-label {
      position: relative;
      z-index: 1;
      max-width: 92%;
      font-family: var(--font-display);
      font-size: clamp(2.1rem, 4vw, 3.5rem);
      font-weight: 300;
      line-height: 1;
      letter-spacing: .08em;
      text-align: center;
      text-transform: uppercase;
      color: rgba(59,13,82,.16);
      user-select: none;
    }

    .product-card-badge {
      position: absolute;
      top: 1rem;
      left: 1rem;
      z-index: 3;
      background: var(--purple-deep);
      color: white;
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 0.3rem 0.7rem;
      border-radius: 100px;
    }

    .product-card-body {
      padding: 1.5rem;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .product-card-cat {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--magenta);
      margin-bottom: 0.5rem;
    }

    .product-card-name {
      font-family: var(--font-display);
      font-size: 1.4rem;
      font-weight: 500;
      color: var(--purple-deep);
      margin-bottom: 0.6rem;
      line-height: 1.25;
    }

    .product-card-desc {
      font-size: 0.855rem;
      color: var(--muted);
      line-height: 1.65;
      flex: 1;
      margin-bottom: 1.25rem;
    }

    .product-card-specs {
      display: flex;
      gap: 0.5rem;
      flex-wrap: wrap;
      margin-bottom: 1.25rem;
    }

    .spec-tag {
      font-size: 0.72rem;
      font-weight: 500;
      background: var(--off-white);
      border: 1px solid var(--border);
      border-radius: 4px;
      padding: 0.25rem 0.6rem;
      color: var(--muted);
    }

    .product-card-actions {
      display: flex;
      gap: 0.75rem;
    }

    /* Product Detail Modal */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(59,13,82,.6);
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1.5rem;
      opacity: 0;
      pointer-events: none;
      transition: opacity var(--transition);
      backdrop-filter: blur(4px);
    }

    .modal-overlay.open {
      opacity: 1;
      pointer-events: all;
    }

    .modal {
      background: white;
      border-radius: var(--radius-lg);
      max-width: 800px;
      width: 100%;
      max-height: 90vh;
      overflow-y: auto;
      transform: translateY(20px) scale(.98);
      transition: transform var(--transition);
    }

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

    .modal-header {
      padding: 2rem;
      border-bottom: 1px solid var(--border);
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 1rem;
    }
    #modalProductCat { margin-bottom: .3rem; }
    #modalProductName { font-size: 1.6rem; }

    .modal-close {
      background: var(--off-white);
      border: none;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 1.2rem;
      color: var(--muted);
      transition: all var(--transition);
    }

    .modal-close:hover { background: var(--border); color: var(--purple-deep); }

    .modal-body { padding: 2rem; }

    .modal-product-image-wrap {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: clamp(220px, 34vw, 360px);
      margin-bottom: 1.5rem;
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      background:
        radial-gradient(circle at 18% 18%, rgba(196,0,232,.10), transparent 34%),
        linear-gradient(135deg, rgba(245,234,252,.92), rgba(255,255,255,.94));
      overflow: hidden;
    }

    .modal-product-image-wrap[hidden] {
      display: none;
    }

    .modal-product-image {
      display: block;
      width: min(100%, 760px);
      max-height: 340px;
      object-fit: contain;
      object-position: center;
      border-radius: 18px;
      clip-path: inset(0 round 18px);
      filter: drop-shadow(0 20px 28px rgba(59,13,82,.14));
    }

    .modal-body h3 {
      font-family: var(--font-display);
      font-size: 1.5rem;
      color: var(--purple-deep);
      margin-bottom: 0.75rem;
    }

    .modal-body p {
      color: var(--muted);
      line-height: 1.7;
      margin-bottom: 1rem;
    }

    .modal-specs-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin-top: 1.5rem;
    }

    .modal-spec-item {
      background: var(--off-white);
      border-radius: var(--radius-sm);
      padding: 1rem;
    }

    .modal-spec-item .spec-label {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--light-text);
      margin-bottom: 0.35rem;
    }

    .modal-spec-item .spec-value {
      font-weight: 600;
      font-size: 0.9rem;
      color: var(--purple-deep);
    }

    .modal-info-link-row {
      margin-top: 1rem;
      display: flex;
      justify-content: flex-end;
    }

    .modal-footer {
      padding: 1.35rem 2rem 1.5rem;
      border-top: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
    }

    .modal-footer > .btn {
      min-width: 118px;
      justify-content: center;
    }

    .modal-footer-cta {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 0.5rem;
      text-align: right;
    }

    .modal-footer-cta .btn {
      min-width: 190px;
      justify-content: center;
    }

    .modal-manufacturer-link,
    .modal-footer-link {
      font-size: 0.85rem;
      color: var(--muted);
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      line-height: 1.4;
      transition: color var(--transition);
    }

    .modal-manufacturer-link {
      font-weight: 600;
      text-decoration: none;
    }

    .modal-footer-link {
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .modal-manufacturer-link:hover,
    .modal-footer-link:hover {
      color: var(--magenta);
    }

    /* ======================================================
       CONTACT PAGE
    ====================================================== */
    .contact-hero {
      background: var(--purple-deep);
      padding: 8rem 0 5rem;
      color: white;
    }

    .contact-hero h1 {
      font-family: var(--font-display);
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 300;
      margin-bottom: 1rem;
    }

    .contact-hero p {
      color: rgba(255,255,255,.65);
      font-size: 1.05rem;
      max-width: 480px;
      line-height: 1.7;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.6fr;
      gap: 4rem;
      align-items: start;
    }

    .contact-info-section h2 {
      font-family: var(--font-display);
      font-size: 1.8rem;
      font-weight: 400;
      margin-bottom: 0.5rem;
    }

    .contact-info-section > p {
      color: var(--muted);
      margin-bottom: 2rem;
      line-height: 1.65;
    }

    .contact-info-cards {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .contact-info-card {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
      padding: 1.25rem;
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      background: white;
    }

    .cic-icon {
      width: 40px;
      height: 40px;
      background: var(--magenta-pale);
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .cic-icon svg { width: 18px; height: 18px; stroke: var(--magenta); fill: none; }

    .cic-label {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--light-text);
      margin-bottom: 0.25rem;
    }

    .cic-value {
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--purple-deep);
    }

    /* Forms */
    .form-card {
      background: white;
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 2.5rem;
      box-shadow: var(--shadow-md);
    }

    .form-tabs {
      display: flex;
      gap: 0;
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      overflow: hidden;
      margin-bottom: 2rem;
    }

    .form-tab-btn {
      flex: 1;
      padding: 0.75rem;
      font-size: 0.855rem;
      font-weight: 500;
      border: none;
      background: transparent;
      cursor: pointer;
      color: var(--muted);
      transition: all var(--transition);
    }

    .form-tab-btn.active {
      background: var(--purple-deep);
      color: white;
    }

    .form-panel { display: none; }
    .form-panel.active { display: block; }
    .form-card.submitted .form-panel { display: none; }

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

    .form-group {
      margin-bottom: 1.25rem;
    }

    .form-group label {
      display: block;
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--purple-deep);
      margin-bottom: 0.4rem;
    }

    .form-group label .req {
      color: var(--magenta);
      margin-left: 2px;
    }

    .form-control {
      width: 100%;
      padding: 0.7rem 1rem;
      border: 1.5px solid var(--border);
      border-radius: var(--radius-sm);
      font-size: 0.9rem;
      color: var(--text);
      background: white;
      transition: border-color var(--transition), box-shadow var(--transition);
      outline: none;
    }

    .form-control:focus {
      border-color: var(--magenta);
      box-shadow: 0 0 0 3px rgba(215,0,253,.1);
    }

    .form-control.error {
      border-color: var(--error);
    }

    .form-error {
      font-size: 0.78rem;
      color: var(--error);
      margin-top: 0.35rem;
      display: none;
    }

    .form-error.visible { display: block; }

    textarea.form-control { resize: vertical; min-height: 100px; }

    select.form-control {
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235E6E85' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 1rem center;
      padding-right: 2.5rem;
    }

    .form-check {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      margin-bottom: 1.5rem;
    }

    .form-check input[type="checkbox"] {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
      margin-top: 1px;
      accent-color: var(--magenta);
      cursor: pointer;
    }

    .form-check label {
      font-size: 0.82rem;
      color: var(--muted);
      line-height: 1.55;
      cursor: pointer;
    }

    .form-check label a {
      color: var(--magenta);
      text-decoration: underline;
    }

    .form-success {
      text-align: center;
      padding: 3rem 2rem;
      display: none;
    }

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

    .form-success-icon {
      width: 64px;
      height: 64px;
      background: var(--magenta-pale);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
    }

    .form-success-icon svg { width: 28px; height: 28px; stroke: var(--magenta); fill: none; }

    .form-success h3 {
      font-family: var(--font-display);
      font-size: 1.6rem;
      color: var(--purple-deep);
      margin-bottom: 0.75rem;
    }

    .form-success p {
      color: var(--muted);
      line-height: 1.65;
    }

    /* ======================================================
       FOOTER
    ====================================================== */
    footer {
      background: var(--purple-deep);
      color: white;
      padding: 4rem 0 2rem;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem;
      margin-bottom: 3rem;
    }

    .footer-brand p {
      font-size: 0.855rem;
      color: rgba(255,255,255,.5);
      line-height: 1.7;
      margin-top: 1rem;
      max-width: 280px;
    }

    html[dir="rtl"] .footer-brand {
      text-align: right;
    }

    html[dir="rtl"] .footer-brand .footer-logo-link {
      width: fit-content;
      margin-left: auto;
      margin-right: 0;
    }

    html[dir="rtl"] .footer-brand p {
      margin-left: auto;
      margin-right: 0;
    }

    .footer-social {
      display: flex;
      gap: 1rem;
      margin-top: 1.25rem;
    }

    .footer-social a {
      color: rgba(255,255,255,.5);
      transition: color var(--transition);
      display: flex;
      align-items: center;
    }

    .footer-social a:hover {
      color: white;
    }

    .footer-col h4 {
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,.4);
      margin-bottom: 1.25rem;
    }

    .footer-col ul {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .footer-col ul li a {
      font-size: 0.875rem;
      color: rgba(255,255,255,.6);
      transition: color var(--transition);
      cursor: pointer;
    }

    .footer-col ul li a:hover { color: white; }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.1);
      padding-top: 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: gap;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .footer-bottom p {
      font-size: 0.8rem;
      color: rgba(255,255,255,.35);
    }

    .footer-bottom-links {
      display: flex;
      gap: 1.5rem;
    }

    .footer-bottom-links a {
      font-size: 0.8rem;
      color: rgba(255,255,255,.35);
      transition: color var(--transition);
      cursor: pointer;
    }

    .footer-bottom-links a:hover { color: rgba(255,255,255,.7); }

    /* ======================================================
       PRIVACY / COOKIE NOTICE
    ====================================================== */
    .cookie-banner {
      position: fixed;
      bottom: 1.5rem;
      left: 1.5rem;
      right: 1.5rem;
      max-width: 520px;
      background: var(--purple-deep);
      color: white;
      border-radius: var(--radius-md);
      padding: 1.5rem;
      z-index: 800;
      box-shadow: var(--shadow-lg);
      display: flex;
      gap: 1.5rem;
      align-items: flex-start;
      transition: opacity 400ms, transform 400ms;
    }

    .cookie-banner.hidden {
      opacity: 0;
      pointer-events: none;
      transform: translateY(1rem);
    }

    .cookie-text {
      flex: 1;
      font-size: 0.82rem;
      color: rgba(255,255,255,.75);
      line-height: 1.6;
    }

    .cookie-text a { color: var(--magenta-light); text-decoration: underline; }

    .cookie-actions {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      flex-shrink: 0;
    }

    /* ======================================================
       Animations & Scroll reveal
    ====================================================== */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 760ms cubic-bezier(.25,.46,.45,.94),
                  transform 760ms cubic-bezier(.25,.46,.45,.94);
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-delay-1 { transition-delay: 120ms; }
    .reveal-delay-2 { transition-delay: 240ms; }
    .reveal-delay-3 { transition-delay: 360ms; }
    .reveal-delay-4 { transition-delay: 480ms; }

    /* ======================================================
       Responsive
    ====================================================== */
    @media (max-width: 1024px) {
      .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
      .hero-visual { display: none; }
      .hero-content { padding: 7rem 0 4rem; }
      .ph-grid { grid-template-columns: repeat(2, 1fr); }
      .store-band-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .why-section { grid-template-columns: 1fr; gap: 3rem; }
      .contact-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .leadership-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .leadership-card--primary { grid-column: 1 / -1; grid-row: 1; }
    }

    @media (max-width: 768px) {
      .nav-links, .nav-cta, .nav-shop, .nav-actions > .nav-lang { display: none; }
      .nav-hamburger { display: flex; }
      .about-mission-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }
      .about-mission-item + .about-mission-item {
        border-inline-start: 0;
        border-top: 1px solid rgba(255,255,255,.14);
        padding-top: 2.5rem;
      }
      .ph-grid { grid-template-columns: 1fr; }
      .about-split { grid-template-columns: 1fr; gap: 2.5rem; }
      .about-values { grid-template-columns: 1fr; }
      .leadership-grid { grid-template-columns: 1fr; }
      .leadership-card--primary { grid-column: auto; grid-row: auto; }
      .form-row { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
      .why-metrics { grid-template-columns: 1fr 1fr; }
      .modal-specs-grid { grid-template-columns: 1fr; }
      .modal-info-link-row { justify-content: center; }
      .modal-footer {
        flex-direction: column-reverse;
        align-items: stretch;
      }
      .modal-footer > .btn,
      .modal-footer-cta .btn {
        width: 100%;
      }
      .modal-footer-cta {
        align-items: stretch;
        text-align: center;
      }
      .modal-footer-link {
        justify-content: center;
      }
      .footer-bottom { flex-direction: column; align-items: flex-start; }
    }

    @media (max-width: 480px) {
      .vp-grid { grid-template-columns: 1fr; }
    }

    /* Utility */
    .hidden { display: none !important; }
    .sr-only {
      position: absolute;
      width: 1px; height: 1px;
      padding: 0; margin: -1px;
      overflow: hidden;
      clip: rect(0,0,0,0);
      border: 0;
    }

    /* Homepage product cards and approach section */
    .ph-card-visual {
      height: 140px;
      background:
        radial-gradient(circle at 18% 18%, rgba(215,0,253,0.12), transparent 36%),
        linear-gradient(135deg, rgba(59,13,82,0.08) 0%, rgba(245,246,250,0.98) 78%);
      display: flex;
      align-items: center;
      justify-content: center;
      isolation: isolate;
    }

    .ph-card:nth-child(2) .ph-card-visual {
      background:
        radial-gradient(circle at 18% 18%, rgba(25,77,142,0.12), transparent 36%),
        linear-gradient(135deg, rgba(25,77,142,0.08) 0%, rgba(245,246,250,0.98) 78%);
    }

    .ph-card:nth-child(3) .ph-card-visual {
      background:
        radial-gradient(circle at 18% 18%, rgba(59,13,82,0.12), transparent 36%),
        linear-gradient(135deg, rgba(59,13,82,0.09) 0%, rgba(245,246,250,0.98) 78%);
    }

    .ph-card-visual::before {
      content: none;
    }

    .ph-card-visual::after {
      height: 1px;
      top: auto;
      background: linear-gradient(90deg, transparent, rgba(59,13,82,0.18), transparent);
    }

    .ph-card-visual-label {
      font-family: var(--font-display);
      position: absolute;
      inset-inline: 1rem;
      top: 50%;
      transform: translateY(-50%);
      font-size: clamp(1.9rem, 2.85vw, 2.8rem);
      font-weight: 300;
      color: rgba(59,13,82,0.16);
      letter-spacing: 0.08em;
      text-align: center;
      line-height: 1.1;
      padding: 0;
      user-select: none;
    }

    .ph-card:nth-child(2) .ph-card-visual-label {
      font-size: clamp(2rem, 3.2vw, 3.15rem);
    }

    .ph-card-body {
      padding: 1.7rem 1.85rem 1.85rem;
    }

    .approach-steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .approach-step {
      background: white;
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 2rem 1.75rem;
    }

    .approach-step-num {
      font-family: var(--font-display);
      font-size: 2.5rem;
      font-weight: 300;
      color: var(--magenta);
      line-height: 1;
      margin-bottom: 1rem;
    }

    .approach-step-title {
      font-size: 1rem;
      font-weight: 600;
      color: var(--purple-deep);
      margin-bottom: 0.5rem;
    }

    .approach-step-text {
      font-size: 0.875rem;
      color: var(--muted);
      line-height: 1.65;
    }


