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

    :root {
      --sage: #7a9e8e;
      --sage-light: #a8c4b8;
      --sage-dark: #4d7266;
      --cream: #f7f4ef;
      --warm-white: #fdfcfa;
      --charcoal: #1e2a26;
      --text: #2d3d38;
      --muted: #6b7f79;
      --gold: #c4a96a;
      --gold-light: #e8d5a3;
      --whatsapp: #25D366;
    }

    html { scroll-behavior: smooth; }

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

    /* ---- PAGE SYSTEM ---- */
    .page { display: none; }
    .page.active { display: block; }

    /* ---- NAV ---- */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      background: rgba(253, 252, 250, 0.94);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(122,158,142,0.18);
      padding: 0 2rem;
      height: 70px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
      font-weight: 500;
      color: var(--charcoal);
      cursor: pointer;
      letter-spacing: 0.02em;
    }
    .nav-logo span { color: var(--sage-dark); }

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

    .nav-links a {
      text-decoration: none;
      color: var(--muted);
      font-size: 0.875rem;
      font-weight: 400;
      letter-spacing: 0.03em;
      transition: color 0.2s;
      cursor: pointer;
    }
    .nav-links a:hover, .nav-links a.active { color: var(--sage-dark); }

    .nav-cta {
      background: var(--sage-dark);
      color: white !important;
      padding: 0.5rem 1.25rem;
      border-radius: 40px;
      font-size: 0.8rem !important;
      font-weight: 500 !important;
      transition: background 0.2s !important;
    }
    .nav-cta:hover { background: var(--charcoal) !important; color: white !important; }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
    }
    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--charcoal);
      transition: all 0.3s;
    }

    /* ---- HERO ---- */
    .hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      padding-top: 70px;
      position: relative;
      overflow: hidden;
    }

    .hero-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 5rem 4rem 5rem 6rem;
      position: relative;
      z-index: 2;
    }

    .hero-eyebrow {
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--sage-dark);
      margin-bottom: 1.5rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    .hero-eyebrow::before {
      content: '';
      display: block;
      width: 2rem;
      height: 1px;
      background: var(--sage-dark);
    }

    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.8rem, 5vw, 4.5rem);
      font-weight: 300;
      line-height: 1.12;
      color: var(--charcoal);
      margin-bottom: 1.5rem;
    }
    .hero-title em {
      font-style: italic;
      color: var(--sage-dark);
    }

    .hero-sub {
      font-size: 1.05rem;
      color: var(--muted);
      max-width: 420px;
      margin-bottom: 2.5rem;
      line-height: 1.8;
    }

    .hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
      margin-bottom: 2.5rem;
    }
    .badge {
      background: rgba(122,158,142,0.12);
      border: 1px solid rgba(122,158,142,0.3);
      color: var(--sage-dark);
      padding: 0.35rem 0.9rem;
      border-radius: 40px;
      font-size: 0.78rem;
      letter-spacing: 0.02em;
    }

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

    .btn-primary {
      background: var(--sage-dark);
      color: white;
      padding: 0.9rem 2rem;
      border-radius: 50px;
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 500;
      cursor: pointer;
      border: none;
      transition: all 0.3s;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      letter-spacing: 0.02em;
    }
    .btn-primary:hover { background: var(--charcoal); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(77,114,102,0.3); }

    .btn-whatsapp {
      background: var(--whatsapp);
      color: white;
      padding: 0.9rem 2rem;
      border-radius: 50px;
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 500;
      cursor: pointer;
      border: none;
      transition: all 0.3s;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }
    .btn-whatsapp:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.3); }

    .btn-outline {
      background: transparent;
      color: var(--sage-dark);
      padding: 0.9rem 2rem;
      border-radius: 50px;
      border: 1.5px solid var(--sage-dark);
      font-size: 0.9rem;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.3s;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }
    .btn-outline:hover { background: var(--sage-dark); color: white; }

    .hero-visual {
      position: relative;
      overflow: hidden;
    }

    .hero-bg-pattern {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 70% 80% at 60% 40%, rgba(122,158,142,0.18) 0%, transparent 70%),
        radial-gradient(ellipse 50% 60% at 80% 80%, rgba(196,169,106,0.1) 0%, transparent 60%);
    }

    .hero-circle-deco {
      position: absolute;
      top: 10%;
      right: 8%;
      width: 340px;
      height: 340px;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(122,158,142,0.25), rgba(196,169,106,0.15));
      animation: float 6s ease-in-out infinite;
    }
    .hero-circle-deco2 {
      position: absolute;
      bottom: 15%;
      left: 5%;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      border: 1px solid rgba(122,158,142,0.3);
      animation: float 8s ease-in-out infinite reverse;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-20px); }
    }

    .hero-card {
      position: absolute;
      bottom: 12%;
      right: 8%;
      background: white;
      border-radius: 16px;
      padding: 1.5rem;
      box-shadow: 0 20px 60px rgba(30,42,38,0.12);
      width: 220px;
      animation: slideUp 0.8s ease 0.4s both;
    }
    .hero-card-stat {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.5rem;
      font-weight: 600;
      color: var(--sage-dark);
      line-height: 1;
    }
    .hero-card p {
      font-size: 0.8rem;
      color: var(--muted);
      margin-top: 0.25rem;
    }

    .hero-card2 {
      position: absolute;
      top: 20%;
      left: 5%;
      background: white;
      border-radius: 16px;
      padding: 1.2rem 1.5rem;
      box-shadow: 0 20px 60px rgba(30,42,38,0.1);
      animation: slideUp 0.8s ease 0.6s both;
    }
    .hero-card2 p { font-size: 0.78rem; color: var(--muted); }
    .hero-card2 strong { color: var(--charcoal); font-size: 0.9rem; display: block; margin-bottom: 0.2rem; }

    @keyframes slideUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .leaf-deco {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 420px;
      height: 420px;
      opacity: 0.06;
    }

    /* ---- TRUST BAR ---- */
    .trust-bar {
      background: var(--charcoal);
      padding: 1.5rem 4rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 4rem;
      flex-wrap: wrap;
    }
    .trust-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      color: rgba(255,255,255,0.7);
      font-size: 0.85rem;
    }
    .trust-item svg { color: var(--sage-light); flex-shrink: 0; }

    /* ---- SECTIONS ---- */
    section { padding: 5rem 0; }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    .section-label {
      font-size: 0.7rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--sage-dark);
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    .section-label::before {
      content: '';
      display: block;
      width: 1.5rem;
      height: 1px;
      background: var(--sage-dark);
    }

    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 300;
      color: var(--charcoal);
      line-height: 1.2;
      margin-bottom: 1.5rem;
    }
    .section-title em { font-style: italic; color: var(--sage-dark); }

    /* ---- PAIN POINTS ---- */
    .pain-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: 3rem;
    }

    .pain-card {
      background: var(--cream);
      border-radius: 20px;
      padding: 2.5rem 2rem;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .pain-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(30,42,38,0.1); }
    .pain-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--sage), var(--gold));
    }

    .pain-icon {
      width: 52px;
      height: 52px;
      background: rgba(122,158,142,0.15);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.25rem;
      font-size: 1.5rem;
    }

    .pain-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem;
      font-weight: 500;
      color: var(--charcoal);
      margin-bottom: 0.75rem;
    }
    .pain-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.8; }

    /* ---- METHOD ---- */
    .method-section {
      background: var(--cream);
    }

    .method-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    .method-steps {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      margin-top: 2rem;
    }

    .method-step {
      display: flex;
      gap: 1.5rem;
      align-items: flex-start;
    }

    .step-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3rem;
      font-weight: 300;
      color: rgba(122,158,142,0.25);
      line-height: 1;
      min-width: 50px;
    }

    .step-content h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      font-weight: 500;
      color: var(--charcoal);
      margin-bottom: 0.5rem;
    }
    .step-content p { font-size: 0.875rem; color: var(--muted); line-height: 1.8; }

    .method-visual {
      background: linear-gradient(135deg, var(--sage-dark), var(--charcoal));
      border-radius: 30px;
      padding: 3rem;
      color: white;
      position: relative;
      overflow: hidden;
    }
    .method-visual::before {
      content: '';
      position: absolute;
      top: -40px; right: -40px;
      width: 200px; height: 200px;
      border-radius: 50%;
      background: rgba(255,255,255,0.05);
    }
    .method-visual h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.8rem;
      font-weight: 300;
      margin-bottom: 1.5rem;
      line-height: 1.3;
    }
    .method-stat {
      display: flex;
      gap: 2rem;
      margin-top: 2rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(255,255,255,0.15);
    }
    .mstat { text-align: center; }
    .mstat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.8rem;
      font-weight: 300;
      color: var(--gold-light);
      line-height: 1;
      display: block;
    }
    .mstat-label { font-size: 0.75rem; opacity: 0.6; margin-top: 0.3rem; }
    .method-list { list-style: none; }
    .method-list li {
      padding: 0.6rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      font-size: 0.875rem;
      opacity: 0.85;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    .method-list li::before { content: '✓'; color: var(--sage-light); font-weight: 600; }

    /* ---- CTA BANNER ---- */
    .cta-banner {
      background: linear-gradient(135deg, var(--sage-dark) 0%, var(--charcoal) 100%);
      padding: 4rem 2rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cta-banner::before {
      content: '';
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 600px; height: 300px;
      border-radius: 50%;
      background: rgba(255,255,255,0.03);
      pointer-events: none;
    }
    .cta-banner h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.8rem, 3vw, 2.8rem);
      font-weight: 300;
      color: white;
      margin-bottom: 1rem;
    }
    .cta-banner p { color: rgba(255,255,255,0.65); margin-bottom: 2rem; font-size: 1rem; }
    .cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

    /* ---- ABOUT PAGE ---- */
    .about-hero {
      background: var(--cream);
      padding: 7rem 0 5rem;
    }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 5rem;
      align-items: center;
    }
    .about-portrait {
      position: relative;
    }
    .portrait-frame {
      width: 100%;
      aspect-ratio: 3/4;
      background: linear-gradient(135deg, rgba(122,158,142,0.2), rgba(196,169,106,0.15));
      border-radius: 30px 30px 120px 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }
    .portrait-placeholder {
      font-size: 6rem;
      opacity: 0.3;
    }
    .portrait-badge {
      position: absolute;
      bottom: 2rem;
      left: -1.5rem;
      background: white;
      border-radius: 16px;
      padding: 1rem 1.5rem;
      box-shadow: 0 10px 40px rgba(30,42,38,0.15);
    }
    .portrait-badge strong { display: block; font-size: 0.9rem; color: var(--charcoal); }
    .portrait-badge span { font-size: 0.75rem; color: var(--muted); }

    .about-content h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 300;
      color: var(--charcoal);
      line-height: 1.2;
      margin-bottom: 1.5rem;
    }
    .about-content h1 em { font-style: italic; color: var(--sage-dark); }
    .about-content p { color: var(--muted); margin-bottom: 1.2rem; line-height: 1.9; }

    .about-values {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin-top: 2rem;
    }
    .value-item {
      background: white;
      border-radius: 12px;
      padding: 1.2rem;
      border: 1px solid rgba(122,158,142,0.2);
    }
    .value-item strong { display: block; font-size: 0.875rem; color: var(--charcoal); margin-bottom: 0.25rem; }
    .value-item span { font-size: 0.78rem; color: var(--muted); }

    /* ---- OFFERS ---- */
    .offers-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: 3rem;
    }

    .offer-card {
      background: white;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(30,42,38,0.07);
      transition: transform 0.3s, box-shadow 0.3s;
      border: 1px solid rgba(122,158,142,0.15);
    }
    .offer-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(30,42,38,0.14); }
    .offer-card.featured {
      background: linear-gradient(160deg, var(--sage-dark), var(--charcoal));
      color: white;
    }

    .offer-header {
      padding: 2rem 2rem 1.5rem;
      border-bottom: 1px solid rgba(122,158,142,0.12);
    }
    .offer-card.featured .offer-header { border-color: rgba(255,255,255,0.12); }
    .offer-icon {
      width: 48px; height: 48px;
      background: rgba(122,158,142,0.12);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem;
      margin-bottom: 1rem;
    }
    .offer-card.featured .offer-icon { background: rgba(255,255,255,0.12); }
    .offer-header h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-weight: 500;
      margin-bottom: 0.5rem;
      color: var(--charcoal);
    }
    .offer-card.featured .offer-header h3 { color: white; }
    .offer-header p { font-size: 0.85rem; color: var(--muted); }
    .offer-card.featured .offer-header p { color: rgba(255,255,255,0.65); }

    .offer-body { padding: 1.5rem 2rem 2rem; }
    .offer-list { list-style: none; }
    .offer-list li {
      padding: 0.5rem 0;
      font-size: 0.875rem;
      color: var(--muted);
      display: flex;
      gap: 0.6rem;
      align-items: flex-start;
      border-bottom: 1px solid rgba(122,158,142,0.08);
    }
    .offer-list li:last-child { border: none; }
    .offer-card.featured .offer-list li { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.08); }
    .offer-list li::before { content: '→'; color: var(--sage); flex-shrink: 0; }
    .offer-card.featured .offer-list li::before { color: var(--gold-light); }

    .offer-price {
      margin-top: 1.5rem;
      padding-top: 1rem;
      border-top: 1px solid rgba(122,158,142,0.12);
    }
    .offer-card.featured .offer-price { border-color: rgba(255,255,255,0.12); }
    .price-label { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
    .offer-card.featured .price-label { color: rgba(255,255,255,0.5); }

    /* ---- TESTIMONIALS ---- */
    .testimonials-section { background: var(--cream); }

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

    .testimonial-card {
      background: white;
      border-radius: 20px;
      padding: 2rem;
      box-shadow: 0 4px 20px rgba(30,42,38,0.07);
      position: relative;
    }
    .testimonial-card::before {
      content: '"';
      font-family: 'Cormorant Garamond', serif;
      font-size: 5rem;
      line-height: 0.8;
      color: rgba(122,158,142,0.15);
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
    }

    .stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; }

    .testimonial-card blockquote {
      font-size: 0.9rem;
      color: var(--text);
      line-height: 1.85;
      margin-bottom: 1.5rem;
      font-style: italic;
    }

    .testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
    .author-avatar {
      width: 40px; height: 40px;
      border-radius: 50%;
      background: rgba(122,158,142,0.2);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem;
    }
    .author-info strong { display: block; font-size: 0.85rem; color: var(--charcoal); }
    .author-info span { font-size: 0.75rem; color: var(--muted); }

    .lb-badge {
      margin-top: 4rem;
      background: white;
      border: 1px solid rgba(122,158,142,0.25);
      border-radius: 20px;
      padding: 2.5rem;
      display: flex;
      align-items: center;
      gap: 2rem;
      flex-wrap: wrap;
    }
    .lb-badge-icon {
      width: 72px; height: 72px;
      background: linear-gradient(135deg, var(--sage-dark), var(--charcoal));
      border-radius: 18px;
      display: flex; align-items: center; justify-content: center;
      font-size: 2rem;
      flex-shrink: 0;
    }
    .lb-badge-content { flex: 1; }
    .lb-badge-content h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-weight: 500;
      color: var(--charcoal);
      margin-bottom: 0.5rem;
    }
    .lb-badge-content p { font-size: 0.875rem; color: var(--muted); line-height: 1.7; }

    /* ---- IMPRESSUM ---- */
    .impressum-content {
      max-width: 760px;
      margin: 7rem auto 5rem;
      padding: 0 2rem;
    }
    .impressum-content h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.8rem;
      font-weight: 300;
      color: var(--charcoal);
      margin-bottom: 3rem;
    }
    .impressum-block {
      background: var(--cream);
      border-radius: 16px;
      padding: 2rem;
      margin-bottom: 1.5rem;
    }
    .impressum-block h2 {
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--sage-dark);
      margin-bottom: 1rem;
    }
    .impressum-block p, .impressum-block address {
      font-size: 0.9rem;
      color: var(--muted);
      line-height: 2;
      font-style: normal;
    }
    .impressum-block a { color: var(--sage-dark); text-decoration: none; }

    /* ---- FOOTER ---- */
    footer {
      background: var(--charcoal);
      padding: 4rem 2rem 2rem;
      color: rgba(255,255,255,0.6);
    }
    .footer-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 3rem;
      padding-bottom: 3rem;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .footer-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
      color: white;
      margin-bottom: 1rem;
    }
    .footer-logo span { color: var(--sage-light); }
    .footer-desc { font-size: 0.825rem; line-height: 1.8; }
    .footer-col h4 {
      font-size: 0.7rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.4);
      margin-bottom: 1.2rem;
    }
    .footer-col ul { list-style: none; }
    .footer-col li { padding: 0.3rem 0; font-size: 0.825rem; cursor: pointer; transition: color 0.2s; }
    .footer-col li:hover { color: white; }
    .footer-bottom {
      max-width: 1200px;
      margin: 1.5rem auto 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.78rem;
      flex-wrap: wrap;
      gap: 1rem;
    }

    /* ---- WHATSAPP FLOAT ---- */
    .wa-float {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      z-index: 200;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 0.75rem;
    }
    .wa-tooltip {
      background: var(--charcoal);
      color: white;
      font-size: 0.8rem;
      padding: 0.6rem 1rem;
      border-radius: 10px;
      white-space: nowrap;
      opacity: 0;
      transform: translateX(10px);
      transition: all 0.3s;
      pointer-events: none;
    }
    .wa-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }
    .wa-btn {
      width: 60px; height: 60px;
      border-radius: 50%;
      background: var(--whatsapp);
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 8px 30px rgba(37,211,102,0.4);
      cursor: pointer;
      text-decoration: none;
      transition: transform 0.3s, box-shadow 0.3s;
      animation: pulse-wa 3s ease infinite;
    }
    .wa-btn:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(37,211,102,0.5); }
    @keyframes pulse-wa {
      0%, 100% { box-shadow: 0 8px 30px rgba(37,211,102,0.4); }
      50% { box-shadow: 0 8px 40px rgba(37,211,102,0.6), 0 0 0 12px rgba(37,211,102,0.1); }
    }

    /* ---- MOBILE ---- */
    @media (max-width: 900px) {
      .hero { grid-template-columns: 1fr; min-height: auto; }
      .hero-content { padding: 3rem 1.5rem 2rem; }
      .hero-visual { display: none; }
      .pain-grid, .offers-grid, .testimonials-grid { grid-template-columns: 1fr; }
      .method-grid, .about-grid { grid-template-columns: 1fr; }
      .about-grid { gap: 2rem; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .nav-links { display: none; }
      .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 70px; left: 0; right: 0;
        background: var(--warm-white);
        padding: 1.5rem 2rem;
        gap: 1rem;
        border-bottom: 1px solid rgba(122,158,142,0.15);
        z-index: 99;
      }
      .hamburger { display: flex; }
      .trust-bar { gap: 1.5rem; padding: 1.5rem; }
      .about-values { grid-template-columns: 1fr; }
    }
        /* ---- FAQ ---- */
    .faq-item {
      background: white;
      border-radius: 14px;
      border: 1px solid rgba(122,158,142,0.18);
      overflow: hidden;
      transition: box-shadow 0.2s;
    }
    .faq-item:hover { box-shadow: 0 4px 20px rgba(30,42,38,0.08); }
    .faq-question {
      width: 100%;
      background: none;
      border: none;
      padding: 1.4rem 1.75rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--charcoal);
      text-align: left;
      gap: 1rem;
    }
    .faq-icon {
      font-size: 1.4rem;
      color: var(--sage-dark);
      flex-shrink: 0;
      transition: transform 0.3s;
      line-height: 1;
    }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s;
      padding: 0 1.75rem;
    }
    .faq-answer.open {
      max-height: 300px;
      padding: 0 1.75rem 1.4rem;
    }
    .faq-answer p { font-size: 0.875rem; color: var(--muted); line-height: 1.9; }

    @media (max-width: 900px) {
      #page-standorte .container > div { grid-template-columns: 1fr !important; }
      #page-kontakt .container > div { grid-template-columns: 1fr !important; }
    }

    /* ---- FOTO-STREIFEN ---- */
    .gstrip-outer {
      overflow: hidden;
      width: 100%;
    }
    .gstrip-track {
      display: flex;
      gap: 1rem;
      width: max-content;
      animation: gscroll 60s linear infinite;
    }
    .gstrip-track:hover { animation-play-state: paused; }
    .gstrip-item {
      flex-shrink: 0;
      width: 280px;
      height: 210px;
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 4px 16px rgba(30,42,38,0.1);
    }
    .gstrip-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s;
    }
    .gstrip-item:hover img { transform: scale(1.05); }
    @keyframes gscroll {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    @media (max-width: 900px) {
      .gstrip-item { width: 220px; height: 165px; }
    }
  