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

    :root {
      --banner-h:     44px;
      --bg:           #0A0A0A;
      --bg-alt:       #0D0D0D;
      --card:         #131313;
      --card-hover:   #181818;
      --border:       rgba(255,255,255,0.06);
      --border-accent:rgba(255,107,53,0.35);
      --text:         #FFFFFF;
      --text-2:       #A0A0A0;
      --text-3:       #4A4A4A;
      --accent:       #FF6B35;
      --accent-dim:   rgba(255,107,53,0.10);
      --accent-glow:  rgba(255,107,53,0.18);
      --font-head:    'Outfit', sans-serif;
      --font-body:    'DM Sans', sans-serif;
      --radius:       12px;
      --radius-lg:    20px;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--font-body);
      font-size: 1rem;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    /* ─── UTILITIES ─────────────────────────────────── */
    .label {
      display: inline-block;
      font-family: var(--font-head);
      font-size: 0.89rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--accent);
    }
    .muted { color: var(--text-2); }
    .accent { color: var(--accent); }

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

    /* ─── LANGUAGE PICKER MODAL ─────────────────────── */
    #lang-modal {
      position: fixed;
      inset: 0;
      z-index: 400;
      background: rgba(0,0,0,0.70);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.35s ease;
    }
    #lang-modal.visible {
      opacity: 1;
      pointer-events: auto;
    }
    .lang-modal-card {
      background: rgba(18,18,18,0.96);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 22px;
      padding: 2.5rem 2.75rem 2.25rem;
      text-align: center;
      box-shadow: 0 40px 100px rgba(0,0,0,0.65), 0 0 0 1px rgba(255,107,53,0.06);
      transform: translateY(10px) scale(0.98);
      transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
    }
    #lang-modal.visible .lang-modal-card {
      transform: translateY(0) scale(1);
    }
    .lang-modal-label {
      font-family: var(--font-head);
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--text-2);
      margin-bottom: 1.75rem;
    }
    .lang-modal-options {
      display: flex;
      gap: 1rem;
    }
    .lang-opt {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.7rem;
      padding: 1.5rem 1.75rem;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 14px;
      cursor: pointer;
      transition: background 0.18s, border-color 0.18s, transform 0.15s, box-shadow 0.18s;
      min-width: 115px;
    }
    .lang-opt:hover {
      background: rgba(255,107,53,0.07);
      border-color: rgba(255,107,53,0.38);
      transform: translateY(-3px);
      box-shadow: 0 12px 32px rgba(255,107,53,0.12);
    }
    .lang-flag {
      font-size: 2.8rem;
      line-height: 1;
    }
    .lang-name {
      font-family: var(--font-head);
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--text);
      letter-spacing: 0.02em;
    }

    /* ─── NAV ───────────────────────────────────────── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.65rem 3rem;
      background: rgba(10,10,10,0.8);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
    }

    .nav-logo {
      font-family: var(--font-head);
      font-size: 1.43rem;
      font-weight: 700;
      color: var(--text);
      text-decoration: none;
      letter-spacing: -0.02em;
    }
    .nav-logo span { color: var(--accent); }

    .nav-links {
      display: flex;
      gap: 2.5rem;
      list-style: none;
    }
    .nav-links a {
      font-size: 0.95rem;
      font-weight: 400;
      color: var(--text-2);
      text-decoration: none;
      transition: color 0.2s;
      letter-spacing: 0.01em;
    }
    .nav-links a:hover { color: var(--text); }

    .nav-cta {
      font-family: var(--font-head);
      font-size: 0.92rem;
      font-weight: 600;
      color: var(--text);
      background: var(--accent);
      padding: 0.6rem 1.3rem;
      border-radius: 8px;
      text-decoration: none;
      transition: background 0.2s, transform 0.15s;
      white-space: nowrap;
    }
    .nav-cta:hover { background: #ff8855; transform: translateY(-1px); }

    html[lang="de"] .nav-cta {
      white-space: normal;
      text-align: center;
      line-height: 1.22;
    }

    .lang-switch {
      display: flex;
      align-items: center;
      gap: 0.4rem;
      margin-left: 0.5rem;
    }
    .lang-opt {
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      color: var(--text-3);
      text-decoration: none;
      transition: color 0.2s;
    }
    .lang-opt:hover { color: var(--text); }
    .lang-opt.active { color: var(--accent); }
    .lang-divider { color: var(--text-3); font-size: 0.75rem; }

    /* ─── DIVIDER ────────────────────────────────────── */
    .divider {
      height: 1px;
      background: var(--border);
      margin: 0 3rem;
    }

    /* ─── SECTION BASE ───────────────────────────────── */
    section {
      position: relative;
      z-index: 1;
      padding: 7rem 3rem;
      scroll-margin-top: 5rem;
    }
    section.alt { background: var(--bg-alt); }

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

    .section-header {
      margin-bottom: 4rem;
    }
    .section-header h2 {
      font-family: var(--font-head);
      font-size: clamp(2.2rem, 4vw, 3.5rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1.1;
      margin-top: 0.75rem;
    }

    /* ─── MARKET THESIS ──────────────────────────────── */
    #thesis .thesis-statement {
      font-family: var(--font-head);
      font-size: clamp(2.5rem, 5vw, 4.5rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1.05;
      margin-bottom: 3rem;
    }
    #thesis .thesis-statement em {
      font-style: normal;
      color: var(--text-2);
    }

    .thesis-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
      max-width: 990px;
    }

    .thesis-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 2.2rem;
    }
    .thesis-card.active {
      border-color: var(--border-accent);
      background: linear-gradient(135deg, #131313, #160f0a);
    }

    .thesis-card-label {
      font-size: 0.79rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 1.2rem;
    }
    .thesis-card.active .thesis-card-label { color: var(--accent); }
    .thesis-card:not(.active) .thesis-card-label { color: var(--text-3); }

    .thesis-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }
    .thesis-list li {
      font-size: 1.19rem;
      color: var(--text-2);
      display: flex;
      gap: 0.7rem;
      align-items: flex-start;
      line-height: 1.4;
    }
    .thesis-card.active .thesis-list li { color: #d0d0d0; }
    .thesis-list li::before {
      content: '—';
      color: var(--text-3);
      flex-shrink: 0;
      margin-top: 0.05em;
    }
    .thesis-card.active .thesis-list li::before { content: '✓'; color: var(--accent); }

    .thesis-closing {
      margin-top: 3rem;
      font-family: var(--font-head);
      font-size: 1rem;
      font-weight: 600;
      color: var(--accent);
      letter-spacing: 0.01em;
    }

    /* ─── PRODUCT ────────────────────────────────────── */
    #product .product-intro {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
      margin-bottom: 5rem;
    }

    #product h2 {
      font-family: var(--font-head);
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1.1;
      margin-top: 0.75rem;
      margin-bottom: 1.5rem;
    }

    #product .product-desc {
      font-size: 1.2rem;
      color: var(--text-2);
      line-height: 1.75;
      font-weight: 300;
    }

    .flow-diagram {
      display: flex;
      align-items: center;
      gap: 0;
    }

    .flow-node {
      flex: 1;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.5rem;
      text-align: center;
      transition: border-color 0.3s;
    }
    .flow-node:hover { border-color: rgba(255,255,255,0.12); }
    .flow-node.center {
      border-color: var(--border-accent);
      background: linear-gradient(135deg, #131313, #160f0a);
      box-shadow: 0 0 40px var(--accent-dim);
    }

    .flow-icon {
      font-size: 1.65rem;
      margin-bottom: 0.5rem;
    }
    .flow-label {
      font-family: var(--font-head);
      font-size: 0.79rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-3);
      margin-bottom: 0.4rem;
    }
    .flow-node.center .flow-label { color: var(--accent); }
    .flow-name {
      font-family: var(--font-head);
      font-size: 0.99rem;
      font-weight: 700;
      color: var(--text);
    }
    .flow-items {
      margin-top: 0.5rem;
      display: flex;
      flex-direction: column;
      gap: 0.2rem;
    }
    .flow-item {
      font-size: 0.75rem;
      color: var(--text-3);
    }

    .flow-arrow {
      flex-shrink: 0;
      width: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-3);
      font-size: 1.2rem;
    }

    .product-statement {
      font-family: var(--font-head);
      font-size: clamp(1.2rem, 2vw, 1.6rem);
      font-weight: 700;
      color: var(--text-2);
      text-align: center;
      max-width: 720px;
      margin: 4rem auto 0;
      line-height: 1.4;
      letter-spacing: -0.02em;
    }
    .product-statement strong { color: var(--text); }

    /* ─── HOW IT WORKS ───────────────────────────────── */
    #how .steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      position: relative;
    }

    #how .steps::before {
      content: '';
      position: absolute;
      top: 1.25rem;
      left: calc(16.66% + 1.75rem);
      right: calc(50% + 1.75rem);
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--accent));
      z-index: 0;
    }
    #how .steps::after {
      content: '';
      position: absolute;
      top: 1.25rem;
      left: calc(50% + 1.75rem);
      right: calc(16.66% + 1.75rem);
      height: 1px;
      background: linear-gradient(90deg, var(--border), var(--accent));
      z-index: 0;
    }

    .step {
      position: relative;
      z-index: 1;
    }

    #how .step:first-child .step-num::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 100%;
      width: 3rem;
      height: 1px;
      background: linear-gradient(90deg, var(--accent), transparent);
      transform: translateY(-50%);
    }

    .step-num {
      font-family: var(--font-head);
      position: relative;
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--accent);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 50%;
      border: 1px solid var(--border-accent);
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--bg);
      margin-bottom: 1.5rem;
    }

    .step h3 {
      font-family: var(--font-head);
      font-size: 1.24rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      margin-bottom: 0.75rem;
    }

    .step p {
      font-size: 1.17rem;
      color: var(--text-2);
      line-height: 1.65;
      font-weight: 300;
    }

    .steps-footnote {
      margin-top: 3rem;
      font-size: 1.05rem;
      color: var(--text-2);
      text-align: center;
      font-style: italic;
    }

    /* ─── USE CASES ──────────────────────────────────── */
    #usecases .cases-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }

    .case-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 1.75rem 2.25rem;
      transition: border-color 0.25s, background 0.25s, transform 0.2s;
      cursor: default;
    }
    .case-card:hover {
      border-color: var(--border-accent);
      background: var(--card-hover);
      transform: translateY(-3px);
    }

    .case-icon {
      font-size: 1.8rem;
      margin-bottom: 0.9rem;
      display: block;
    }

    .case-card h3 {
      font-family: var(--font-head);
      font-size: 1.1rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      margin-bottom: 0.6rem;
    }

    .case-card p {
      font-size: 1.15rem;
      color: var(--text-2);
      line-height: 1.65;
      font-weight: 300;
    }

    .cases-footnote {
      margin-top: 2.5rem;
      font-size: 1.1rem;
      color: var(--text-2);
      font-style: italic;
      text-align: center;
    }

    /* ─── OFFER ──────────────────────────────────────── */
    #offer .offer-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 3rem;
      align-items: start;
    }

    .offer-price {
      margin: 1.5rem 0 2.5rem;
    }
    .offer-amount {
      font-family: var(--font-head);
      font-size: 3.5rem;
      font-weight: 800;
      letter-spacing: -0.04em;
      line-height: 1;
    }
    .offer-amount sup {
      font-size: 1.5rem;
      vertical-align: super;
      font-weight: 600;
    }
    .offer-recurring {
      font-size: 1.02rem;
      color: var(--text-2);
      margin-top: 0.35rem;
    }

    .offer-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .offer-list li {
      display: flex;
      gap: 1rem;
      font-size: 1.08rem;
      line-height: 1.5;
      color: var(--text-2);
    }
    .offer-check {
      color: var(--accent);
      font-weight: 700;
      flex-shrink: 0;
      margin-top: 0.1em;
    }
    .offer-list li strong { color: var(--text); font-weight: 500; }

    .guarantee-box {
      background: linear-gradient(135deg, #131313, #160f0a);
      border: 1px solid var(--border-accent);
      border-radius: var(--radius-lg);
      padding: 2.5rem;
      position: sticky;
      top: 7rem;
      margin-top: 3.5rem;
    }

    .guarantee-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.76rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 1.25rem;
    }
    .guarantee-badge::before {
      content: '';
      display: block;
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 8px var(--accent);
    }

    .guarantee-box h3 {
      font-family: var(--font-head);
      font-size: 1.37rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      margin-bottom: 1rem;
      line-height: 1.3;
    }

    .guarantee-box p {
      font-size: 1.11rem;
      color: var(--text-2);
      line-height: 1.7;
      font-weight: 300;
      margin-bottom: 1.5rem;
    }

    .guarantee-box .btn-primary {
      width: 100%;
      justify-content: center;
    }

    .guarantee-fine {
      margin-top: 0.75rem;
      font-size: 0.98rem;
      color: var(--text-2);
      text-align: center;
    }

    .guarantee-closing {
      font-size: 1rem;
      font-weight: 600;
      color: var(--text);
      font-style: italic;
      margin-bottom: 1.5rem !important;
    }

    .scarcity-line {
      margin-top: 0.85rem;
      font-size: 0.95rem;
      color: var(--text-2);
      text-align: center;
      line-height: 1.5;
    }
    .scarcity-line strong { color: var(--accent); }

    .price-anchor {
      font-size: 1rem;
      color: var(--text-2);
      line-height: 1.6;
      margin: 1rem 0 0;
    }

    .value-tag {
      display: inline-block;
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--accent);
      opacity: 0.7;
      margin-left: 0.4rem;
      white-space: nowrap;
    }

    .offer-bonuses {
      margin-top: 1.75rem;
      padding-top: 1.5rem;
      border-top: 1px solid var(--border);
    }

    .bonus-divider {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 1rem;
    }

    .bonus-check {
      font-size: 0.85rem;
    }

    .offer-total {
      margin-top: 1.75rem;
      padding: 1rem 1.25rem;
      background: linear-gradient(135deg, #131313, #160f0a);
      border: 1px solid var(--border-accent);
      border-radius: var(--radius);
      display: flex;
      align-items: center;
      gap: 0.75rem;
      flex-wrap: wrap;
    }

    .offer-total-label {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-2);
    }

    .offer-total-amount {
      font-family: var(--font-head);
      font-size: 1.4rem;
      font-weight: 800;
      color: var(--text-2);
      text-decoration: line-through;
      opacity: 0.7;
    }

    .offer-total-divider {
      color: var(--border);
    }

    .offer-total-yours {
      font-size: 1rem;
      color: var(--text-2);
    }
    .offer-total-yours strong {
      color: var(--accent);
      font-weight: 700;
    }

    /* ─── ABOUT ──────────────────────────────────────── */
    #about .about-grid {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 5rem;
      align-items: center;
    }

    .about-photo-wrap {
      position: relative;
    }

    .about-photo {
      width: 100%;
      aspect-ratio: 3/4;
      background: var(--card);
      border-radius: var(--radius-lg);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-3);
      font-size: 0.85rem;
      font-style: italic;
      overflow: hidden;
    }

    .about-photo-badge {
      position: absolute;
      bottom: -1px;
      left: -1px;
      background: var(--accent);
      color: var(--text);
      font-family: var(--font-head);
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 0.5rem 1rem;
      border-radius: 0 var(--radius) 0 var(--radius-lg);
    }

    .about-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin-top: 2.5rem;
    }
    .about-stat {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.2rem;
    }
    .about-stat-val {
      font-family: var(--font-head);
      font-size: 1rem;
      font-weight: 700;
      color: var(--accent);
      line-height: 1.2;
    }
    .about-stat-label {
      font-size: 0.97rem;
      color: var(--text-2);
      margin-top: 0.2rem;
    }

    #about h2 {
      font-family: var(--font-head);
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1.1;
      margin: 0.75rem 0 1.75rem;
    }

    .about-body {
      font-size: 1.14rem;
      color: var(--text-2);
      line-height: 1.8;
      font-weight: 300;
    }
    .about-body p + p { margin-top: 1rem; }
    .about-body strong { color: var(--text); font-weight: 500; }

    /* ─── FINAL CTA ──────────────────────────────────── */
    #cta {
      padding: 10rem 3rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    #cta::before {
      content: '';
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 700px; height: 400px;
      background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 65%);
      pointer-events: none;
    }

    #cta h2 {
      font-family: var(--font-head);
      font-size: clamp(2.5rem, 5vw, 4.5rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1.05;
      max-width: 800px;
      margin: 0 auto 1.5rem;
      position: relative;
    }
    #cta h2 em { font-style: normal; color: var(--text-2); }

    #cta .cta-sub {
      font-size: 1.2rem;
      color: var(--text-2);
      max-width: 500px;
      margin: 0 auto 3rem;
      font-weight: 300;
      line-height: 1.7;
      position: relative;
    }

    #cta .btn-primary {
      font-size: 1rem;
      padding: 1rem 2.2rem;
      position: relative;
    }

    #cta .cta-fine {
      margin-top: 1.2rem;
      font-size: 0.96rem;
      color: var(--text-3);
      position: relative;
    }

    /* ─── FOOTER ─────────────────────────────────────── */
    footer {
      border-top: 1px solid var(--border);
      padding: 2.5rem 3rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: relative;
      z-index: 1;
    }
    footer .footer-logo {
      font-family: var(--font-head);
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--text-2);
    }
    footer .footer-logo span { color: var(--accent); }
    footer .footer-copy {
      font-size: 0.75rem;
      color: var(--text-3);
    }
    footer .footer-links {
      display: flex;
      gap: 2rem;
      list-style: none;
    }
    footer .footer-links a {
      font-size: 0.8rem;
      color: var(--text-3);
      text-decoration: none;
      transition: color 0.2s;
    }
    footer .footer-links a:hover { color: var(--text-2); }

    /* ─── MANAGEMENT CONSULTANT ─────────────────────── */
    .consultant-lead {
      font-size: 1.25rem;
      color: var(--text-2);
      line-height: 1.75;
      font-weight: 300;
      max-width: 860px;
      margin: 2rem 0 3rem;
    }

    .consultant-cards {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      margin-bottom: 3rem;
    }

    .consultant-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 2rem 1.75rem;
      transition: border-color 0.25s, background 0.25s, transform 0.2s;
    }
    .consultant-card:hover {
      border-color: var(--border-accent);
      background: var(--card-hover);
      transform: translateY(-3px);
    }

    .ccard-icon {
      font-size: 1.98rem;
      margin-bottom: 1rem;
    }

    .consultant-card h4 {
      font-family: var(--font-head);
      font-size: 1.16rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      margin-bottom: 0.75rem;
    }

    .consultant-card p {
      font-size: 1.06rem;
      color: var(--text-2);
      line-height: 1.65;
      font-weight: 300;
    }

    .consultant-quote {
      font-family: var(--font-head);
      font-size: clamp(1.1rem, 1.8vw, 1.5rem);
      font-weight: 700;
      color: var(--text-2);
      border-left: 3px solid var(--accent);
      padding-left: 1.5rem;
      max-width: 780px;
      line-height: 1.45;
      letter-spacing: -0.02em;
      font-style: normal;
    }

    /* ─── PRIVACY & SECURITY ─────────────────────────── */
    .privacy-intro {
      font-size: 1.15rem;
      color: var(--text-2);
      margin-top: 1rem;
      font-weight: 300;
    }

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

    .privacy-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 1.75rem 2.25rem;
      transition: border-color 0.25s, background 0.25s, transform 0.2s;
    }
    .privacy-card:hover {
      border-color: var(--border-accent);
      background: var(--card-hover);
      transform: translateY(-3px);
    }

    .privacy-icon {
      font-size: 2.12rem;
      margin-bottom: 0.9rem;
    }

    .privacy-card h3 {
      font-family: var(--font-head);
      font-size: 1.17rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      margin-bottom: 0.6rem;
    }

    .privacy-card p {
      font-size: 1.08rem;
      color: var(--text-2);
      line-height: 1.7;
      font-weight: 300;
    }

    .privacy-statement {
      max-width: 780px;
    }

    .privacy-statement-inner {
      background: linear-gradient(135deg, #131313, #160f0a);
      border: 1px solid var(--border-accent);
      border-radius: var(--radius-lg);
      padding: 2rem 2.5rem;
      display: flex;
      align-items: flex-start;
      gap: 1.2rem;
    }

    .privacy-statement-icon {
      font-size: 1.5rem;
      flex-shrink: 0;
      margin-top: 0.1rem;
    }

    .privacy-statement-inner p {
      font-family: var(--font-head);
      font-size: 1.1rem;
      font-weight: 500;
      color: var(--text);
      line-height: 1.5;
      letter-spacing: -0.01em;
    }

    /* ─── FAQ ───────────────────────────────────────── */
    #faq .faq-list {
      max-width: 800px;
      display: flex;
      flex-direction: column;
      gap: 0;
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      overflow: hidden;
    }

    .faq-item {
      border-bottom: 1px solid var(--border);
    }
    .faq-item:last-child { border-bottom: none; }

    .faq-q {
      width: 100%;
      background: var(--card);
      border: none;
      padding: 1.5rem 1.75rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
      cursor: pointer;
      text-align: left;
      font-family: var(--font-head);
      font-size: 1.08rem;
      font-weight: 600;
      color: var(--text);
      letter-spacing: -0.01em;
      transition: background 0.2s, color 0.2s;
    }
    .faq-q:hover { background: var(--card-hover); }
    .faq-item.open .faq-q { color: var(--accent); background: var(--card-hover); }

    .faq-icon {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
      position: relative;
    }
    .faq-icon::before,
    .faq-icon::after {
      content: '';
      position: absolute;
      background: currentColor;
      border-radius: 2px;
      transition: transform 0.25s, opacity 0.25s;
    }
    .faq-icon::before { width: 18px; height: 1.5px; top: 50%; left: 0; transform: translateY(-50%); }
    .faq-icon::after  { width: 1.5px; height: 18px; top: 0; left: 50%; transform: translateX(-50%); }
    .faq-item.open .faq-icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease, padding 0.25s;
    }
    .faq-item.open .faq-a { max-height: 400px; }

    .faq-a p {
      padding: 0 1.75rem 1.5rem;
      font-size: 1.08rem;
      color: var(--text-2);
      line-height: 1.75;
      font-weight: 300;
    }

    /* ─── COOKIE BANNER ──────────────────────────────── */
    .cookie-banner {
      position: fixed;
      bottom: 1.5rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 9999;
      width: calc(100% - 3rem);
      max-width: 860px;
      background: #1a1a1a;
      border: 1px solid var(--border-accent);
      border-radius: var(--radius-lg);
      padding: 1.25rem 1.5rem;
      box-shadow: 0 8px 40px rgba(0,0,0,0.6);
      transition: opacity 0.4s, transform 0.4s;
    }
    .cookie-banner--out {
      opacity: 0;
      transform: translateX(-50%) translateY(1rem);
    }

    .cookie-banner-inner {
      display: flex;
      align-items: center;
      gap: 2rem;
      flex-wrap: wrap;
    }

    .cookie-banner-text {
      flex: 1;
      font-size: 0.93rem;
      color: var(--text-2);
      line-height: 1.6;
      min-width: 200px;
    }

    .cookie-banner-link {
      color: var(--accent);
      text-decoration: none;
    }
    .cookie-banner-link:hover { text-decoration: underline; }

    .cookie-banner-actions {
      display: flex;
      gap: 0.75rem;
      flex-shrink: 0;
    }

    .cookie-btn {
      font-family: var(--font-head);
      font-size: 0.86rem;
      font-weight: 600;
      padding: 0.6rem 1.2rem;
      border-radius: 8px;
      border: 1px solid var(--border);
      cursor: pointer;
      transition: background 0.2s, border-color 0.2s, color 0.2s;
      white-space: nowrap;
    }
    .cookie-btn-reject {
      background: transparent;
      color: var(--text-2);
    }
    .cookie-btn-reject:hover {
      background: rgba(255,255,255,0.05);
      color: var(--text);
      border-color: rgba(255,255,255,0.15);
    }
    .cookie-btn-accept {
      background: var(--accent);
      color: var(--text);
      border-color: var(--accent);
    }
    .cookie-btn-accept:hover { background: #ff8855; border-color: #ff8855; }

    @media (max-width: 600px) {
      .cookie-banner { bottom: 0; left: 0; right: 0; width: 100%; max-width: 100%; border-radius: var(--radius-lg) var(--radius-lg) 0 0; transform: none; }
      .cookie-banner--out { transform: translateY(1rem); }
      .cookie-banner-inner { flex-direction: column; gap: 1rem; align-items: flex-start; }
      .cookie-banner-actions { width: 100%; }
      .cookie-btn { flex: 1; text-align: center; }
    }

    /* ─── SCROLL REVEAL ──────────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: none;
    }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* ─── RESPONSIVE ─────────────────────────────────── */
    /* hero.css loads after site.css, so mobile hero overrides use !important
       to win the cascade. These rules are inside max-width: 900px — desktop
       (wider viewports) is never affected. */
    .mob-step { display: none; }

    @media (max-width: 900px) {
      nav { padding: 1rem 1.5rem; }
      .nav-links { display: none; }
      section { padding: 5rem 1.5rem; }
      .divider { margin: 0 1.5rem; }

      /* ── Hero: pinned scroll sequence ── */
      #hero { padding: 0; }
      #hero-inner {
        display: block !important;
        height: 100dvh !important;
        min-height: 100dvh;
        overflow: hidden !important;
        padding: 0 !important;
        gap: 0;
      }
      .hcallout { display: none !important; }
      #hero-svg  { display: none !important; }

      /* Phone — centered via left offset (no CSS transform, keeps GSAP's y free) */
      #phone-wrapper {
        position: absolute !important;
        top: max(5rem, 16dvh);
        width: min(175px, 46vw) !important;
        left: calc(50% - min(87.5px, 23vw)) !important;
        flex-shrink: initial !important;
        opacity: 0;
        visibility: hidden;
      }

      /* One message fills the full chat area; GSAP shows one at a time */
      #hpd-chat-area {
        position: relative !important;
        flex: 1 !important;
        gap: 0 !important;
        padding: 0 !important;
      }
      .hpd-msg {
        position: absolute !important;
        inset: 0 !important;
        flex: none !important;
        min-height: unset !important;
        border-radius: 0 !important;
        border-left: none !important;
        opacity: 0;
        visibility: hidden;
      }

      /* Dynamic Island integration — screen fills up to phone top, DI sits in header */
      #screen-bg      { top: 2% !important; }
      #hpd-msgs-layer { top: 2% !important; }
      #hpd-header     { padding-top: 3rem !important; }

      /* Hero copy — full-width, centered, visible on load */
      #hero-copy {
        position: absolute !important;
        inset: 0 !important;
        max-width: 100% !important;
        padding: 0 1.75rem !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center;
        background: none !important;
        pointer-events: none;
        z-index: 20;
      }
      .hero-headline { font-size: clamp(2.6rem, 10.5vw, 4rem) !important; }
      .hero-sub      { max-width: 100% !important; font-size: 1.05rem; }

      /* Step cards — GSAP reveals one at a time */
      .mob-step {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        position: absolute;
        top: 78dvh; bottom: 0; left: 0; right: 0;
        padding: 0 1.5rem 2.5rem;
        background: linear-gradient(to top, rgba(10,10,10,0.97) 55%, transparent 100%);
        z-index: 30;
        pointer-events: none;
        opacity: 0;
        visibility: hidden;
      }
      .mob-step-num {
        font-family: var(--font-head);
        font-size: 0.78rem; font-weight: 700;
        letter-spacing: 0.16em; text-transform: uppercase;
        color: var(--accent);
        display: block; margin-bottom: 0.5rem;
      }
      .mob-step h3 {
        font-family: var(--font-head);
        font-size: 1.35rem; font-weight: 700;
        letter-spacing: -0.02em; line-height: 1.3;
        margin-bottom: 0.4rem; color: var(--text);
      }
      .mob-step p {
        font-size: 0.93rem; color: #C8C8C8;
        line-height: 1.55; font-weight: 300;
      }

      .thesis-cards { grid-template-columns: 1fr; }
      #product .product-intro { grid-template-columns: 1fr; gap: 3rem; }
      .flow-diagram { flex-direction: column; }
      .flow-arrow { transform: rotate(90deg); }
      #how .steps { grid-template-columns: 1fr; }
      #how .steps::before, #how .steps::after { display: none; }
      #usecases .cases-grid { grid-template-columns: 1fr; }
      #offer .offer-grid { grid-template-columns: 1fr; }
      .guarantee-box { position: static; padding: 1.75rem 1.5rem; }
      .guarantee-box .btn-primary { white-space: nowrap; font-size: 0.88rem; padding-left: 1.2rem; padding-right: 1.2rem; }
      #about .about-grid { grid-template-columns: 1fr; }
      footer { flex-direction: column; gap: 1.5rem; text-align: center; }
      .consultant-cards { grid-template-columns: 1fr; }
      .privacy-grid { grid-template-columns: 1fr; }
      #consultant { padding-top: 7.5rem; }
      #cta { padding: 5rem 1.5rem; }

    }

