﻿:root {
      --forest: #1a3a2e;
      --forest-mid: #2d5a44;
      --sage: #4a7c5f;
      --leaf: #6aab84;
      --mint: #a8d4b8;
      --mist: #e8f2ec;
      --cream: #f7f4ef;
      --warm-white: #fdfbf8;
      --charcoal: #1c1c1c;
      --stone: #4a4a4a;
      --pebble: #888;
      --gold: #c9a96e;
      --gold-light: #e8d5b0;
    }

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

    html { scroll-behavior: smooth; font-size: 16px; }

    body {
      font-family: 'DM Sans', sans-serif;
      background-color: var(--warm-white);
      color: var(--charcoal);
      overflow-x: hidden;
    }

    /* ── LANGUAGE TOGGLE ── */
    .lang-bar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 999;
      display: flex; justify-content: space-between; align-items: center;
      padding: 12px 48px;
      background: rgba(253,251,248,0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(106,171,132,0.15);
    }
    .logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem; font-weight: 600;
      color: var(--forest);
      letter-spacing: 0.02em;
    }
    .logo span { color: var(--leaf); }
    .lang-toggle {
      display: flex; gap: 4px;
      background: var(--mist);
      border-radius: 20px;
      padding: 3px;
    }
    .lang-btn {
      padding: 4px 14px; border: none; cursor: pointer;
      border-radius: 16px; font-size: 0.75rem; font-weight: 500;
      font-family: 'DM Sans', sans-serif;
      letter-spacing: 0.05em; text-transform: uppercase;
      background: transparent; color: var(--stone);
      transition: all 0.25s;
    }
    .lang-btn.active {
      background: var(--forest); color: white;
    }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      padding: 120px 48px 80px;
      position: relative;
      overflow: hidden;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      background: linear-gradient(145deg, var(--warm-white) 0%, var(--mist) 50%, var(--warm-white) 100%);
    }
    .hero-bg-img {
      position: absolute; inset: 0; z-index: 0; overflow: hidden;
    }
    .hero-bg-img img {
      width: 100%; height: 100%; object-fit: cover;
      opacity: 0.10; mix-blend-mode: multiply; filter: grayscale(20%);
    }

    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(106,171,132,0.12) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 10% 80%, rgba(168,212,184,0.10) 0%, transparent 70%);
      pointer-events: none;
    }

    /* Organic blob background */
    .hero-blob {
      position: absolute; right: -100px; top: 50%; transform: translateY(-50%);
      width: 680px; height: 680px; z-index: 0;
      opacity: 0.08;
    }

    .hero-content { position: relative; z-index: 2; }

    .eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em;
      text-transform: uppercase; color: var(--sage);
      border: 1px solid var(--mint);
      border-radius: 20px; padding: 5px 14px;
      margin-bottom: 28px;
      background: rgba(168,212,184,0.12);
    }
    .eyebrow-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--leaf);
      animation: pulse 2s ease-in-out infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(1.4); }
    }

    .hero h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.8rem, 5vw, 4.2rem);
      font-weight: 300;
      line-height: 1.1;
      color: var(--forest);
      margin-bottom: 24px;
      letter-spacing: -0.01em;
    }
    .hero h1 em {
      font-style: italic;
      color: var(--sage);
    }
    .hero h1 strong {
      font-weight: 600;
      display: block;
    }

    .hero-sub {
      font-size: 1.05rem; font-weight: 300;
      line-height: 1.7; color: var(--stone);
      max-width: 480px;
      margin-bottom: 40px;
      text-align: justify;
    }

    .cta-group { display: flex; gap: 14px; flex-wrap: wrap; }

    .btn-primary {
      display: inline-flex; align-items: center; gap: 10px;
      background: var(--forest);
      color: white;
      padding: 15px 30px;
      border-radius: 4px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.88rem; font-weight: 500;
      letter-spacing: 0.03em;
      text-decoration: none; border: none; cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 20px rgba(26,58,46,0.25);
    }
    .btn-primary:hover {
      background: var(--forest-mid);
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(26,58,46,0.35);
    }
    .btn-primary svg { transition: transform 0.3s; }
    .btn-primary:hover svg { transform: translateX(4px); }

    .btn-ghost {
      display: inline-flex; align-items: center; gap: 8px;
      background: transparent;
      color: var(--forest);
      padding: 15px 24px;
      border-radius: 4px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.88rem; font-weight: 400;
      letter-spacing: 0.03em;
      text-decoration: none; border: 1.5px solid var(--mint); cursor: pointer;
      transition: all 0.3s;
    }
    .btn-ghost:hover {
      border-color: var(--sage);
      background: var(--mist);
    }

    /* Hero right: visual */
    .hero-visual {
      position: relative; z-index: 2;
      display: flex; flex-direction: column; gap: 16px;
    }

    .bio-card {
      background: white;
      border-radius: 12px;
      padding: 20px 24px;
      box-shadow: 0 2px 20px rgba(26,58,46,0.08);
      border: 1px solid rgba(168,212,184,0.3);
      position: relative;
      overflow: hidden;
    }
    .bio-card::before {
      content: '';
      position: absolute; top: 0; left: 0;
      width: 3px; height: 100%;
      background: linear-gradient(to bottom, var(--leaf), var(--mint));
    }

    .bio-card-label {
      font-size: 0.68rem; font-weight: 500; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--pebble);
      margin-bottom: 8px;
    }
    .bio-signal {
      display: flex; align-items: center; gap: 12px;
    }
    .bio-signal-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem; color: var(--forest); font-weight: 600;
      min-width: 80px;
    }
    .signal-bar {
      flex: 1; height: 36px;
      position: relative;
    }
    .signal-svg { width: 100%; height: 100%; }

    .bio-value {
      font-size: 1.1rem; font-weight: 500; color: var(--sage);
      min-width: 64px; text-align: right;
    }

    .status-badge {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 0.72rem; font-weight: 500;
      padding: 3px 10px; border-radius: 20px;
      margin-top: 8px;
    }
    .status-active { background: rgba(106,171,132,0.15); color: var(--sage); }
    .status-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--leaf); }

    .live-indicator {
      position: absolute; top: 16px; right: 16px;
      display: flex; align-items: center; gap: 5px;
      font-size: 0.68rem; font-weight: 500; letter-spacing: 0.06em;
      color: var(--leaf); text-transform: uppercase;
    }
    .live-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--leaf);
      animation: pulse 1.5s ease-in-out infinite;
    }

    .stats-row {
      display: grid; grid-template-columns: 1fr 1fr 1fr;
      gap: 12px; margin-top: 4px;
    }
    .stat-mini {
      background: var(--mist);
      border-radius: 8px; padding: 12px;
      text-align: center;
    }
    .stat-mini-val {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem; font-weight: 600;
      color: var(--forest);
    }
    .stat-mini-label {
      font-size: 0.65rem; color: var(--pebble);
      margin-top: 2px; text-transform: uppercase; letter-spacing: 0.06em;
    }

    /* ── DIVIDER ── */
    .divider { width: 60px; height: 2px; background: var(--mint); margin: 0 auto; }

    /* ── TRUST BAR ── */
    .trust-bar {
      background: var(--forest);
      padding: 20px 48px;
      display: flex; align-items: center; justify-content: center;
      gap: 48px; flex-wrap: wrap;
    }
    .trust-item {
      display: flex; align-items: center; gap: 10px;
      color: rgba(255,255,255,0.75);
      font-size: 0.8rem; font-weight: 300;
      letter-spacing: 0.04em;
    }
    .trust-item svg { opacity: 0.6; }
    .trust-sep { width: 1px; height: 24px; background: rgba(255,255,255,0.15); }

    /* ── SECTIONS ── */
    section { padding: 100px 48px; }

    .section-inner { max-width: 1100px; margin: 0 auto; }

    .section-label {
      font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em;
      text-transform: uppercase; color: var(--sage);
      margin-bottom: 16px;
    }

    .section-h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 300;
      line-height: 1.15;
      color: var(--forest);
      margin-bottom: 20px;
    }
    .section-h2 em { font-style: italic; color: var(--sage); }

    .section-lead {
      font-size: 1rem; font-weight: 300; line-height: 1.8;
      color: var(--stone); max-width: 600px;
      text-align: justify;
    }

    /* ── PROBLEM SECTION ── */
    .problem-section { background: var(--cream); }

    .problem-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: center; margin-top: 60px;
    }

    .problem-quote {
      position: relative;
      padding: 32px 36px;
      border-left: 2px solid var(--mint);
      background: white;
      border-radius: 0 12px 12px 0;
    }
    .problem-quote blockquote {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.35rem; font-style: italic;
      line-height: 1.6; color: var(--forest);
      margin-bottom: 16px;
    }
    .problem-quote cite {
      font-size: 0.78rem; color: var(--pebble);
      letter-spacing: 0.06em; text-transform: uppercase;
    }

    .problem-points { display: flex; flex-direction: column; gap: 28px; }

    .problem-point {
      display: flex; gap: 18px; align-items: flex-start;
    }
    .problem-icon {
      width: 44px; height: 44px; flex-shrink: 0;
      border-radius: 8px;
      background: rgba(168,212,184,0.2);
      display: flex; align-items: center; justify-content: center;
    }
    .problem-point h4 {
      font-size: 0.92rem; font-weight: 500; color: var(--forest);
      margin-bottom: 6px;
    }
    .problem-point p {
      font-size: 0.88rem; font-weight: 300; line-height: 1.7; color: var(--stone);
      text-align: justify;
    }

    /* ── SOLUTION SECTION ── */
    .solution-section { background: var(--warm-white); }

    .solution-steps {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 2px; margin-top: 64px;
      border-radius: 16px; overflow: hidden;
      box-shadow: 0 4px 40px rgba(26,58,46,0.08);
    }

    .solution-step {
      background: white; padding: 44px 36px;
      position: relative; overflow: hidden;
      transition: all 0.3s;
    }
    .solution-step:hover {
      background: var(--mist);
    }
    .solution-step::before {
      content: attr(data-num);
      position: absolute; top: -10px; right: 20px;
      font-family: 'Cormorant Garamond', serif;
      font-size: 6rem; font-weight: 600;
      color: rgba(106,171,132,0.08);
      line-height: 1;
    }

    .step-icon {
      width: 52px; height: 52px;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--forest), var(--sage));
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 24px;
    }

    .solution-step h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem; font-weight: 600;
      color: var(--forest); margin-bottom: 12px;
    }
    .solution-step p {
      font-size: 0.88rem; font-weight: 300;
      line-height: 1.75; color: var(--stone);
      text-align: justify;
    }
    .step-tag {
      display: inline-block; margin-top: 16px;
      font-size: 0.68rem; font-weight: 500;
      letter-spacing: 0.08em; text-transform: uppercase;
      color: var(--sage); padding: 3px 10px;
      border: 1px solid var(--mint); border-radius: 20px;
    }

    /* ── TARGET SECTION ── */
    .target-section { background: var(--forest); color: white; }
    .target-section .section-h2 { color: white; }
    .target-section .section-h2 em { color: var(--mint); }
    .target-section .section-label { color: var(--mint); }

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

    .target-panel {
      padding: 52px 48px;
      position: relative; overflow: hidden;
      display: flex; flex-direction: column;
      height: 100%;
    }
    .target-panel:first-child {
      background: rgba(255,255,255,0.06);
      border-radius: 16px 0 0 16px;
    }
    .target-panel:last-child {
      background: rgba(255,255,255,0.03);
      border-radius: 0 16px 16px 0;
      border-left: 1px solid rgba(255,255,255,0.08);
    }

    .target-panel-label {
      display: flex; align-items: center; gap: 10px;
      font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--mint); margin-bottom: 20px;
    }
    .target-panel-label svg { opacity: 0.8; }

    .target-panel h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem; font-weight: 300;
      color: white; margin-bottom: 28px; line-height: 1.3;
    }
    .target-panel h3 strong { font-weight: 600; display: block; }

    .benefit-list { display: flex; flex-direction: column; gap: 14px; }
    .benefit-item {
      display: flex; gap: 12px; align-items: flex-start;
      font-size: 0.88rem; font-weight: 300; line-height: 1.6;
      color: rgba(255,255,255,0.75);
    }
    .benefit-check {
      width: 18px; height: 18px; flex-shrink: 0;
      border-radius: 50%;
      background: rgba(168,212,184,0.2);
      border: 1px solid rgba(168,212,184,0.4);
      display: flex; align-items: center; justify-content: center;
      margin-top: 2px;
    }

    .market-stat {
      margin-top: 36px;
      padding: 20px;
      background: rgba(201,169,110,0.12);
      border: 1px solid rgba(201,169,110,0.25);
      border-radius: 8px;
    }
    .market-stat-val {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.2rem; font-weight: 600; color: var(--gold);
    }
    .market-stat-desc {
      font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 4px;
    }

    .target-image-wrap {
      margin-top: auto;
      padding-top: 28px;
      border-radius: 10px;
      overflow: hidden;
      height: 208px;
    }
    .target-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      opacity: 0.85;
      display: block;
    }
    .target-image-investors {
      object-position: center;
      opacity: 0.75;
      filter: saturate(0.7);
    }
    /* ── SCIENCE SECTION ── */
    .science-section { background: var(--cream); }

    .science-grid {
      display: grid; grid-template-columns: 5fr 4fr;
      gap: 80px; align-items: center; margin-top: 60px;
    }

    .science-refs {
      display: flex; flex-direction: column; gap: 16px;
    }
    .science-ref {
      display: flex; gap: 14px; align-items: flex-start;
      padding: 16px 20px;
      background: white; border-radius: 8px;
      border: 1px solid rgba(168,212,184,0.3);
    }
    .ref-icon {
      width: 36px; height: 36px; flex-shrink: 0;
      border-radius: 6px;
      background: var(--mist);
      display: flex; align-items: center; justify-content: center;
    }
    .science-ref-title {
      font-size: 0.82rem; font-weight: 500; color: var(--forest); margin-bottom: 3px;
    }
    .science-ref-sub {
      font-size: 0.75rem; color: var(--pebble); font-weight: 300;
      text-align: justify;
    }

    .hitl-box {
      background: var(--forest);
      border-radius: 16px;
      padding: 40px;
      color: white;
    }
    .hitl-box h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem; font-weight: 300;
      margin-bottom: 8px;
    }
    .hitl-box h4 em { font-style: italic; color: var(--mint); }
    .hitl-desc {
      font-size: 0.88rem; font-weight: 300; line-height: 1.75;
      color: rgba(255,255,255,0.75); margin-bottom: 24px;
      text-align: justify;
    }
    .hitl-principle {
      display: flex; gap: 12px; align-items: center;
      padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
      font-size: 0.82rem; color: rgba(255,255,255,0.7); font-weight: 300;
    }
    .hitl-principle:last-child { border-bottom: none; }
    .hitl-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem; font-weight: 600; color: var(--mint);
      min-width: 24px;
    }

    /* ── LEAD MAGNET ── */
    .leadmagnet-section {
      background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 100%);
      position: relative; overflow: hidden;
    }
    .leadmagnet-section::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(106,171,132,0.15) 0%, transparent 70%);
    }

    .leadmagnet-inner {
      max-width: 1100px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: center;
      position: relative; z-index: 2;
    }

    .leadmagnet-inner .section-h2 { color: white; }
    .leadmagnet-inner .section-h2 em { color: var(--mint); }
    .leadmagnet-inner .section-label { color: var(--mint); }

    .leadmagnet-desc {
      font-size: 0.95rem; font-weight: 300; line-height: 1.8;
      color: rgba(255,255,255,0.75); margin-bottom: 28px;
      text-align: justify;
    }

    .lead-offers {
      display: flex; flex-direction: column; gap: 12px; margin-bottom: 0;
    }
    .lead-offer {
      display: flex; gap: 12px; align-items: flex-start;
    }
    .offer-tag {
      font-size: 0.65rem; font-weight: 500; letter-spacing: 0.08em;
      text-transform: uppercase; color: var(--gold);
      border: 1px solid rgba(201,169,110,0.4);
      padding: 2px 8px; border-radius: 20px; white-space: nowrap;
      margin-top: 2px;
    }
    .offer-text {
      font-size: 0.88rem; color: rgba(255,255,255,0.8); font-weight: 300; line-height: 1.5;
    }
    .offer-text strong { color: white; font-weight: 500; }

    .form-box {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 16px;
      padding: 44px 40px;
    }

    .form-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem; font-weight: 300; color: white;
      margin-bottom: 6px;
    }
    .form-sub {
      font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 28px;
    }

    .form-group { margin-bottom: 14px; }
    .form-group label {
      display: block; font-size: 0.75rem; font-weight: 500;
      color: rgba(255,255,255,0.6); letter-spacing: 0.06em;
      text-transform: uppercase; margin-bottom: 6px;
    }
    .form-group input, .form-group select {
      width: 100%; padding: 12px 16px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 6px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.88rem; color: white;
      outline: none; transition: border 0.2s;
      -webkit-appearance: none;
    }
    .form-group input::placeholder { color: rgba(255,255,255,0.35); }
    .form-group input:focus, .form-group select:focus {
      border-color: var(--mint);
    }
    .form-group select option { background: var(--forest); color: white; }

    .form-consent {
      display: flex; gap: 10px; align-items: flex-start;
      margin: 16px 0 20px;
    }
    .form-consent input[type="checkbox"] {
      width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px;
      accent-color: var(--leaf); cursor: pointer;
    }
    .form-consent label {
      font-size: 0.75rem; color: rgba(255,255,255,0.5); cursor: pointer;
      text-transform: none; letter-spacing: 0;
    }

    .btn-submit {
      width: 100%; padding: 15px;
      background: linear-gradient(135deg, var(--leaf), var(--sage));
      border: none; border-radius: 6px; cursor: pointer;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9rem; font-weight: 500; color: white;
      letter-spacing: 0.04em;
      transition: all 0.3s;
      box-shadow: 0 4px 20px rgba(106,171,132,0.3);
    }
    .btn-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(106,171,132,0.4);
    }

    /* ── FOOTER ── */
    footer {
      background: var(--charcoal);
      padding: 40px 48px;
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: 16px;
    }
    .footer-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem; font-weight: 600; color: white;
    }
    .footer-logo span { color: var(--mint); }
    .footer-copy {
      font-size: 0.75rem; color: rgba(255,255,255,0.35); font-weight: 300;
    }
    .footer-links {
      display: flex; gap: 24px;
    }
    .footer-links a {
      font-size: 0.75rem; color: rgba(255,255,255,0.4);
      text-decoration: none; letter-spacing: 0.04em;
      transition: color 0.2s;
    }
    .footer-links .privacy-link-btn {
      font-size: 0.75rem; color: rgba(255,255,255,0.4);
      letter-spacing: 0.04em; transition: color 0.2s;
      background: transparent; border: none; padding: 0; cursor: pointer;
      font-family: inherit;
    }
    .footer-links a:hover { color: var(--mint); }
    .footer-links .privacy-link-btn:hover { color: var(--mint); }

    .privacy-modal {
      position: fixed;
      inset: 0;
      z-index: 1400;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 20px;
      background: rgba(17, 26, 21, 0.74);
      backdrop-filter: blur(4px);
    }
    .privacy-modal.open { display: flex; }
    .privacy-modal-panel {
      width: min(920px, 100%);
      max-height: 88vh;
      border-radius: 14px;
      overflow: hidden;
      background: #fffdfa;
      box-shadow: 0 24px 64px rgba(9, 20, 15, 0.38);
      display: flex;
      flex-direction: column;
    }
    .privacy-modal-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 18px 22px;
      border-bottom: 1px solid rgba(26,58,46,0.14);
      background: #f4efe7;
    }
    .privacy-modal-head h2 {
      margin: 0;
      color: var(--forest);
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem;
    }
    .privacy-modal-close {
      border: 1px solid rgba(26,58,46,0.25);
      border-radius: 8px;
      padding: 8px 12px;
      color: var(--forest);
      background: #ffffff;
      font-size: 0.76rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      cursor: pointer;
    }
    .privacy-modal-content {
      padding: 20px 22px 24px;
      overflow-y: auto;
      color: #17382d;
      font-size: 0.92rem;
      line-height: 1.62;
    }
    .privacy-modal-content h3,
    .privacy-modal-content h4 {
      color: var(--forest);
      margin: 1.1em 0 0.4em;
    }
    .privacy-modal-content h3 { margin-top: 0.2em; }
    .privacy-modal-content p { margin: 0 0 0.75em; }
    .privacy-modal-content ul { margin: 0 0 0.9em 1.2em; }
    .privacy-modal-content a {
      color: #2e6f54;
      text-decoration: underline;
    }
    .privacy-modal-content article[hidden] { display: none; }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .lang-bar { padding: 12px 24px; }
      .hero { grid-template-columns: 1fr; padding: 100px 24px 60px; }
      .hero-visual { display: none; }
      section { padding: 72px 24px; }
      .problem-grid, .solution-steps, .target-grid,
      .science-grid, .leadmagnet-inner { grid-template-columns: 1fr; gap: 40px; }
      .target-panel:first-child { border-radius: 16px 16px 0 0; }
      .target-panel:last-child { border-radius: 0 0 16px 16px; border-left: none; border-top: 1px solid rgba(255,255,255,0.08); }
      .trust-bar { padding: 20px 24px; gap: 20px; }
      .trust-sep { display: none; }
      footer { flex-direction: column; align-items: flex-start; padding: 32px 24px; }
      .privacy-modal-panel { max-height: 92vh; }
      .privacy-modal-head,
      .privacy-modal-content { padding-left: 16px; padding-right: 16px; }
      .privacy-modal-head h2 { font-size: 1.18rem; }
    }

    /* ── ANIMATIONS ── */
    .fade-in {
      opacity: 0; transform: translateY(20px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .fade-in.visible { opacity: 1; transform: translateY(0); }

    /* Image placeholder styling */
    .img-placeholder {
      background: var(--mist);
      border: 2px dashed var(--mint);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      flex-direction: column; gap: 8px;
      color: var(--sage); font-size: 0.8rem;
      text-align: center; padding: 20px;
    }
    .img-placeholder-icon { font-size: 2rem; opacity: 0.5; }

    /* Wave SVG */
    .wave-sep {
      width: 100%; overflow: hidden; line-height: 0;
      background: var(--forest);
    }
    .wave-sep svg { display: block; }

    /* ── PRESS / DICONO DI NOI ── */
    .press-section {
      background: var(--cream);
      padding: 100px 48px;
    }

    .press-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-auto-rows: 1fr;
      gap: 24px;
      margin-top: 56px;
      align-items: stretch;
    }

    .press-card {
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 24px rgba(26,58,46,0.10);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      background: white;
      height: 100%;
    }
    .press-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 40px rgba(26,58,46,0.18);
    }
    .press-card--center {
      transform: none;
    }
    .press-card--center:hover {
      transform: translateY(-6px);
    }

    .press-card-inner {
      position: relative;
      overflow: hidden;
      height: 100%;
      min-height: 360px;
    }

    .press-img {
      width: 100%;
      display: block;
      height: 100%;
      object-fit: cover;
      object-position: top center;
      filter: grayscale(15%);
      transition: filter 0.4s ease, transform 0.4s ease;
    }
    .press-card:hover .press-img {
      filter: grayscale(0%);
      transform: scale(1.03);
    }

    .press-overlay {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      background: linear-gradient(to top, rgba(26,58,46,0.95) 0%, rgba(26,58,46,0.5) 60%, transparent 100%);
      padding: 28px 22px 22px;
    }

    .press-source-logo {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--mint);
      margin-bottom: 5px;
    }
    .press-source-logo--serif {
      font-family: 'Cormorant Garamond', serif;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: none;
    }

    .press-date {
      font-size: 0.68rem;
      color: rgba(255,255,255,0.5);
      letter-spacing: 0.06em;
      margin-bottom: 8px;
    }

    .press-headline {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.05rem;
      font-weight: 500;
      line-height: 1.35;
      color: white;
    }

    .press-story {
      margin: 44px auto 0;
      max-width: 1100px;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 20px;
    }

    .press-story-block {
      padding: 30px 26px;
      border-radius: 12px;
      background: white;
      border: 1px solid rgba(74,124,95,0.2);
      box-shadow: 0 8px 28px rgba(26,58,46,0.08);
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .press-story-text {
      font-size: 1rem;
      line-height: 1.8;
      color: var(--stone);
      text-align: left;
      margin: 0;
    }
    .press-story-text + .press-story-text {
      margin-top: 0;
    }

    .press-story-quote {
      margin: 0;
      padding: 14px 18px;
      border-left: 3px solid var(--leaf);
      background: rgba(168,212,184,0.1);
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.25rem, 2.3vw, 1.65rem);
      line-height: 1.45;
      color: var(--forest);
      letter-spacing: 0.01em;
      text-align: left;
    }

    .press-story-link {
      color: var(--forest);
      font-weight: 700;
      text-decoration: underline;
      text-underline-offset: 3px;
      transition: color 0.2s ease;
    }
    .press-story-link:hover {
      color: var(--sage);
    }

    @media (max-width: 900px) {
      .press-section { padding: 72px 24px; }
      .press-grid { grid-template-columns: 1fr; gap: 20px; }
      .press-card--center { transform: none; }
      .press-card--center:hover { transform: translateY(-6px); }
      .press-card-inner { min-height: 260px; }
      .press-story { margin-top: 28px; grid-template-columns: 1fr; gap: 16px; }
      .press-story-block { padding: 22px 18px; gap: 12px; }
      .press-story-text { line-height: 1.8; }
      .press-story-quote { margin: 0; padding: 12px 14px; }
    }



