/* ===== RESET ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; scroll-padding-top: 5rem; overflow-x: hidden; }
    body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; }
    img { max-width: 100%; height: auto; display: block; }
    a { text-decoration: none; color: inherit; }
    ul, ol { list-style: none; }
    button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
    input, textarea, select { font: inherit; color: inherit; }

    /* ===== CUSTOM PROPERTIES ===== */
    :root {
      --font-body: 'Satoshi', system-ui, -apple-system, sans-serif;
      --font-display: 'Instrument Serif', Georgia, serif;
      --bg: #faf7f2;
      --bg-elevated: #fffef9;
      --bg-subtle: #f0ebe3;
      --text: #1a1a1a;
      --text-secondary: #2d2d2d;
      --text-muted: #5c5c5c;
      --accent: #6f9892;
      --accent-hover: #5a807a;
      --accent-light: #dce8e6;
      --accent-surface: rgba(111, 152, 146, 0.08);
      --border: #e5dfd6;
      --card-shadow: 0 1px 3px rgba(26, 26, 26, 0.05), 0 1px 2px rgba(26, 26, 26, 0.03);
      --card-shadow-hover: 0 10px 25px rgba(26, 26, 26, 0.07), 0 4px 10px rgba(26, 26, 26, 0.04);
      --nav-bg: rgba(250, 247, 242, 0.92);
      --section-alt: #f4efe8;
      --transition: 0.2s ease;
    }

    /* ===== TYPOGRAPHY ===== */
    body {
      font-family: var(--font-body);
      font-size: 1rem;
      line-height: 1.7;
      color: var(--text);
      background-color: var(--bg);
      overflow-x: hidden;
    }

    h1, h2, h3, h4 {
      font-family: var(--font-display);
      font-weight: 400;
      line-height: 1.2;
      color: var(--text);
    }

    h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
    h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 1rem; }
    h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }

    p { color: var(--text-secondary); max-width: 68ch; }

    .section-subtitle {
      font-family: var(--font-body);
      font-size: 0.875rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--accent);
      margin-bottom: 0.5rem;
    }

    /* ===== LAYOUT ===== */
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    section {
      padding: 5rem 0;
    }

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

    .section-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 3.5rem;
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }

    .section-header .section-subtitle {
      margin-bottom: 0;
    }

    .section-header h2 {
      margin-bottom: 0;
    }

    .section-header p {
      margin: 0 auto;
    }

    /* ===== BUTTONS ===== */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.8rem 1.75rem;
      border-radius: 6px;
      font-weight: 700;
      font-size: 0.9rem;
      transition: background-color var(--transition), transform var(--transition), box-shadow var(--transition);
    }

    .btn:active { transform: scale(0.97); }

    .btn-primary {
      background-color: var(--accent);
      color: #fff;
    }

    .btn-primary:hover {
      background-color: var(--accent-hover);
      box-shadow: 0 4px 12px rgba(111, 152, 146, 0.3);
    }

    .btn-outline {
      border: 2px solid var(--accent);
      color: var(--accent);
      background: transparent;
    }

    .btn-outline:hover {
      border-color: var(--accent-hover);
      color: var(--accent-hover);
      background: var(--accent-surface);
    }

    .btn-textured {
      background: url('img/meigpt-4.jpg') center / cover no-repeat;
      border: none;
      color: #fff;
      text-shadow: 0 1px 4px rgba(0, 0, 0, 0.75);
      box-shadow: 0 2px 8px rgba(26, 26, 26, 0.12);
    }

    .btn-textured:hover {
      filter: brightness(1.08);
      box-shadow: 0 4px 14px rgba(26, 26, 26, 0.18);
      color: #fff;
    }

    .btn-wave {
      position: relative;
      overflow: hidden;
      border: none;
      color: #fff;
      background: rgba(114, 151, 142, 0.2);
      text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
      box-shadow: 0 2px 10px rgba(26, 26, 26, 0.12);
      isolation: isolate;
    }

    .btn-wave::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(26, 26, 26, 0.28);
      z-index: 1;
      pointer-events: none;
      transition: background var(--transition);
    }

    .btn-wave .wave-bg {
      position: absolute;
      inset: -120% -60%;
      pointer-events: none;
      z-index: 0;
      overflow: hidden;
    }

    .btn-wave .wave-bg svg {
      width: 100%;
      height: 100%;
      filter: blur(8px);
    }

    .btn-wave .thick-wave.w1 { opacity: 0.55; stroke-width: 80; }
    .btn-wave .thick-wave.w2 { opacity: 0.45; stroke-width: 110; }
    .btn-wave .thick-wave.w3 { opacity: 0.35; stroke-width: 70; }
    .btn-wave .thick-wave.w4 { opacity: 0.4; stroke-width: 95; }

    .btn-wave .btn-label {
      position: relative;
      z-index: 2;
    }

    .btn-wave:hover {
      box-shadow: 0 4px 16px rgba(26, 26, 26, 0.18);
      color: #fff;
    }

    .btn-wave:hover::before {
      background: rgba(26, 26, 26, 0.18);
    }

    .hero-buttons .btn-primary {
      background-color: var(--accent);
      border: 2px solid var(--accent);
      color: #fff;
    }

    .hero-buttons .btn-outline {
      background: transparent;
      border: 2px solid var(--accent);
      color: var(--accent);
    }

    .hero-buttons .btn-primary:hover {
      background-color: var(--accent-hover);
      border-color: var(--accent-hover);
      color: #fff;
    }

    .hero-buttons .btn-outline:hover {
      background-color: var(--accent);
      border-color: var(--accent);
      color: #fff;
    }

    /* ===== NAVIGATION ===== */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: var(--nav-bg);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }

    .nav-inner {
      display: flex;
      align-items: center;
      gap: 2rem;
      height: 4rem;
    }

    .nav-brand {
      font-family: var(--font-display);
      font-size: 1.35rem;
      color: var(--text);
      flex-shrink: 0;
      transition: color var(--transition);
    }

    .nav-brand:hover { color: var(--accent); }

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

    .nav-links a {
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--text-muted);
      transition: color var(--transition);
    }

    .nav-links a:hover { color: var(--accent); }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-left: auto;
    }

    .nav-toggle {
      display: none;
      width: 38px;
      height: 38px;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
    }

    .nav-toggle svg { width: 22px; height: 22px; }

    .nav-mobile-cta,
    .nav-waves {
      display: none;
    }

    /* ===== MOBILE NAV ===== */
    @media (max-width: 1024px) {
      .nav {
        background: var(--bg);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
      }

      .nav-links {
        position: fixed;
        top: 4rem;
        left: 0;
        right: 0;
        bottom: 0;
        flex: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 1.5rem 1.5rem 2rem;
        background: var(--bg);
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 999;
        overflow: hidden;
      }

      .nav-links a {
        position: relative;
        z-index: 2;
      }

      .nav-mobile-cta {
        display: flex;
        margin-top: auto;
        width: 100%;
        position: relative;
        z-index: 2;
      }

      .nav-waves {
        display: block;
        position: absolute;
        left: -30%;
        right: -30%;
        bottom: -20%;
        height: 55%;
        pointer-events: none;
        z-index: 0;
        overflow: hidden;
        -webkit-mask-image: radial-gradient(ellipse at 50% 80%, black 30%, transparent 72%);
        mask-image: radial-gradient(ellipse at 50% 80%, black 30%, transparent 72%);
      }

      .nav-waves svg {
        width: 100%;
        height: 100%;
        filter: blur(16px);
      }

      .nav-mobile-cta .btn-wave {
        display: inline-flex;
        width: 100%;
        justify-content: center;
      }

      .nav-brand {
        font-size: 1.2rem;
      }

      .nav-inner {
        gap: 1rem;
      }

      .nav-links.active { transform: translateX(0); }

      .nav-links a {
        font-size: 1.1rem;
        padding: 0.75rem 0;
        width: 100%;
        border-bottom: 1px solid var(--border);
      }

      .nav-toggle { display: flex; }
      .nav .btn-wave { display: none; }
    }

    /* ===== HERO ===== */
    .hero {
      position: relative;
      background: var(--bg);
      padding: 5rem 0 3rem;
      overflow: hidden;
      min-height: auto;
      display: flex;
      align-items: center;
    }

    .hero-inner {
      position: relative;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
    }

    .hero-content h1 {
      color: var(--text);
      margin-bottom: 1.5rem;
    }

    .hero-content p {
      color: var(--text-secondary);
      font-size: 1.125rem;
      line-height: 1.8;
      margin-bottom: 2.5rem;
      max-width: 540px;
    }

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

    .hero-image {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .section-image {
      display: block;
      width: 100%;
      height: auto;
      object-fit: cover;
      border-radius: 12px;
      border: 1px solid var(--border);
      box-shadow: var(--card-shadow);
    }

    .hero-image .section-image {
      width: auto;
      max-width: 100%;
      max-height: calc(100svh - 5.5rem);
      aspect-ratio: 4 / 5;
      border-radius: 0;
      border: none;
      box-shadow: none;
      object-fit: cover;
      object-position: center;
    }

    /* ===== INFO SECTION ===== */
    .info-layout {
      display: flex;
      flex-direction: column;
      gap: 2.5rem;
    }

    .info-intro {
      position: relative;
      display: block;
      max-width: 68ch;
      z-index: 1;
    }

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

    .info-content h3 { margin-bottom: 0.75rem; color: var(--text); }
    .info-content p { margin-bottom: 1.25rem; }

    .info-waves {
      position: absolute;
      left: 0;
      top: -20%;
      width: 180%;
      height: 140%;
      pointer-events: none;
      z-index: 0;
      overflow: hidden;
      -webkit-mask-image: radial-gradient(ellipse at 45% 50%, black 35%, transparent 70%);
      mask-image: radial-gradient(ellipse at 45% 50%, black 35%, transparent 70%);
    }

    .info-waves svg {
      width: 100%;
      height: 100%;
      filter: blur(16px);
    }

    .thick-wave {
      fill: none;
      stroke-linecap: round;
    }

    .thick-wave.w1 {
      stroke: #72978e;
      stroke-width: 100;
      opacity: 0.35;
      animation: waveMove400 24s linear infinite;
    }

    .thick-wave.w2 {
      stroke: #878b76;
      stroke-width: 140;
      opacity: 0.25;
      animation: waveMove600 30s linear infinite reverse;
    }

    .thick-wave.w3 {
      stroke: #d45231;
      stroke-width: 90;
      opacity: 0.15;
      animation: waveMove500 26s linear infinite;
    }
    
    .thick-wave.w4 {
      stroke: #08f3f0;
      stroke-width: 120;
      opacity: 0.2;
      animation: waveMove700 34s linear infinite reverse;
    }

    @keyframes waveMove400 {
      0% { transform: translateX(0); }
      100% { transform: translateX(-400px); }
    }
    @keyframes waveMove500 {
      0% { transform: translateX(0); }
      100% { transform: translateX(-500px); }
    }
    @keyframes waveMove600 {
      0% { transform: translateX(0); }
      100% { transform: translateX(-600px); }
    }
    @keyframes waveMove700 {
      0% { transform: translateX(0); }
      100% { transform: translateX(-700px); }
    }

    @media (max-width: 1024px) {
      #leistungen {
        padding-top: 4.5rem;
      }

      .info-intro {
        gap: 1.5rem;
      }

      .info-waves {
        left: -10%;
        top: -10%;
        width: 150%;
        height: 120%;
        -webkit-mask-image: radial-gradient(ellipse at 40% 50%, black 30%, transparent 70%);
        mask-image: radial-gradient(ellipse at 40% 50%, black 30%, transparent 70%);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .thick-wave {
        animation: none !important;
        opacity: 0.15 !important;
      }

      .btn-wave .thick-wave {
        opacity: 0.35 !important;
      }
    }

    /* ===== REUSABLE WAVE PANEL ===== */
    .wave-panel {
      position: relative;
      overflow: hidden;
    }

    .wave-panel .wave-bg {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      overflow: hidden;
      -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 25%, transparent 72%);
      mask-image: radial-gradient(ellipse at 50% 50%, black 25%, transparent 72%);
    }

    .wave-panel .wave-bg svg {
      width: 100%;
      height: 100%;
      filter: blur(16px);
    }

    .wave-panel .wave-panel-content {
      position: relative;
      z-index: 1;
    }

    /* ===== VERGLEICH BANNER ===== */
    .vergleich-banner {
      position: relative;
      background-image: url('img/meigpt-2.jpg');
      background-size: cover;
      background-position: center 15%;
      padding: 5rem 0 4.5rem;
      overflow: hidden;
    }

    .vergleich-banner::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(26, 26, 26, 0.45) 0%,
        rgba(26, 26, 26, 0.72) 100%
      );
    }

    .vergleich-banner .section-header {
      position: relative;
      z-index: 1;
      margin-bottom: 0;
    }

    .vergleich-banner .section-subtitle {
      color: rgba(255, 255, 255, 0.85);
    }

    .vergleich-banner h2 {
      color: #fff;
    }

    .vergleich-banner p {
      color: rgba(255, 255, 255, 0.88);
    }

    #vergleich .container.content {
      padding-top: 3.5rem;
    }

    @media (max-width: 1024px) {
      .vergleich-banner {
        padding: 4.5rem 0 3.5rem;
        background-position: center 35%;
      }
    }

    /* ===== COMPARISON TABLE ===== */
    .comparison-intro {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2.5rem;
      margin-bottom: 3rem;
    }

    .comparison-card {
      background: var(--bg-elevated);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 2rem;
      transition: box-shadow var(--transition);
    }

    .comparison-card:hover { box-shadow: var(--card-shadow-hover); }

    .comparison-card h3 {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 1rem;
      font-family: var(--font-display);
    }

    .comparison-card h3 span {
      font-family: var(--font-body);
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      padding: 0.2rem 0.6rem;
      border-radius: 4px;
      background: var(--accent-light);
      color: var(--accent);
    }

    .comparison-card ul {
      list-style: none;
      padding: 0;
    }

    .comparison-card li {
      padding: 0.4rem 0;
      padding-left: 1.5rem;
      position: relative;
      color: var(--text-secondary);
      font-size: 0.95rem;
    }

    .comparison-card li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0.85rem;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--accent);
    }

    .comparison-card ol {
      padding-left: 1.25rem;
      color: var(--text-secondary);
      font-size: 0.95rem;
      line-height: 1.8;
    }

    .comparison-card ol li {
      padding: 0.35rem 0;
      padding-left: 0;
      position: static;
    }

    .comparison-card ol li::before {
      display: none;
    }

    @media (max-width: 1024px) {
      .comparison-intro { grid-template-columns: 1fr; }
    }

    .table-wrap {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      margin: 2rem 0;
    }

    .comparison-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.9rem;
      background: var(--bg-elevated);
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid var(--border);
    }

    .comparison-table th,
    .comparison-table td {
      padding: 1rem 1.25rem;
      text-align: left;
      border-bottom: 1px solid var(--border);
    }

    .comparison-table thead th {
      background: var(--bg-subtle);
      font-family: var(--font-body);
      font-weight: 700;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--text-muted);
    }

    .comparison-table thead th:not(:first-child) { text-align: center; }

    .comparison-table td:not(:first-child) {
      text-align: center;
      color: var(--text-secondary);
    }

    .comparison-table td:first-child {
      font-weight: 500;
      color: var(--text);
    }

    .comparison-table tr:last-child td { border-bottom: none; }

    .recommendation-box {
      background: var(--accent-surface);
      border: 1px solid var(--accent);
      border-radius: 12px;
      padding: 2rem;
      margin-top: 2.5rem;
    }

    .recommendation-box .wave-bg {
      -webkit-mask-image: radial-gradient(ellipse at 30% 60%, black 30%, transparent 70%);
      mask-image: radial-gradient(ellipse at 30% 60%, black 30%, transparent 70%);
    }

    .recommendation-box h3 {
      color: var(--accent);
      margin-bottom: 0.75rem;
      font-family: var(--font-display);
    }

    .recommendation-box p { color: var(--text-secondary); }

    .comparison-card.wave-panel {
      overflow: hidden;
    }

    .comparison-card.wave-panel .wave-bg {
      -webkit-mask-image: radial-gradient(ellipse at 30% 65%, black 32%, transparent 72%);
      mask-image: radial-gradient(ellipse at 30% 65%, black 32%, transparent 72%);
    }

    .comparison-intro .comparison-card.wave-panel:nth-child(2) .wave-bg {
      -webkit-mask-image: radial-gradient(ellipse at 70% 65%, black 32%, transparent 72%);
      mask-image: radial-gradient(ellipse at 70% 65%, black 32%, transparent 72%);
    }

    .table-wrap.wave-panel {
      position: relative;
      overflow: hidden;
      border-radius: 12px;
    }

    .table-wrap.wave-panel .wave-bg {
      -webkit-mask-image: radial-gradient(ellipse at 50% 45%, black 28%, transparent 72%);
      mask-image: radial-gradient(ellipse at 50% 45%, black 28%, transparent 72%);
    }

    .table-wrap.wave-panel .comparison-table {
      position: relative;
      z-index: 1;
      background: rgba(255, 254, 249, 0.94);
    }

    /* ===== SIMPLE TABLE (Cloud vs Local) ===== */
    .simple-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.9rem;
      margin: 1.5rem 0;
      background: var(--bg-elevated);
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid var(--border);
    }

    .simple-table th,
    .simple-table td {
      padding: 0.85rem 1.25rem;
      text-align: left;
      border-bottom: 1px solid var(--border);
    }

    .simple-table thead th {
      background: var(--bg-subtle);
      font-weight: 700;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--text-muted);
    }

    .simple-table td { color: var(--text-secondary); }
    .simple-table td:first-child { font-weight: 500; color: var(--text); }
    .simple-table tr:last-child td { border-bottom: none; }

    /* ===== USE CASES ===== */
    .use-cases-label {
      font-family: var(--font-display);
      font-size: 1.4rem;
      color: var(--text);
      margin-bottom: 1.5rem;
      margin-top: 0.5rem;
      padding-bottom: 0.5rem;
      border-bottom: 2px solid var(--accent);
      display: inline-block;
    }

    .use-cases-label + .use-cases-grid:last-of-type,
    .use-cases-grid + .use-cases-label {
      margin-top: 1rem;
    }

    .use-cases-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
      margin-bottom: 3.5rem;
    }

    .use-case-card {
      background: var(--bg-elevated);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 1.75rem;
      transition: box-shadow var(--transition), transform var(--transition);
      border-top: 4px solid var(--card-accent, var(--accent));
    }

    .use-case-card.color-1 { --card-accent: #72978e; background: rgba(114, 151, 142, 0.07); }
    .use-case-card.color-2 { --card-accent: #878b76; background: rgba(135, 139, 118, 0.08); }
    .use-case-card.color-3 { --card-accent: #d45231; background: rgba(212, 82, 49, 0.07); }
    .use-case-card.color-4 { --card-accent: #db0265; background: rgba(219, 2, 101, 0.06); }
    .use-case-card.color-5 { --card-accent: #08f3f0; background: rgba(8, 243, 240, 0.08); }

    .use-case-card.color-1 .icon-wrap { color: #72978e; }
    .use-case-card.color-2 .icon-wrap { color: #878b76; }
    .use-case-card.color-3 .icon-wrap { color: #d45231; }
    .use-case-card.color-4 .icon-wrap { color: #db0265; }
    .use-case-card.color-5 .icon-wrap { color: #0a9e9c; }

    .use-case-card:hover {
      box-shadow: var(--card-shadow-hover);
      transform: translateY(-2px);
    }

    .use-case-card.span-2 { grid-column: span 2; }

    .use-case-card .icon-wrap {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
    }

    .use-case-card .icon-wrap svg { width: 24px; height: 24px; }

    .use-case-card h4 {
      font-family: var(--font-body);
      font-weight: 700;
      font-size: 1rem;
      margin-bottom: 0.5rem;
      color: var(--text);
    }

    .use-case-card p {
      font-size: 0.9rem;
      line-height: 1.6;
    }

    @media (max-width: 1024px) {
      .use-cases-grid { grid-template-columns: 1fr 1fr; }
      .use-case-card.span-2 { grid-column: span 1; }
    }

    @media (max-width: 600px) {
      .use-cases-grid { grid-template-columns: 1fr; }
    }

    /* ===== PRIVACY SECTION ===== */
    .privacy-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: start;
    }

    .privacy-features { display: flex; flex-direction: column; gap: 1.5rem; }

    .privacy-feature {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
    }

    .privacy-feature .pf-icon {
      flex-shrink: 0;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent);
    }

    .privacy-feature .pf-icon svg { width: 22px; height: 22px; }
    .privacy-feature h4 { font-family: var(--font-body); font-weight: 700; font-size: 0.95rem; margin-bottom: 0.25rem; }
    .privacy-feature p { font-size: 0.9rem; line-height: 1.6; }

    .callout-box {
      background: var(--accent-surface);
      border-left: 4px solid var(--accent);
      border-radius: 0 12px 12px 0;
      padding: 1.75rem 2rem;
      margin-top: 2rem;
    }

    .callout-box h4 {
      font-family: var(--font-display);
      font-size: 1.3rem;
      color: var(--accent);
      margin-bottom: 0.5rem;
    }

    .callout-box p { font-size: 0.95rem; }

    .privacy-image .section-image {
      width: 100%;
      max-width: 480px;
      aspect-ratio: 1 / 1;
    }

    @media (max-width: 1024px) {
      .privacy-grid { grid-template-columns: 1fr; }
      .privacy-image { order: -1; text-align: center; }
      .privacy-image .section-image { margin: 0 auto; }
    }

    /* ===== PROCESS ===== */
    .process-steps {
      display: flex;
      flex-direction: column;
      gap: 0;
      max-width: 700px;
      margin: 0 auto;
    }

    .process-step {
      display: flex;
      gap: 1.5rem;
      position: relative;
      padding-bottom: 2.5rem;
    }

    .process-step:last-child { padding-bottom: 0; }

    .step-marker {
      flex-shrink: 0;
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: url('img/meigpt-4.jpg') center / cover no-repeat;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 1.05rem;
      position: relative;
      z-index: 1;
      text-shadow: 0 1px 4px rgba(0, 0, 0, 0.75);
      box-shadow: 0 2px 8px rgba(26, 26, 26, 0.12);
    }

    .process-step:not(:last-child) .step-marker::after {
      content: '';
      position: absolute;
      top: 52px;
      left: 50%;
      transform: translateX(-50%);
      width: 2px;
      height: calc(100% + 2.5rem - 52px);
      background: var(--border);
    }

    .step-content { padding-top: 0.5rem; }

    .step-content h4 {
      font-family: var(--font-body);
      font-weight: 700;
      font-size: 1.05rem;
      margin-bottom: 0.35rem;
    }

    .step-content p { font-size: 0.9rem; line-height: 1.6; }

    /* ===== PRICING ===== */
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-bottom: 2rem;
    }

    .pricing-grid-2col {
      grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid-single {
      grid-template-columns: 1fr;
      max-width: 420px;
      margin-left: auto;
      margin-right: auto;
    }

    .hero-page {
      padding-top: 5rem;
    }

    .page-header-offset {
      padding-top: 6rem;
    }

    .pricing-card {
      background: var(--bg-elevated);
      border: 1px solid var(--accent);
      border-radius: 12px;
      padding: 2.5rem 2rem;
      display: flex;
      flex-direction: column;
      transition: box-shadow var(--transition), transform var(--transition);
    }

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

    .pricing-card .card-icon {
      width: 40px;
      height: 40px;
      color: var(--accent);
      margin-bottom: 1rem;
    }

    .pricing-card .card-icon svg { width: 28px; height: 28px; }

    .pricing-label {
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--text-muted);
      margin-bottom: 0.25rem;
    }

    .pricing-card h3 {
      font-family: var(--font-display);
      font-size: 1.4rem;
      margin-bottom: 0.75rem;
    }

    .pricing-amount {
      font-family: var(--font-display);
      font-size: 2.5rem;
      color: var(--text);
      margin-bottom: 1.5rem;
    }

    .pricing-amount small {
      font-family: var(--font-body);
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    .pricing-features {
      flex: 1;
      margin-bottom: 2rem;
    }

    .pricing-features li {
      padding: 0.4rem 0;
      padding-left: 1.75rem;
      position: relative;
      font-size: 0.9rem;
      color: var(--text-secondary);
    }

    .pricing-features li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0.75rem;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      border: 2px solid var(--accent);
    }

    .pricing-note {
      text-align: center;
      font-size: 0.85rem;
      color: var(--text-muted);
      max-width: 600px;
      margin: 0 auto;
    }

    .pricing-helper {
      text-align: center;
      margin-top: 1.5rem;
      padding: 1.25rem;
      background: var(--accent-surface);
      border-radius: 10px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .pricing-helper p { font-size: 0.9rem; margin: 0 auto; }

    @media (max-width: 1024px) {
      .pricing-grid,
      .pricing-grid-2col {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
      }
    }

    /* ===== FAQ ===== */
    .faq-panel {
      max-width: 750px;
      margin: 0 auto;
      background: var(--bg-elevated);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 0 2rem;
    }

    .faq-panel .wave-bg {
      -webkit-mask-image: radial-gradient(ellipse at 70% 40%, black 25%, transparent 70%);
      mask-image: radial-gradient(ellipse at 70% 40%, black 25%, transparent 70%);
    }

    .faq-list {
      max-width: 750px;
      margin: 0 auto;
    }

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

    .faq-item details { padding: 0; }

    .faq-item summary {
      padding: 1.25rem 2rem 1.25rem 0;
      font-weight: 500;
      font-size: 1rem;
      color: var(--text);
      cursor: pointer;
      list-style: none;
      position: relative;
      transition: color var(--transition);
    }

    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary::marker { display: none; }

    .faq-item summary::after {
      content: '+';
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      font-size: 1.4rem;
      color: var(--text-muted);
      transition: transform 0.2s ease;
      font-weight: 300;
    }

    .faq-item details[open] summary::after {
      content: '−';
    }

    .faq-item summary:hover { color: var(--accent); }

    .faq-item .faq-answer {
      padding: 0 0 1.25rem;
      color: var(--text-secondary);
      font-size: 0.95rem;
      line-height: 1.7;
    }

    /* ===== ABOUT ===== */
    .about-inner {
      display: flex;
      gap: 3rem;
      align-items: center;
      max-width: 750px;
      margin: 0 auto;
    }

    .about-avatar {
      flex-shrink: 0;
      width: 100px;
      height: 100px;
      border-radius: 50%;
      background: var(--accent);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      font-size: 2.2rem;
    }

    .about-text h3 { margin-bottom: 0.75rem; }
    .about-text p { margin-bottom: 0.75rem; }

    .about-text a {
      color: var(--accent);
      font-weight: 500;
      transition: opacity var(--transition);
    }

    .about-text a:hover { opacity: 0.8; }

    @media (max-width: 600px) {
      .about-inner { flex-direction: column; text-align: center; }
    }

    /* ===== CONTACT ===== */
    .contact-inner {
      max-width: 620px;
      margin: 0 auto;
    }

    .contact-panel {
      background: var(--bg-elevated);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 2rem;
    }

    .contact-panel .wave-bg {
      -webkit-mask-image: radial-gradient(ellipse at 20% 50%, black 28%, transparent 72%);
      mask-image: radial-gradient(ellipse at 20% 50%, black 28%, transparent 72%);
    }

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

    .form-group label {
      display: block;
      font-size: 0.85rem;
      font-weight: 700;
      margin-bottom: 0.4rem;
      color: var(--text);
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%;
      padding: 0.75rem 1rem;
      background: var(--bg-elevated);
      border: 1px solid var(--border);
      border-radius: 8px;
      font-size: 0.95rem;
      transition: border-color var(--transition);
      color: var(--text);
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      outline: none;
      border-color: var(--accent);
    }

    .form-group textarea {
      resize: vertical;
      min-height: 130px;
    }

    .form-group select {
      appearance: none;
      -webkit-appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M4.5 6l3.5 4 3.5-4z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 0.75rem center;
      padding-right: 2.5rem;
    }

    .contact-submit {
      width: 100%;
      padding: 0.9rem;
      font-size: 1rem;
    }

    .turnstile-wrap {
      min-height: 65px;
    }

    .form-honeypot {
      position: absolute;
      left: -9999px;
      width: 1px;
      height: 1px;
      overflow: hidden;
      opacity: 0;
      pointer-events: none;
    }

    .contact-alt {
      text-align: center;
      margin-top: 1.75rem;
      color: var(--text-muted);
      font-size: 0.9rem;
    }

    .contact-alt a { color: var(--accent); font-weight: 500; }

    /* ===== FOOTER ===== */
    .footer {
      background: var(--section-alt);
      color: var(--text-muted);
      padding: 4rem 0 2rem;
      border-top: 1px solid var(--border);
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1.5fr 1fr 2fr;
      gap: 3rem;
      padding-bottom: 3rem;
      border-bottom: 1px solid var(--border);
    }

    .footer-brand-name {
      font-family: var(--font-display);
      font-size: 1.4rem;
      color: var(--text);
      margin-bottom: 0.75rem;
    }

    .footer-brand p { font-size: 0.85rem; color: var(--text-muted); }

    .footer-nav h4 {
      color: var(--text);
      font-family: var(--font-body);
      font-weight: 700;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 1rem;
    }

    .footer-nav a {
      display: block;
      font-size: 0.85rem;
      color: var(--text-muted);
      padding: 0.3rem 0;
      transition: color var(--transition);
    }

    .footer-nav a:hover { color: var(--accent); }

    .footer-legal h4 {
      color: var(--text);
      font-family: var(--font-body);
      font-weight: 700;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 1rem;
      margin-top: 2.5rem;
    }

    .footer-legal h4:first-child { margin-top: 0; }

    .footer-legal p, .footer-legal address {
      font-size: 0.8rem;
      font-style: normal;
      line-height: 1.7;
      color: var(--text-muted);
      margin-bottom: 0.75rem;
    }

    .footer-legal strong {
      color: var(--text);
      font-weight: 500;
      display: block;
      margin-top: 1rem;
      margin-bottom: 0.25rem;
    }

    .footer-legal strong:first-child { margin-top: 0; }

    .footer-bottom {
      padding-top: 2rem;
      text-align: center;
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    @media (max-width: 1024px) {
      .footer-top { grid-template-columns: 1fr; }
    }

    /* ===== SCROLL REVEAL ===== */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

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

    .reveal-stagger > .reveal:nth-child(1) { transition-delay: 0.05s; }
    .reveal-stagger > .reveal:nth-child(2) { transition-delay: 0.1s; }
    .reveal-stagger > .reveal:nth-child(3) { transition-delay: 0.15s; }
    .reveal-stagger > .reveal:nth-child(4) { transition-delay: 0.2s; }
    .reveal-stagger > .reveal:nth-child(5) { transition-delay: 0.25s; }
    .reveal-stagger > .reveal:nth-child(6) { transition-delay: 0.3s; }
    .reveal-stagger > .reveal:nth-child(7) { transition-delay: 0.35s; }
    .reveal-stagger > .reveal:nth-child(8) { transition-delay: 0.4s; }
    .reveal-stagger > .reveal:nth-child(9) { transition-delay: 0.45s; }
    .reveal-stagger > .reveal:nth-child(10) { transition-delay: 0.5s; }

    .reveal-delay-md { transition-delay: 0.25s; }

    @media (prefers-reduced-motion: reduce) {
      .reveal { opacity: 1; transform: none; transition: none; }
      .reveal-stagger > .reveal { transition-delay: 0s !important; }
    }

    /* ===== UTILITIES ===== */
    .text-center { text-align: center; }
    .mt-1 { margin-top: 0.5rem; }
    .mt-2 { margin-top: 1rem; }
    .mt-3 { margin-top: 1.5rem; }
    .mb-2 { margin-bottom: 1rem; }

    /* ===== MOBILE OPTIMIZATIONS ===== */
    @media (max-width: 1024px) {
      section { padding: 3.5rem 0; }

      .container { padding: 0 1.125rem; }

      .section-header {
        margin-bottom: 2.5rem;
      }

      .section-header p {
        font-size: 0.95rem;
      }

      .hero-content p {
        font-size: 1rem;
      }

      .hero-buttons {
        flex-direction: column;
        width: 100%;
      }

      .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        min-height: 48px;
      }

      .comparison-card {
        padding: 1.5rem;
      }

      .comparison-table,
      .simple-table {
        font-size: 0.82rem;
      }

      .comparison-table th,
      .comparison-table td,
      .simple-table th,
      .simple-table td {
        padding: 0.75rem 0.85rem;
      }

      .use-case-card {
        padding: 1.25rem;
      }

      .process-step {
        gap: 1rem;
        padding-bottom: 2rem;
      }

      .step-marker {
        width: 44px;
        height: 44px;
        font-size: 0.95rem;
      }

      .process-step:not(:last-child) .step-marker::after {
        top: 44px;
        height: calc(100% + 2rem - 44px);
      }

      .pricing-card {
        padding: 2rem 1.5rem;
      }

      .footer {
        padding: 3rem 0 1.5rem;
      }

      .footer-top {
        gap: 2rem;
        padding-bottom: 2rem;
      }

      .form-group input,
      .form-group textarea,
      .form-group select {
        font-size: 16px;
      }

      .btn {
        min-height: 44px;
      }
    }

    @media (max-width: 1024px) {
      h1 { font-size: 2rem; }

      section { padding: 3rem 0; }

      .recommendation-box,
      .callout-box,
      .faq-panel,
      .contact-panel {
        padding: 1.25rem 1.5rem;
      }

      .faq-panel {
        padding: 0 1.25rem;
      }

      /* ===== MOBILE FULLWIDTH PHOTOS ===== */

      /* Hero: Foto oben clean, Text darunter auf hellem Hintergrund */
      .hero {
        padding: 0 0 2.5rem;
        min-height: auto;
        position: relative;
        display: block;
        background: var(--bg);
        overflow: hidden;
      }

      .hero .container {
        padding-inline: 0;
      }

      .hero-inner {
        display: flex;
        flex-direction: column;
        position: relative;
        width: 100%;
        gap: 0;
      }

      .hero-image {
        position: relative;
        inset: auto;
        display: block;
        margin: 0;
        z-index: 0;
        order: -1;
        flex-shrink: 0;
        width: 100%;
        aspect-ratio: 25 / 21;
        height: auto;
        min-height: unset;
        max-height: unset;
        overflow: hidden;
      }

      .hero-image .section-image {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        max-width: none;
        max-height: none !important;
        min-height: 0;
        aspect-ratio: unset !important;
        object-fit: cover;
        object-position: center 20%;
        border-radius: 0;
        border: none;
        box-shadow: none;
        display: block;
      }

      .hero-content {
        position: relative;
        z-index: 1;
        padding: 1.25rem 1.125rem 0;
        background: transparent;
        width: 100%;
        text-align: left;
      }

      .hero-content h1 {
        color: var(--text);
        font-size: 1.65rem;
        line-height: 1.25;
        margin-bottom: 0.75rem;
      }

      .hero-content p {
        color: var(--text-secondary);
        font-size: 0.92rem;
        line-height: 1.6;
        margin-bottom: 1.25rem;
      }

      .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
      }

      .hero-buttons .btn {
        width: auto;
        min-width: 180px;
      }

      /* Datenschutz-Foto (Bild 3): Vollbild mit Text-Overlay */
      .privacy-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
      }

      .privacy-image {
        order: -1;
        position: relative;
        margin-inline: calc(50% - 50vw);
        width: 100vw;
        max-width: 100vw;
        text-align: left;
      }

      .privacy-image .section-image {
        width: 100%;
        height: auto;
        aspect-ratio: 20 / 13;
        max-width: none;
        object-fit: cover;
        border-radius: 0;
        border: none;
        box-shadow: none;
        display: block;
      }

      .privacy-features {
        padding-top: 1.75rem;
      }

      .hero.hero-page {
        padding-top: 0;
      }

      .page-header-offset {
        padding-top: 5rem;
      }

      .section-header > .btn {
        display: inline-flex;
        width: 100%;
        justify-content: center;
      }

      .footer-legal p {
        font-size: 0.88rem;
        line-height: 1.75;
      }

      .comparison-table {
        min-width: 520px;
      }
    }

    @media (max-width: 600px) {
      .hero-content h1 {
        font-size: 1.5rem;
      }

      .pricing-amount {
        font-size: 2rem;
      }

      .comparison-table {
        min-width: 480px;
      }
    }