.elementor-2745 .elementor-element.elementor-element-c8a6229{--display:flex;}/* Start custom CSS for html, class: .elementor-element-cdb01dc *//* ══════════════════════════════════════════
       DESIGN TOKENS — Head Spa Berlin
       Colors matched to VAMP Professional Beauty
    ══════════════════════════════════════════ */
    :root {
      /* Primary palette — from existing site */
      --green-deep: #0f3d2e;
      --green-mid: #1a5c42;
      --green-light: #2a7a5a;
      --pink-soft: #e4a0b4;
      --pink-warm: #d4868f;
      --pink-blush: #f0c4cc;
      --gold: #c8a96e;
      --gold-light: #dfc493;
      --cream: #faf6f0;
      --white: #ffffff;
      --text-dark: #1a1a1a;
      --text-muted: #6b6b6b;

      /* Typography */
      --font-display: 'Cormorant Garamond', Georgia, serif;
      --font-body: 'Jost', 'Segoe UI', sans-serif;

      /* Spacing */
      --space-xs: 0.5rem;
      --space-sm: 1rem;
      --space-md: 1.5rem;
      --space-lg: 3rem;
      --space-xl: 5rem;
      --space-2xl: 8rem;

      /* Radius */
      --radius-sm: 4px;
      --radius-md: 8px;
      --radius-lg: 16px;
      --radius-xl: 24px;
    }

    /* ══════════════════════════════════════════
       RESET & BASE
    ══════════════════════════════════════════ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html {
      scroll-behavior: smooth;
      font-size: 16px;
    }

    body {
      font-family: var(--font-body);
      font-weight: 300;
      color: var(--white);
      line-height: 1.65;
      background: var(--green-deep);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      touch-action: manipulation;
      -webkit-tap-highlight-color: rgba(200, 169, 110, 0.15);
    }

    img { max-width: 100%; height: auto; display: block; }
    a { text-decoration: none; color: inherit; }

    /* Skip link — accessibility */
    .skip-link {
      position: absolute;
      top: -100%;
      left: 1rem;
      z-index: 10000;
      padding: 0.75rem 1.5rem;
      background: var(--gold);
      color: var(--green-deep);
      font-weight: 600;
      font-size: 0.9rem;
      border-radius: var(--radius-md);
      transition: top 0.2s ease;
    }
    .skip-link:focus {
      top: 1rem;
    }

    /* Focus-visible — Web Guidelines compliance */
    :focus-visible {
      outline: 2px solid var(--gold);
      outline-offset: 3px;
      border-radius: 2px;
    }
    :focus:not(:focus-visible) {
      outline: none;
    }

    /* Scroll anchors — heading anchor offset for fixed nav */
    [id] {
      scroll-margin-top: 5rem;
    }

    /* ══════════════════════════════════════════
       UTILITY
    ══════════════════════════════════════════ */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 clamp(1.25rem, 4vw, 3rem);
    }

    .section-label {
      font-family: var(--font-body);
      font-weight: 500;
      font-size: 0.85rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: var(--space-sm);
    }

    .section-title {
      font-family: var(--font-display);
      font-weight: 500;
      font-size: clamp(2rem, 4.5vw, 3.2rem);
      line-height: 1.2;
      margin-bottom: var(--space-md);
      text-wrap: balance;
    }

    .section-subtitle {
      font-size: 1.05rem;
      font-weight: 300;
      color: rgba(255,255,255,0.85);
      max-width: 620px;
      line-height: 1.7;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.9rem 2rem;
      border-radius: 50px;
      font-family: var(--font-body);
      font-weight: 500;
      font-size: 0.95rem;
      letter-spacing: 0.03em;
      cursor: pointer;
      border: none;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--pink-soft), var(--pink-warm));
      color: var(--white);
      box-shadow: 0 4px 20px rgba(228, 160, 180, 0.3);
    }
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(228, 160, 180, 0.45);
    }
    .btn-primary:active {
      transform: translateY(0);
      box-shadow: 0 2px 12px rgba(228, 160, 180, 0.3);
    }

    .btn-outline {
      background: transparent;
      color: var(--white);
      border: 1.5px solid rgba(255,255,255,0.4);
    }
    .btn-outline:hover {
      border-color: var(--pink-soft);
      color: var(--pink-soft);
    }
    .btn-outline:active {
      background: rgba(228, 160, 180, 0.08);
    }

    /* ══════════════════════════════════════════
       NAVIGATION
    ══════════════════════════════════════════ */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 1rem 0;
      transition: all 0.4s ease;
    }

    .nav.scrolled {
      background: rgba(15, 61, 46, 0.95);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      padding: 0.6rem 0;
      box-shadow: 0 2px 30px rgba(0,0,0,0.15);
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 clamp(1.25rem, 4vw, 3rem);
    }

    .nav-logo {
      font-family: var(--font-display);
      font-size: 1.6rem;
      font-weight: 600;
      color: var(--white);
      letter-spacing: 0.02em;
    }
    .nav-logo span {
      color: var(--gold);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 2rem;
      list-style: none;
    }

    .nav-links a {
      font-size: 0.9rem;
      font-weight: 400;
      letter-spacing: 0.02em;
      color: rgba(255,255,255,0.85);
      transition: color 0.25s;
      position: relative;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 1.5px;
      background: var(--gold);
      transition: width 0.3s ease;
    }
    .nav-links a:hover { color: var(--white); }
    .nav-links a:hover::after { width: 100%; }

    .nav-cta {
      padding: 0.6rem 1.5rem;
      font-size: 0.85rem;
    }

    .nav-mobile-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0.5rem;
    }
    .nav-mobile-toggle span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--white);
      margin: 5px 0;
      transition: all 0.3s;
    }

    /* ══════════════════════════════════════════
       HERO
    ══════════════════════════════════════════ */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      background: linear-gradient(160deg, var(--green-deep) 0%, #163f30 40%, #2d5a48 60%, var(--pink-warm) 100%);
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 85% 50%, rgba(228,160,180,0.15) 0%, transparent 70%),
        radial-gradient(ellipse 50% 80% at 10% 80%, rgba(15,61,46,0.5) 0%, transparent 60%);
      pointer-events: none;
    }

    .hero::after {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 80%;
      height: 200%;
      background: radial-gradient(ellipse, rgba(228,160,180,0.08) 0%, transparent 60%);
      animation: heroGlow 8s ease-in-out infinite alternate;
      pointer-events: none;
    }

    @keyframes heroGlow {
      0% { transform: translate(0, 0) scale(1); opacity: 0.6; }
      100% { transform: translate(-5%, 3%) scale(1.1); opacity: 1; }
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 650px;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.45rem 1rem;
      background: rgba(200, 169, 110, 0.15);
      border: 1px solid rgba(200, 169, 110, 0.3);
      border-radius: 50px;
      font-size: 0.8rem;
      font-weight: 400;
      color: var(--gold-light);
      letter-spacing: 0.05em;
      margin-bottom: var(--space-md);
      animation: fadeInUp 0.8s ease-out;
    }

    .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(2.5rem, 5.5vw, 4rem);
      font-weight: 500;
      line-height: 1.1;
      margin-bottom: var(--space-md);
      animation: fadeInUp 0.8s ease-out 0.15s both;
    }
    .hero h1 em {
      font-style: italic;
      color: var(--pink-soft);
    }

    .hero-text {
      font-size: 1.1rem;
      font-weight: 300;
      color: rgba(255,255,255,0.85);
      line-height: 1.75;
      margin-bottom: var(--space-lg);
      max-width: 520px;
      animation: fadeInUp 0.8s ease-out 0.3s both;
    }

    .hero-actions {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      animation: fadeInUp 0.8s ease-out 0.45s both;
    }

    .hero-proof {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-top: var(--space-lg);
      animation: fadeInUp 0.8s ease-out 0.6s both;
    }

    .hero-proof-stars {
      color: var(--gold);
      font-size: 1.1rem;
      letter-spacing: 2px;
    }

    .hero-proof-text {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.7);
    }
    .hero-proof-text strong {
      color: var(--white);
      font-weight: 500;
    }

    /* Decorative circle */
    .hero-deco {
      position: absolute;
      right: -5%;
      top: 50%;
      transform: translateY(-50%);
      width: 550px;
      height: 550px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(228,160,180,0.12) 0%, rgba(228,160,180,0.03) 50%, transparent 70%);
      border: 1px solid rgba(228,160,180,0.08);
      z-index: 1;
      animation: floatCircle 12s ease-in-out infinite;
    }

    @keyframes floatCircle {
      0%, 100% { transform: translateY(-50%) scale(1); }
      50% { transform: translateY(-48%) scale(1.03); }
    }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(24px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* ══════════════════════════════════════════
       SECTION STYLING — alternating
    ══════════════════════════════════════════ */
    section {
      padding: var(--space-2xl) 0;
    }

    .bg-dark {
      background: linear-gradient(180deg, var(--green-deep) 0%, #0d3425 100%);
    }

    .bg-gradient {
      background: linear-gradient(160deg, var(--green-deep) 0%, #1b4d3a 50%, rgba(212,134,143,0.15) 100%);
    }

    .bg-cream {
      background: var(--cream);
      color: var(--text-dark);
    }
    .bg-cream .section-subtitle { color: var(--text-muted); }

    /* ══════════════════════════════════════════
       WAS IST EIN HEAD SPA?
    ══════════════════════════════════════════ */
    .intro-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-xl);
      align-items: center;
    }

    .intro-features {
      display: flex;
      flex-direction: column;
      gap: var(--space-md);
      margin-top: var(--space-lg);
    }

    .intro-feature {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
    }

    .intro-feature-icon {
      flex-shrink: 0;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: rgba(200, 169, 110, 0.12);
      border: 1px solid rgba(200, 169, 110, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      font-size: 1.2rem;
    }

    .intro-feature h4 {
      font-family: var(--font-display);
      font-size: 1.15rem;
      font-weight: 600;
      margin-bottom: 0.25rem;
    }
    .intro-feature p {
      font-size: 0.92rem;
      color: rgba(255,255,255,0.8);
      line-height: 1.6;
    }

    .intro-visual {
      position: relative;
    }

    .intro-visual-card {
      width: 100%;
      aspect-ratio: 3/4;
      border-radius: var(--radius-xl);
      background: linear-gradient(160deg, rgba(26,92,66,0.6), rgba(228,160,180,0.2));
      border: 1px solid rgba(255,255,255,0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      position: relative;
    }

    .intro-visual-card::before {
      content: 'Bild: Kopfhautanalyse';
      font-size: 0.85rem;
      color: rgba(255,255,255,0.4);
      font-style: italic;
    }

    .intro-quote {
      position: absolute;
      bottom: -30px;
      right: -20px;
      background: rgba(15,61,46,0.9);
      backdrop-filter: blur(16px);
      border: 1px solid rgba(200,169,110,0.2);
      border-radius: var(--radius-lg);
      padding: 1.25rem 1.5rem;
      max-width: 280px;
      font-size: 0.85rem;
      font-style: italic;
      color: rgba(255,255,255,0.85);
      line-height: 1.55;
    }
    .intro-quote::before {
      content: '"';
      font-family: var(--font-display);
      font-size: 2.5rem;
      color: var(--gold);
      position: absolute;
      top: 8px;
      left: 12px;
      line-height: 1;
    }

    /* ══════════════════════════════════════════
       BEHANDLUNGEN (Treatments)
    ══════════════════════════════════════════ */
    .treatments-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-md);
      margin-top: var(--space-xl);
    }

    .treatment-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--radius-xl);
      padding: 2rem;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
    }

    .treatment-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(160deg, transparent 40%, rgba(228,160,180,0.06) 100%);
      opacity: 0;
      transition: opacity 0.4s;
    }

    .treatment-card:hover {
      transform: translateY(-6px);
      border-color: rgba(200,169,110,0.3);
      box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    }
    .treatment-card:hover::before { opacity: 1; }

    .treatment-card.featured {
      border-color: var(--gold);
      background: rgba(200,169,110,0.06);
    }

    .treatment-badge {
      display: inline-block;
      padding: 0.3rem 0.8rem;
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: var(--green-deep);
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      border-radius: 50px;
      margin-bottom: var(--space-sm);
    }

    .treatment-card h3 {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
      position: relative;
    }

    .treatment-meta {
      display: flex;
      gap: 1.25rem;
      margin-bottom: var(--space-md);
      font-size: 0.85rem;
      color: rgba(255,255,255,0.6);
    }

    .treatment-meta span {
      display: flex;
      align-items: center;
      gap: 0.35rem;
    }

    .treatment-price {
      font-family: var(--font-display);
      font-size: 2.2rem;
      font-weight: 600;
      color: var(--pink-soft);
      margin-bottom: var(--space-sm);
      font-variant-numeric: tabular-nums;
    }
    .treatment-price small {
      font-size: 0.9rem;
      font-weight: 300;
      color: rgba(255,255,255,0.5);
    }

    .treatment-includes {
      list-style: none;
      margin-bottom: var(--space-md);
    }
    .treatment-includes li {
      padding: 0.4rem 0;
      font-size: 0.9rem;
      color: rgba(255,255,255,0.82);
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }
    .treatment-includes li::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--gold);
      flex-shrink: 0;
    }

    .treatment-ideal {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.6);
      font-style: italic;
      padding-top: var(--space-sm);
      border-top: 1px solid rgba(255,255,255,0.06);
    }

    /* ══════════════════════════════════════════
       ABLAUF (Process Steps)
    ══════════════════════════════════════════ */
    .steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: var(--space-md);
      margin-top: var(--space-xl);
    }

    .step {
      text-align: center;
      padding: 2rem 1.25rem;
      position: relative;
    }

    .step-number {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: var(--green-deep);
      font-family: var(--font-display);
      font-size: 1.3rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto var(--space-sm);
    }

    .step h4 {
      font-family: var(--font-display);
      font-size: 1.15rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
    }
    .step p {
      font-size: 0.88rem;
      color: rgba(255,255,255,0.78);
      line-height: 1.6;
    }
    .step-duration {
      font-size: 0.78rem;
      color: var(--gold);
      margin-top: 0.5rem;
      font-weight: 500;
    }

    /* Connector lines */
    .step:not(:last-child)::after {
      content: '';
      position: absolute;
      top: 4.2rem;
      right: -10%;
      width: 20%;
      height: 1px;
      background: linear-gradient(90deg, var(--gold), transparent);
    }

    /* ══════════════════════════════════════════
       VERGLEICH (Comparison Table)
    ══════════════════════════════════════════ */
    .comparison-table {
      width: 100%;
      border-collapse: collapse;
      margin-top: var(--space-lg);
      font-size: 0.92rem;
    }

    .comparison-table thead th {
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-weight: 600;
      padding: 1.25rem 1rem;
      text-align: center;
      border-bottom: 2px solid rgba(200,169,110,0.3);
      color: var(--white);
    }
    .comparison-table thead th:first-child {
      text-align: left;
    }
    .comparison-table thead th.featured-col {
      color: var(--gold);
    }

    .comparison-table tbody td {
      padding: 0.9rem 1rem;
      text-align: center;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      color: rgba(255,255,255,0.8);
    }
    .comparison-table tbody td:first-child {
      text-align: left;
      font-weight: 400;
    }

    .comparison-table .check {
      color: var(--gold);
      font-weight: 600;
    }
    .comparison-table .dash {
      color: rgba(255,255,255,0.2);
    }

    /* ══════════════════════════════════════════
       FÜR WEN (Target Audience)
    ══════════════════════════════════════════ */
    .audience-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: var(--space-md);
      margin-top: var(--space-xl);
    }

    .audience-card {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: var(--radius-lg);
      padding: 1.75rem;
      transition: all 0.3s ease;
    }
    .audience-card:hover {
      border-color: rgba(200,169,110,0.2);
      background: rgba(255,255,255,0.05);
    }

    .audience-card h4 {
      font-family: var(--font-display);
      font-size: 1.15rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
      color: var(--pink-soft);
    }
    .audience-card p {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.78);
      line-height: 1.6;
    }

    /* ══════════════════════════════════════════
       JAPANESE TRADITION
    ══════════════════════════════════════════ */
    .tradition-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-xl);
      align-items: center;
    }

    .tradition-features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-sm);
      margin-top: var(--space-lg);
    }

    .tradition-feature {
      padding: 1.25rem;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: var(--radius-md);
    }
    .tradition-feature h5 {
      font-family: var(--font-display);
      font-size: 1.05rem;
      font-weight: 600;
      margin-bottom: 0.3rem;
      color: var(--gold-light);
    }
    .tradition-feature p {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.75);
      line-height: 1.55;
    }

    /* ══════════════════════════════════════════
       KOPFMASSAGE VS HEAD SPA
    ══════════════════════════════════════════ */
    .vs-grid {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: var(--space-lg);
      align-items: center;
      margin-top: var(--space-xl);
    }

    .vs-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--radius-xl);
      padding: 2rem;
    }
    .vs-card.highlighted {
      border-color: var(--gold);
      background: rgba(200,169,110,0.06);
    }

    .vs-card h3 {
      font-family: var(--font-display);
      font-size: 1.4rem;
      font-weight: 600;
      margin-bottom: var(--space-md);
    }

    .vs-divider {
      font-family: var(--font-display);
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--gold);
      text-align: center;
    }

    .vs-row {
      display: flex;
      justify-content: space-between;
      padding: 0.6rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      font-size: 0.9rem;
    }
    .vs-row span:first-child {
      color: rgba(255,255,255,0.5);
    }
    .vs-row span:last-child {
      font-weight: 500;
    }

    /* ══════════════════════════════════════════
       TESTIMONIALS
    ══════════════════════════════════════════ */
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-md);
      margin-top: var(--space-xl);
    }

    .testimonial-card {
      background: rgba(255,255,255,0.97);
      border-radius: var(--radius-lg);
      padding: 1.75rem;
      color: var(--text-dark);
      position: relative;
    }

    .testimonial-stars {
      color: #f4b942;
      font-size: 0.9rem;
      letter-spacing: 2px;
      margin-bottom: 0.75rem;
    }

    .testimonial-card blockquote {
      font-size: 0.92rem;
      line-height: 1.65;
      color: #444;
      margin-bottom: 1rem;
      font-style: italic;
    }

    .testimonial-author {
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--text-dark);
    }
    .testimonial-location {
      font-size: 0.78rem;
      color: var(--text-muted);
    }

    .testimonial-google {
      position: absolute;
      top: 1.25rem;
      right: 1.25rem;
      width: 20px;
      height: 20px;
    }

    /* ══════════════════════════════════════════
       HEAD SPA FÜR 2
    ══════════════════════════════════════════ */
    .duo-section {
      text-align: center;
    }

    .duo-features {
      display: flex;
      justify-content: center;
      gap: var(--space-lg);
      margin-top: var(--space-lg);
      flex-wrap: wrap;
    }

    .duo-feature {
      text-align: center;
      max-width: 200px;
    }
    .duo-feature-icon {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: rgba(228,160,180,0.1);
      border: 1px solid rgba(228,160,180,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto var(--space-sm);
      font-size: 1.5rem;
      color: var(--pink-soft);
    }
    .duo-feature h5 {
      font-family: var(--font-display);
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 0.25rem;
    }
    .duo-feature p {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.6);
    }

    /* ══════════════════════════════════════════
       FAQ
    ══════════════════════════════════════════ */
    .faq-list {
      max-width: 800px;
      margin: var(--space-xl) auto 0;
    }

    .faq-item {
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .faq-question {
      width: 100%;
      background: none;
      border: none;
      color: var(--white);
      font-family: var(--font-display);
      font-size: 1.15rem;
      font-weight: 600;
      text-align: left;
      padding: 1.25rem 0;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      transition: color 0.25s;
    }
    .faq-question:hover { color: var(--gold-light); }

    .faq-icon {
      flex-shrink: 0;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      border: 1.5px solid rgba(255,255,255,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      transition: all 0.3s;
    }
    .faq-item.open .faq-icon {
      transform: rotate(45deg);
      border-color: var(--gold);
      color: var(--gold);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .faq-item.open .faq-answer {
      max-height: 400px;
    }

    .faq-answer p {
      padding-bottom: 1.25rem;
      font-size: 0.92rem;
      color: rgba(255,255,255,0.8);
      line-height: 1.7;
    }

    /* ══════════════════════════════════════════
       STANDORT (Location)
    ══════════════════════════════════════════ */
    .location-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-xl);
      margin-top: var(--space-xl);
    }

    .location-info h3 {
      font-family: var(--font-display);
      font-size: 1.6rem;
      font-weight: 600;
      margin-bottom: var(--space-md);
    }

    .location-detail {
      display: flex;
      gap: 0.75rem;
      margin-bottom: 1rem;
      font-size: 0.92rem;
      color: rgba(255,255,255,0.8);
    }
    .location-detail-icon {
      color: var(--gold);
      flex-shrink: 0;
      width: 20px;
      text-align: center;
    }

    .location-map {
      border-radius: var(--radius-xl);
      overflow: hidden;
      aspect-ratio: 4/3;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.3);
      font-size: 0.9rem;
      font-style: italic;
    }

    /* ══════════════════════════════════════════
       CTA / BOOKING
    ══════════════════════════════════════════ */
    .cta-section {
      text-align: center;
      padding: var(--space-2xl) 0;
      background: linear-gradient(160deg, var(--green-deep) 0%, #1a4a38 30%, var(--pink-warm) 100%);
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(228,160,180,0.1), transparent 70%);
      pointer-events: none;
    }

    .cta-content {
      position: relative;
      z-index: 2;
    }

    .cta-content .section-title {
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .cta-content .section-subtitle {
      margin: 0 auto var(--space-lg);
      text-align: center;
    }

    .cta-steps {
      display: flex;
      justify-content: center;
      gap: var(--space-lg);
      margin-bottom: var(--space-lg);
      flex-wrap: wrap;
    }

    .cta-step {
      text-align: center;
      font-size: 0.88rem;
      color: rgba(255,255,255,0.7);
    }
    .cta-step strong {
      display: block;
      color: var(--white);
      font-weight: 500;
      margin-bottom: 0.25rem;
    }

    .cta-note {
      margin-top: var(--space-md);
      font-size: 0.82rem;
      color: rgba(255,255,255,0.5);
    }

    /* ══════════════════════════════════════════
       FOOTER
    ══════════════════════════════════════════ */
    .footer {
      background: #091f17;
      padding: var(--space-lg) 0;
      border-top: 1px solid rgba(255,255,255,0.06);
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .footer-logo {
      font-family: var(--font-display);
      font-size: 1.2rem;
      font-weight: 600;
    }
    .footer-logo span { color: var(--gold); }

    .footer-links {
      display: flex;
      gap: 1.5rem;
      list-style: none;
    }
    .footer-links a {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.5);
      transition: color 0.25s;
    }
    .footer-links a:hover { color: var(--white); }

    .footer-copy {
      font-size: 0.78rem;
      color: rgba(255,255,255,0.3);
    }

    /* ══════════════════════════════════════════
       BEHANDLERIN (Therapist Profile)
    ══════════════════════════════════════════ */
    .therapist-grid {
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: var(--space-xl);
      align-items: start;
      margin-top: var(--space-xl);
    }

    .therapist-photo {
      aspect-ratio: 3/4;
      border-radius: var(--radius-xl);
      background: linear-gradient(160deg, rgba(26,92,66,0.6), rgba(228,160,180,0.2));
      border: 1px solid rgba(255,255,255,0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.4);
      font-size: 0.85rem;
      font-style: italic;
    }

    .therapist-info h3 {
      font-family: var(--font-display);
      font-size: 1.6rem;
      font-weight: 600;
      margin-bottom: 0.35rem;
    }

    .therapist-role {
      font-size: 0.9rem;
      color: var(--gold-light);
      margin-bottom: var(--space-md);
      font-weight: 400;
    }

    .therapist-details {
      list-style: none;
      margin-bottom: var(--space-md);
    }
    .therapist-details li {
      padding: 0.4rem 0;
      font-size: 0.92rem;
      color: rgba(255,255,255,0.8);
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }
    .therapist-details li::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--gold);
      flex-shrink: 0;
    }

    .therapist-quote {
      margin-top: var(--space-md);
      padding: var(--space-md) var(--space-md) var(--space-md) 1.75rem;
      border-left: 3px solid var(--gold);
      background: rgba(200, 169, 110, 0.05);
      border-radius: 0 var(--radius-md) var(--radius-md) 0;
    }
    .therapist-quote blockquote {
      font-family: var(--font-display);
      font-size: 1.05rem;
      font-style: italic;
      color: rgba(255,255,255,0.85);
      line-height: 1.7;
    }
    .therapist-quote cite {
      display: block;
      margin-top: 0.5rem;
      font-size: 0.85rem;
      font-style: normal;
      color: var(--gold-light);
    }

    /* ══════════════════════════════════════════
       TREND SECTION
    ══════════════════════════════════════════ */
    .trend-content {
      max-width: 780px;
      margin: 0 auto;
      text-align: center;
    }
    .trend-content p {
      font-size: 1rem;
      color: rgba(255,255,255,0.8);
      line-height: 1.75;
      margin-bottom: var(--space-md);
    }

    /* ══════════════════════════════════════════
       EDITORIAL & SOURCES
    ══════════════════════════════════════════ */
    .editorial-section {
      border-top: 1px solid rgba(255,255,255,0.06);
      padding-top: var(--space-lg);
    }

    .editorial-content {
      max-width: 780px;
      margin: 0 auto;
    }
    .editorial-content p {
      font-size: 0.88rem;
      color: rgba(255,255,255,0.6);
      line-height: 1.7;
    }

    .sources-list {
      max-width: 780px;
      margin: var(--space-md) auto 0;
      list-style: none;
      counter-reset: sources;
    }
    .sources-list li {
      counter-increment: sources;
      padding: 0.5rem 0;
      font-size: 0.82rem;
      color: rgba(255,255,255,0.5);
      line-height: 1.6;
      padding-left: 1.5rem;
      position: relative;
    }
    .sources-list li::before {
      content: counter(sources) ".";
      position: absolute;
      left: 0;
      color: var(--gold);
      font-weight: 500;
    }
    .sources-list li em {
      color: rgba(255,255,255,0.65);
    }

    .editorial-note {
      max-width: 780px;
      margin: var(--space-lg) auto 0;
      padding-top: var(--space-md);
      border-top: 1px solid rgba(255,255,255,0.06);
      font-size: 0.78rem;
      color: rgba(255,255,255,0.4);
      text-align: center;
    }

    /* ══════════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════════ */
    @media (max-width: 1024px) {
      .treatments-grid { grid-template-columns: repeat(2, 1fr); }
      .steps { grid-template-columns: repeat(2, 1fr); }
      .step:not(:last-child)::after { display: none; }
      .intro-grid,
      .tradition-grid,
      .location-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
      .vs-grid { grid-template-columns: 1fr; }
      .vs-divider { transform: rotate(90deg); }
      .therapist-grid { grid-template-columns: 1fr; }
      .therapist-photo { max-width: 280px; }
    }

    @media (max-width: 768px) {
      .nav-links { display: none; }
      .nav-mobile-toggle { display: block; }
      .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(15, 61, 46, 0.97);
        backdrop-filter: blur(20px);
        padding: 1.5rem;
        gap: 1rem;
        overscroll-behavior: contain;
      }

      .hero { min-height: 90vh; }
      .hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
      .hero-deco { display: none; }

      .treatments-grid { grid-template-columns: 1fr; }
      .steps { grid-template-columns: 1fr; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .audience-grid { grid-template-columns: 1fr; }
      .tradition-features { grid-template-columns: 1fr; }

      .comparison-table { font-size: 0.82rem; }
      .comparison-table thead th { font-size: 0.95rem; padding: 0.8rem 0.5rem; }
      .comparison-table tbody td { padding: 0.6rem 0.5rem; }

      .therapist-grid { gap: var(--space-lg); }
      .therapist-photo { max-width: 220px; }

      .footer-inner { flex-direction: column; text-align: center; }
    }

    /* ══════════════════════════════════════════
       SCROLL ANIMATIONS
    ══════════════════════════════════════════ */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .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; }

    /* ══════════════════════════════════════════
       REDUCED MOTION
    ══════════════════════════════════════════ */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
      }
      .reveal { opacity: 1; transform: none; }
      html { scroll-behavior: auto; }
    }/* End custom CSS */