/* Imported from basis-startseite.html and adapted for WP front page */
.site-main {
  padding: 0;
}

.site-main > .container {
  width: 100%;
  max-width: none;
  margin: 0;
}

body.admin-bar .landing-home-nav {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .landing-home-nav {
    top: 46px;
  }
}

:root {
    --ui-font-sans: 'Space Grotesk', 'Segoe UI', Arial, sans-serif;
    --ui-bg: #f4f6fb;
    --ui-bg-strong: #eef2ff;
    --ui-surface: rgba(255, 255, 255, 0.92);
    --ui-surface-strong: #ffffff;
    --ui-surface-muted: #f8faff;
    --ui-text: #111827;
    --ui-text-soft: #475569;
    --ui-text-muted: #6b7280;
    --ui-line: rgba(15, 23, 42, 0.1);
    --ui-line-strong: rgba(15, 23, 42, 0.16);
    --ui-brand: #6c63ff;
    --ui-brand-strong: #564dd8;
    --ui-brand-soft: #ede9fe;
    --ui-brand-ring: rgba(108, 99, 255, 0.18);
    --ui-success-bg: #ecfdf5;
    --ui-success-line: #a7f3d0;
    --ui-success-text: #047857;
    --ui-danger-bg: #fff1f2;
    --ui-danger-line: #fecdd3;
    --ui-danger-text: #be123c;
    --ui-shadow-sm: 0 12px 32px rgba(15, 23, 42, 0.08);
    --ui-shadow-md: 0 24px 60px rgba(15, 23, 42, 0.14);
    --ui-shadow-step-soft: 0 0 20px rgba(15, 23, 42, 0.08);
    --ui-radius-sm: 0.875rem;
    --ui-radius-md: 1rem;
    --ui-radius-lg: 1.5rem;
    --ui-radius-xl: 1.75rem;
    --ui-button-radius-sm: 0.75rem;
    --ui-button-radius-md: 1rem;
    --ui-control-height: 3rem;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--ui-font-sans);
    background: var(--ui-bg);
    color: var(--ui-text);
    overflow-x: hidden;
    line-height: 1.6;
  }

  /* ───── NAVBAR ───── */
  .landing-home-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2.5rem;
    height: 4rem;
    background: rgba(244, 246, 251, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--ui-line);
  }

  .landing-home .nav-logo {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--ui-text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
  }

  .landing-home .nav-logo-dot {
    width: 8px; height: 8px;
    background: var(--ui-brand);
    border-radius: 50%;
    display: inline-block;
  }

  .landing-home .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
  }

  .landing-home .nav-links a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--ui-text-soft);
    text-decoration: none;
    transition: color 0.2s;
  }
  .landing-home .nav-links a:hover { color: var(--ui-text); }

  .landing-home .nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .landing-home .btn-ghost {
    font-family: var(--ui-font-sans);
    font-size: 1rem;
    font-weight: 500;
    color: var(--ui-text-soft);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: var(--ui-button-radius-sm);
    transition: color 0.2s, background 0.2s;
    text-decoration: none;
  }
  .landing-home .btn-ghost:hover { color: var(--ui-text); background: var(--ui-line); }

  .landing-home .btn-primary {
    font-family: var(--ui-font-sans);
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: var(--ui-brand);
    border: none;
    cursor: pointer;
    padding: 0.6rem 1.25rem;
    border-radius: var(--ui-button-radius-sm);
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    text-decoration: none;
    box-shadow: 0 4px 16px var(--ui-brand-ring);
  }
  .landing-home .btn-primary:hover {
    background: var(--ui-brand-strong);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px var(--ui-brand-ring);
  }

  .btn-primary-lg {
    font-family: var(--ui-font-sans);
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: var(--ui-brand);
    border: none;
    cursor: pointer;
    padding: 0.875rem 2rem;
    border-radius: var(--ui-button-radius-md);
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 24px var(--ui-brand-ring);
  }
  .btn-primary-lg:hover {
    background: var(--ui-brand-strong);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px var(--ui-brand-ring);
  }

  .btn-outline-lg {
    font-family: var(--ui-font-sans);
    font-size: 1rem;
    font-weight: 500;
    color: var(--ui-text);
    background: var(--ui-surface-strong);
    border: 1.5px solid var(--ui-line-strong);
    cursor: pointer;
    padding: 0.875rem 2rem;
    border-radius: var(--ui-button-radius-md);
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }
  .btn-outline-lg:hover {
    border-color: var(--ui-brand);
    box-shadow: 0 4px 16px var(--ui-brand-ring);
    transform: translateY(-1px);
  }

  /* ───── HERO ───── */
  .hero {
    min-height: calc(100vh - 74px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5.5rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 50% -10%, rgba(108, 99, 255, 0.14) 0%, transparent 70%),
      radial-gradient(ellipse 40% 40% at 80% 60%, rgba(108, 99, 255, 0.07) 0%, transparent 60%),
      var(--ui-bg);
    z-index: 0;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--ui-brand-soft);
    color: var(--ui-brand-strong);
    font-size: 1rem;
    font-weight: 600;
    padding: 0.375rem 1rem;
    border-radius: 99px;
    margin-bottom: 1.75rem;
    border: 1px solid rgba(108, 99, 255, 0.2);
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.6s ease both;
  }

  .hero-badge-dot {
    width: 6px; height: 6px;
    background: var(--ui-brand);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
  }

  .hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.25rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--ui-text);
    max-width: 1200px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.6s 0.1s ease both;
  }

  .hero h1 span {
    color: var(--ui-brand);
    position: relative;
  }

  .hero p {
    font-size: 1.125rem;
    color: var(--ui-text-soft);
    max-width: 800px;
    margin: 1.5rem auto 0;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.6s 0.2s ease both;
  }

  .hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.6s 0.3s ease both;
    flex-wrap: wrap;
  }

  .hero-hint {
    font-size: 1rem;
    color: var(--ui-text-muted);
    margin-top: 1rem;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.6s 0.4s ease both;
  }

  /* ── Dashboard Screenshot Placeholder ── */
  /* Funktionen Hero Layout */
  .landing-funktionen .hero {
    min-height: auto;
    padding: 7rem 2rem 4.25rem;
    justify-content: flex-start;
    text-align: left;
    overflow: visible;
  }

  .landing-preise .hero {
    min-height: auto;
    padding: 7rem 2rem 4.25rem;
    justify-content: flex-start;
    text-align: left;
    overflow: visible;
  }

  .landing-testphase .hero {
    min-height: auto;
    padding: 7rem 2rem 4.25rem;
    justify-content: flex-start;
    text-align: left;
    overflow: visible;
  }

  .landing-ueber-uns .hero {
    min-height: auto;
    padding: 7rem 2rem 4.25rem;
    justify-content: flex-start;
    text-align: left;
    overflow: visible;
  }

  .landing-kontakt .hero {
    min-height: auto;
    padding: 7rem 2rem 4.25rem;
    justify-content: flex-start;
    text-align: left;
    overflow: visible;
  }

  .landing-funktionen .hero-bg {
    background:
      radial-gradient(ellipse 80% 60% at 50% -10%, rgba(108, 99, 255, 0.14) 0%, transparent 70%),
      radial-gradient(ellipse 40% 40% at 80% 60%, rgba(108, 99, 255, 0.07) 0%, transparent 60%),
      linear-gradient(
        to bottom,
        var(--ui-bg) 0%,
        var(--ui-bg) 80%,
        var(--ui-surface-strong) 80%,
        var(--ui-surface-strong) 100%
      );
  }

  .landing-preise .hero-bg {
    background:
      radial-gradient(ellipse 80% 60% at 50% -10%, rgba(108, 99, 255, 0.14) 0%, transparent 70%),
      radial-gradient(ellipse 40% 40% at 80% 60%, rgba(108, 99, 255, 0.07) 0%, transparent 60%),
      linear-gradient(
        to bottom,
        var(--ui-bg) 0%,
        var(--ui-bg) 80%,
        var(--ui-surface-strong) 80%,
        var(--ui-surface-strong) 100%
      );
  }

  .landing-testphase .hero-bg {
    background:
      radial-gradient(ellipse 80% 60% at 50% -10%, rgba(108, 99, 255, 0.14) 0%, transparent 70%),
      radial-gradient(ellipse 40% 40% at 80% 60%, rgba(108, 99, 255, 0.07) 0%, transparent 60%),
      var(--ui-bg);
  }

  .landing-ueber-uns .hero-bg {
    background:
      radial-gradient(ellipse 80% 60% at 50% -10%, rgba(108, 99, 255, 0.14) 0%, transparent 70%),
      radial-gradient(ellipse 40% 40% at 80% 60%, rgba(108, 99, 255, 0.07) 0%, transparent 60%),
      linear-gradient(
        to bottom,
        var(--ui-bg) 0%,
        var(--ui-bg) 80%,
        var(--ui-surface-strong) 80%,
        var(--ui-surface-strong) 100%
      );
  }

  .landing-kontakt .hero-bg {
    background:
      radial-gradient(ellipse 80% 60% at 50% -10%, rgba(108, 99, 255, 0.14) 0%, transparent 70%),
      radial-gradient(ellipse 40% 40% at 80% 60%, rgba(108, 99, 255, 0.07) 0%, transparent 60%),
      var(--ui-bg);
  }

  .funk-hero-grid {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 4rem;
    position: relative;
    z-index: 2;
  }

  .funk-hero-grid::after {
    content: '';
    position: absolute;
    top: 0.9rem;
    bottom: 0.9rem;
    left: 50%;
    width: 1px;
    background: linear-gradient(
      to bottom,
      transparent,
      var(--ui-line-strong) 20%,
      var(--ui-line-strong) 80%,
      transparent
    );
    pointer-events: none;
    z-index: 1;
  }

  .funk-hero-left,
  .funk-hero-right {
    min-width: 0;
  }

  .hero-subline {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ui-brand);
    letter-spacing: 0.07em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
  }

  .hero-subline::before {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ui-brand);
    border-radius: 2px;
  }

  .hero-h1 {
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--ui-text);
    margin-bottom: 1.5rem;
  }

  .hero-h1 .hero-word {
    display: inline-block;
    color: var(--ui-text);
    background: rgba(108, 99, 255, 0.18);
    border-radius: 0.5rem;
    padding: 0 0.3em;
  }

  .hero-h1 .pill {
    display: inline-block;
    background: var(--ui-brand-soft);
    color: var(--ui-brand-strong);
    border-radius: 0.5rem;
    padding: 0 0.3em;
  }

  .landing-funktionen .hero p {
    max-width: 60ch;
    margin: 1.1rem 0 0;
    font-size: 1.05rem;
    line-height: 1.7;
  }

  .landing-preise .hero p {
    max-width: 60ch;
    margin: 1.1rem 0 0;
    font-size: 1.05rem;
    line-height: 1.7;
  }

  .landing-testphase .hero p {
    max-width: 60ch;
    margin: 1.1rem 0 0;
    font-size: 1.05rem;
    line-height: 1.7;
  }

  .landing-ueber-uns .hero p {
    max-width: 60ch;
    margin: 1.1rem 0 0;
    font-size: 1.05rem;
    line-height: 1.7;
  }

  .landing-kontakt .hero p {
    max-width: 60ch;
    margin: 1.1rem 0 0;
    font-size: 1.05rem;
    line-height: 1.7;
  }

  .funk-hero-intro {
    color: var(--ui-text-soft);
  }

  .funk-hero-right {
    padding-top: 0.4rem;
  }

  .funk-hero-right h2 {
    font-size: clamp(1.45rem, 2.3vw, 2rem);
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: var(--ui-text);
    margin: 0;
  }

  .funk-hero-right > p {
    margin-top: 1rem;
    color: var(--ui-text-soft);
  }

  .funk-hero-mini-bento {
    margin-top: 1.35rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
  }

  .landing-funktionen .funk-hero-mini-bento .bento-card {
    padding: 1.15rem 1.05rem;
    border-radius: var(--ui-radius-md);
    min-height: 0;
  }

  .landing-preise .funk-hero-mini-bento .bento-card {
    padding: 1.15rem 1.05rem;
    border-radius: var(--ui-radius-md);
    min-height: 0;
  }

  .landing-testphase .funk-hero-mini-bento .bento-card {
    padding: 1.15rem 1.05rem;
    border-radius: var(--ui-radius-md);
    min-height: 0;
  }

  .landing-ueber-uns .funk-hero-mini-bento .bento-card {
    padding: 1.15rem 1.05rem;
    border-radius: var(--ui-radius-md);
    min-height: 0;
  }

  .landing-kontakt .funk-hero-mini-bento .bento-card {
    padding: 1.15rem 1.05rem;
    border-radius: var(--ui-radius-md);
    min-height: 0;
  }

  .landing-funktionen .funk-hero-mini-bento .bento-label {
    margin-bottom: 0.4rem;
    line-height: 1.25;
  }

  .landing-preise .funk-hero-mini-bento .bento-label {
    margin-bottom: 0.4rem;
    line-height: 1.25;
  }

  .landing-testphase .funk-hero-mini-bento .bento-label {
    margin-bottom: 0.4rem;
    line-height: 1.25;
  }

  .landing-ueber-uns .funk-hero-mini-bento .bento-label {
    margin-bottom: 0.4rem;
    line-height: 1.25;
  }

  .landing-kontakt .funk-hero-mini-bento .bento-label {
    margin-bottom: 0.4rem;
    line-height: 1.25;
  }

  .landing-funktionen .funk-hero-mini-bento .bento-stat {
    margin: 0.1rem 0 0;
    font-size: clamp(1.7rem, 2.8vw, 2.2rem);
    line-height: 1.05;
  }

  .landing-preise .funk-hero-mini-bento .bento-stat {
    margin: 0.1rem 0 0;
    font-size: clamp(1.7rem, 2.8vw, 2.2rem);
    line-height: 1.05;
  }

  .landing-testphase .funk-hero-mini-bento .bento-stat {
    margin: 0.1rem 0 0;
    font-size: clamp(1.7rem, 2.8vw, 2.2rem);
    line-height: 1.05;
  }

  .landing-ueber-uns .funk-hero-mini-bento .bento-stat {
    margin: 0.1rem 0 0;
    font-size: clamp(1.7rem, 2.8vw, 2.2rem);
    line-height: 1.05;
  }

  .landing-kontakt .funk-hero-mini-bento .bento-stat {
    margin: 0.1rem 0 0;
    font-size: clamp(1.7rem, 2.8vw, 2.2rem);
    line-height: 1.05;
  }

  .landing-funktionen .funk-hero-mini-bento .bento-desc {
    margin-top: 0.55rem;
  }

  .landing-preise .funk-hero-mini-bento .bento-desc {
    margin-top: 0.55rem;
  }

  .landing-testphase .funk-hero-mini-bento .bento-desc {
    margin-top: 0.55rem;
  }

  .landing-ueber-uns .funk-hero-mini-bento .bento-desc {
    margin-top: 0.55rem;
  }

  .landing-kontakt .funk-hero-mini-bento .bento-desc {
    margin-top: 0.55rem;
  }

  .funk-hero-actions {
    width: 100%;
    margin-top: 4.00rem;
    justify-content: center;
  }

  .hero-trustline {
    margin-top: 0.95rem;
    font-size: 1rem;
    color: var(--ui-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    width: 100%;
    text-align: center;
  }

  .hero-trustline span {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
  }

  .hero-trustline span:not(:last-child)::after {
    content: '•';
    color: var(--ui-brand);
    font-weight: 700;
  }
  .hero-visual {
    position: relative;
    z-index: 1;
    margin-top: 4rem;
    width: 100%;
    max-width: 980px;
    animation: fadeInUp 0.8s 0.5s ease both;
  }

  .landing-funktionen .hero-visual {
    margin-top: 3.25rem;
    margin-bottom: -7rem;
    max-width: 1100px;
    z-index: 3;
  }

  .landing-preise .hero-visual {
    margin-top: 3.25rem;
    margin-bottom: -7rem;
    max-width: 1180px;
    z-index: 3;
  }

  .landing-testphase .hero-visual {
    margin-top: 3.25rem;
    margin-bottom: -7rem;
    max-width: 1180px;
    z-index: 3;
  }

  .landing-ueber-uns .hero-visual {
    margin-top: 3.25rem;
    margin-bottom: -7rem;
    max-width: 980px;
    z-index: 3;
  }

  .landing-preise .features-section {
    padding-top: 12rem;
  }

  .landing-testphase .features-section {
    padding-top: 6.5rem;
  }

  .landing-ueber-uns .features-section {
    padding-top: 10rem;
  }

  .landing-kontakt .features-section {
    padding-top: 6.5rem;
  }

  .landing-testphase .features-section .steps-grid {
    margin-bottom: 6.5rem;
  }

  .pricing-hero-shell {
    background: var(--ui-surface-strong);
    border: 1.5px solid var(--ui-line);
    border-radius: var(--ui-radius-xl);
    box-shadow: var(--ui-shadow-md);
    padding: 1.5rem;
  }

  .pricing-shell-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.3rem 0.35rem 1rem;
    color: var(--ui-text-soft);
    font-size: 1rem;
    font-weight: 600;
  }

  .landing-funktionen .features-section {
    padding-top: 10rem;
  }

  .landing-preise .how-section {
    padding-top: 10rem;
  }

  .landing-testphase .how-section {
    padding-top: 8rem;
  }

  .landing-ueber-uns .how-section {
    padding-top: 7rem;
  }

  .landing-kontakt .cta-section {
    background: var(--ui-surface-strong);
  }

  .kontakt-preview-shell {
    width: 100%;
  }

  .kontakt-preview-iframe {
    border: 1px dashed var(--ui-line-strong);
    border-radius: var(--ui-radius-md);
    padding: 1rem;
    background: var(--ui-surface-muted);
    margin-bottom: 0.5rem;
  }

  .kontakt-preview-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ui-text);
    margin-bottom: 0.4rem;
  }

  .kontakt-preview-code {
    font-size: 1rem;
    color: var(--ui-text-muted);
    line-height: 1.55;
    word-break: break-all;
  }

  .landing-preise .cta-section {
    background: var(--ui-surface-strong);
  }

  .landing-testphase .cta-section {
    background: var(--ui-surface-strong);
  }

  .landing-ueber-uns .cta-section {
    background: var(--ui-surface-strong);
  }

  .about-portrait {
    object-fit: cover;
    object-position: center 20%;
  }

  .about-portrait-bw {
    filter: grayscale(100%);
  }

  .screenshot-frame {
    background: var(--ui-surface-strong);
    border-radius: var(--ui-radius-xl);
    border: 1.5px solid var(--ui-line);
    box-shadow: var(--ui-shadow-md), 0 0 0 8px rgba(108,99,255,0.06);
    overflow: hidden;
  }

  .screenshot-topbar {
    background: var(--ui-surface-muted);
    border-bottom: 1px solid var(--ui-line);
    padding: 0.875rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .dot { width: 10px; height: 10px; border-radius: 50%; }
  .dot-red { background: #fc5353; }
  .dot-yellow { background: #fdbc2c; }
  .dot-green { background: #27c840; }

  .screenshot-url {
    flex: 1;
    background: var(--ui-surface-strong);
    border: 1px solid var(--ui-line);
    border-radius: 6px;
    padding: 0.3rem 1rem;
    font-size: 1rem;
    color: var(--ui-text-muted);
    margin: 0 1rem;
    text-align: center;
  }

  /* ── VIDEO PLACEHOLDER inside frame ── */
  .video-placeholder {
    background: linear-gradient(135deg, #eef2ff 0%, #f4f6fb 50%, #ede9fe 100%);
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1.25rem;
    position: relative;
    overflow: hidden;
  }

  .video-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(108,99,255,0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(108,99,255,0.06) 1px, transparent 1px);
    background-size: 40px 40px;
  }

  .hero-media-wrap {
    position: relative;
    background: #dfe4f5;
    overflow: hidden;
    border-top: 1px solid var(--ui-line);
  }

  .hero-video {
    display: block;
    width: 100%;
    aspect-ratio: 1794 / 857;
    object-fit: cover;
    object-position: center top;
    background: #dfe4f5;
  }

  .hero-video-fallback {
    display: block;
    width: 100%;
    height: auto;
  }

  /* Fake dashboard content inside placeholder */
  .fake-dashboard {
    width: 90%;
    max-width: 800px;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 1rem;
    position: relative;
    z-index: 1;
  }

  .fake-sidebar {
    background: var(--ui-surface-strong);
    border-radius: var(--ui-radius-md);
    border: 1px solid var(--ui-line);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .fake-nav-item {
    padding: 0.5rem 0.75rem;
    border-radius: var(--ui-radius-sm);
    font-size: 1rem;
    font-weight: 500;
    color: var(--ui-text-soft);
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .fake-nav-item.active {
    background: var(--ui-brand-soft);
    color: var(--ui-brand-strong);
  }

  .fake-main {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .fake-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }

  .fake-stat-card {
    background: var(--ui-surface-strong);
    border-radius: var(--ui-radius-md);
    border: 1px solid var(--ui-line);
    padding: 0.875rem 1rem;
  }

  .fake-stat-label {
    font-size: 1rem;
    color: var(--ui-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
  }

  .fake-stat-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--ui-text);
    line-height: 1;
  }

  .fake-stat-delta {
    font-size: 1rem;
    color: var(--ui-success-text);
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }

  .fake-chart {
    background: var(--ui-surface-strong);
    border-radius: var(--ui-radius-md);
    border: 1px solid var(--ui-line);
    padding: 1rem;
    height: 120px;
    display: flex;
    align-items: flex-end;
    gap: 6px;
    overflow: hidden;
  }

  .fake-bar {
    flex: 1;
    background: var(--ui-brand-soft);
    border-radius: 4px 4px 0 0;
    min-height: 20px;
    transition: background 0.2s;
  }
  .fake-bar.accent { background: var(--ui-brand); }

  .video-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.7);
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 99px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(8px);
    white-space: nowrap;
  }

  .play-icon {
    width: 20px; height: 20px;
    background: var(--ui-brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    color: white;
    flex-shrink: 0;
  }

  /* ───── LOGO BAND ───── */
  /* ───── SECTIONS ───── */
  .landing-home section { padding: 6rem 2rem; }

  .landing-home .container { max-width: 1100px; margin: 0 auto; }

  .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--ui-brand);
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
  }

  .section-badge::before {
    content: '';
    display: block;
    width: 6px; height: 6px;
    background: var(--ui-brand);
    border-radius: 50%;
  }

  .section-title {
    font-size: clamp(1.875rem, 4vw, 2.875rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.15;
    color: var(--ui-text);
    max-width: 560px;
  }

  .section-subtitle {
    font-size: 1.0625rem;
    color: var(--ui-text-soft);
    max-width: 520px;
    margin-top: 0.875rem;
    line-height: 1.7;
  }

  /* ───── STATS BENTO ───── */
  .stats-section {
    background: var(--ui-bg);
    padding: 5rem 2rem;
  }

  .stats-header {
    text-align: center;
    margin-bottom: 3.5rem;
  }

  .stats-header .section-title { max-width: 100%; }

  .bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

  .bento-card {
    background: var(--ui-surface-strong);
    border-radius: var(--ui-radius-lg);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.25s;
  }

  .bento-card:hover {
    box-shadow: var(--ui-shadow-sm);
  }

  .bento-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--ui-brand), transparent);
    opacity: 1;
  }

  .bento-stat {
    font-size: 3rem;
    font-weight: 700;
    color: var(--ui-brand);
    letter-spacing: -0.04em;
    line-height: 1;
    margin: 0.75rem 0 0.5rem;
  }

  .bento-label {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ui-text-muted);
  }

  .bento-desc {
    font-size: 1rem;
    color: var(--ui-text-soft);
    margin-top: 0.75rem;
    line-height: 1.6;
  }

  .bento-sparkline {
    margin-top: 1.5rem;
    height: 48px;
    display: flex;
    align-items: flex-end;
    gap: 4px;
  }

  .sparkbar {
    flex: 1;
    border-radius: 3px;
    background: var(--ui-brand-soft);
  }
  .sparkbar.hi { background: var(--ui-brand); }

  /* ───── FEATURES SPLIT ───── */
  .features-section { background: var(--ui-surface-strong); }

  .split-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 6rem;
  }

  .split-feature:last-child { margin-bottom: 0; }

  .split-feature.reverse { direction: rtl; }
  .split-feature.reverse > * { direction: ltr; }

  .feature-text { }

  .feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 2rem;
  }

  .feature-inline-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.7rem;
    border-radius: 999px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: var(--ui-brand-strong);
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  }

  .feature-inline-cta-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.18s ease;
  }

  .feature-inline-cta:hover .feature-inline-cta-arrow {
    transform: translateX(3px);
  }

  .feature-tag {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--ui-success-text);
    background: var(--ui-success-bg);
    border: 1px solid var(--ui-success-line);
    padding: 0.375rem 0.875rem;
    border-radius: 99px;
  }

  .feature-tag::before {
    content: '✓';
    font-size: 1rem;
    font-weight: 700;
  }

  /* ── Feature Screenshot / GIF Placeholder ── */
  .feature-visual {
    background: linear-gradient(135deg, var(--ui-bg-strong) 0%, var(--ui-bg) 100%);
    border-radius: var(--ui-radius-sm);
    border: none;
    overflow: hidden;
    box-shadow: var(--ui-shadow-sm);
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
  }

  .feature-visual-icon {
    width: 56px; height: 56px;
    background: var(--ui-brand-soft);
    border-radius: var(--ui-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
  }

  .feature-visual-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ui-text-muted);
    text-align: center;
    padding: 0 2rem;
  }

  .feature-visual-sublabel {
    font-size: 1rem;
    color: var(--ui-brand);
    font-weight: 500;
    background: var(--ui-brand-soft);
    padding: 0.25rem 0.75rem;
    border-radius: 99px;
  }

  /* Fake mini UI inside feature visual */
  .feature-mini-ui {
    width: 85%;
    background: var(--ui-surface-strong);
    border-radius: var(--ui-radius-lg);
    border: 1px solid var(--ui-line);
    box-shadow: var(--ui-shadow-sm);
    overflow: hidden;
    position: absolute;
    inset: 1.5rem;
  }

  .mini-ui-header {
    background: var(--ui-surface-muted);
    border-bottom: 1px solid var(--ui-line);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .mini-ui-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ui-text);
    flex: 1;
  }

  .mini-badge {
    font-size: 1rem;
    font-weight: 600;
    background: var(--ui-brand-soft);
    color: var(--ui-brand);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
  }

  .mini-ui-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
  }

  .mini-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .mini-avatar {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--ui-brand-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: var(--ui-brand);
    flex-shrink: 0;
  }

  .mini-info { flex: 1; }

  .mini-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ui-text);
    line-height: 1;
    margin-bottom: 0.2rem;
  }

  .mini-sub {
    font-size: 1rem;
    color: var(--ui-text-muted);
  }

  .mini-progress-wrap { flex: 1; }

  .mini-progress-bar {
    height: 5px;
    background: var(--ui-bg);
    border-radius: 99px;
    overflow: hidden;
    margin-top: 0.25rem;
  }
  .mini-progress-fill {
    height: 100%;
    background: var(--ui-brand);
    border-radius: 99px;
  }

  .mini-status {
    font-size: 1rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
  }
  .mini-status.green { background: var(--ui-success-bg); color: var(--ui-success-text); }
  .mini-status.brand { background: var(--ui-brand-soft); color: var(--ui-brand); }

  /* ───── HOW IT WORKS ───── */
  .how-section { background: var(--ui-bg); }

  .steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
    position: relative;
  }

  .steps-grid::before {
    content: '';
    position: absolute;
    top: 2.25rem;
    left: calc(12.5% + 1rem);
    right: calc(12.5% + 1rem);
    height: 1.5px;
    background: linear-gradient(90deg, var(--ui-brand), var(--ui-brand-soft));
    z-index: 0;
  }

  .step-card {
    background: var(--ui-surface-strong);
    border-radius: var(--ui-radius-lg);
    box-shadow: var(--ui-shadow-step-soft) !important;
    padding: 1.75rem 1.5rem;
    position: relative;
    z-index: 1;
    transition: box-shadow 0.25s, transform 0.2s;
    text-align: center;
  }
  .step-card:hover {
    box-shadow: var(--ui-shadow-step-soft) !important;
    transform: translateY(-3px);
  }

  .step-num {
    width: 44px; height: 44px;
    background: var(--ui-brand);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    margin: 0 auto 1.25rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 16px var(--ui-brand-ring);
  }

  .step-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ui-text);
    margin-bottom: 0.5rem;
  }

  .step-desc {
    font-size: 1rem;
    color: var(--ui-text-soft);
    line-height: 1.65;
  }

  /* ───── TESTIMONIALS ───── */
  .testimonials-section { background: var(--ui-surface-strong); }

  .testimonials-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

  .testimonial-card {
    background: var(--ui-surface-muted);
    border-radius: var(--ui-radius-lg);
    border: 1.5px solid var(--ui-line);
    padding: 1.75rem;
    transition: box-shadow 0.25s, transform 0.2s;
  }
  .testimonial-card:hover {
    box-shadow: var(--ui-shadow-sm);
    transform: translateY(-2px);
    border-color: var(--ui-line-strong);
  }

  .testimonial-card.featured {
    background: var(--ui-brand);
    border-color: var(--ui-brand);
    grid-column: span 1;
  }

  .testimonial-card.featured .stars { color: rgba(255,255,255,0.7); }
  .testimonial-card.featured .t-quote { color: rgba(255,255,255,0.9); }
  .testimonial-card.featured .t-name { color: #fff; }
  .testimonial-card.featured .t-role { color: rgba(255,255,255,0.65); }

  .stars {
    color: #f59e0b;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
  }

  .t-quote {
    font-size: 1rem;
    color: var(--ui-text-soft);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
  }

  .t-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .t-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--ui-brand-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: var(--ui-brand);
    flex-shrink: 0;
  }

  .testimonial-card.featured .t-avatar {
    background: rgba(255,255,255,0.2);
    color: #fff;
  }

  .t-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ui-text);
  }

  .t-role {
    font-size: 1rem;
    color: var(--ui-text-muted);
    margin-top: 0.1rem;
  }

  /* ───── PRICING ───── */
  .pricing-section { background: var(--ui-bg); }

  .pricing-header {
    text-align: center;
    margin-bottom: 3.5rem;
  }

  .pricing-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    background: var(--ui-surface-strong);
    border: 1.5px solid var(--ui-line);
    padding: 0.3rem;
    border-radius: 99px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--ui-text-soft);
  }

  .toggle-pill {
    background: var(--ui-brand);
    color: #fff;
    padding: 0.375rem 1rem;
    border-radius: 99px;
    font-size: 1rem;
    font-weight: 600;
  }

  .savings-badge {
    background: var(--ui-success-bg);
    color: var(--ui-success-text);
    font-size: 1rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    border: 1px solid var(--ui-success-line);
  }

  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    align-items: start;
  }

  .pricing-card {
    background: var(--ui-surface-strong);
    border-radius: var(--ui-radius-xl);
    border: 1.5px solid var(--ui-line);
    padding: 1.8rem;
    position: relative;
    transition: box-shadow 0.25s, transform 0.2s;
  }
  .pricing-card:hover {
    box-shadow: var(--ui-shadow-sm);
    transform: translateY(-2px);
  }

  .pricing-card.popular {
    border-color: var(--ui-brand);
    box-shadow: 0 0 0 4px var(--ui-brand-ring), var(--ui-shadow-sm);
    transform: scale(1.02);
  }
  .pricing-card.popular:hover {
    transform: scale(1.02) translateY(-2px);
  }

  .popular-badge {
    position: absolute;
    top: -0.875rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ui-brand);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    padding: 0.3rem 1rem;
    border-radius: 99px;
    white-space: nowrap;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .plan-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ui-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.75rem;
  }

  .plan-price {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--ui-text);
    letter-spacing: -0.04em;
    line-height: 1;
  }

  .plan-price sup {
    font-size: 1.25rem;
    vertical-align: top;
    margin-top: 0.5rem;
  }

  .plan-period {
    font-size: 1rem;
    color: var(--ui-text-muted);
    font-weight: 400;
  }

  .plan-desc {
    font-size: 1rem;
    color: var(--ui-text-soft);
    margin: 0.875rem 0 1.5rem;
    line-height: 1.6;
    min-height: 3rem;
  }

  .plan-divider {
    height: 1px;
    background: var(--ui-line);
    margin: 1.5rem 0;
  }

  .plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    margin-bottom: 1.75rem;
  }

  .plan-features li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 1rem;
    color: var(--ui-text-soft);
  }

  .plan-features li::before {
    content: '✓';
    width: 18px; height: 18px;
    background: var(--ui-success-bg);
    color: var(--ui-success-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
  }

  .plan-features li.muted {
    opacity: 0.4;
  }

  .plan-features li.muted::before {
    content: '–';
    background: var(--ui-bg);
    color: var(--ui-text-muted);
  }

  .btn-plan {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.875rem;
    border-radius: var(--ui-button-radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    font-family: var(--ui-font-sans);
  }

  .btn-plan-outline {
    background: none;
    border: 1.5px solid var(--ui-line-strong);
    color: var(--ui-text);
  }
  .btn-plan-outline:hover {
    border-color: var(--ui-brand);
    color: var(--ui-brand);
  }

  .btn-plan-brand {
    background: var(--ui-brand);
    border: none;
    color: #fff;
    box-shadow: 0 4px 16px var(--ui-brand-ring);
  }
  .btn-plan-brand:hover {
    background: var(--ui-brand-strong);
    box-shadow: 0 8px 24px var(--ui-brand-ring);
    transform: translateY(-1px);
  }

  /* ───── FAQ ───── */
  .faq-section { background: var(--ui-surface-strong); }

  .faq-header {
    text-align: center;
    margin-bottom: 3.5rem;
  }

  .faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
  }

  .faq-item {
    background: var(--ui-surface-muted);
    border-radius: var(--ui-radius-md);
    border: 1.5px solid var(--ui-line);
    padding: 1.5rem;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .faq-item:hover { border-color: var(--ui-brand); box-shadow: 0 4px 16px var(--ui-brand-ring); }

  .faq-q {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ui-text);
    margin-bottom: 0.625rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
  }

  .faq-icon {
    color: var(--ui-brand);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
    transition: transform 0.2s ease;
  }

  .faq-a {
    font-size: 1rem;
    color: var(--ui-text-soft);
    line-height: 1.7;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin-top: 0;
    transition: max-height 0.28s ease, opacity 0.22s ease, margin-top 0.22s ease;
  }

  .faq-item.is-open .faq-a {
    max-height: 220px;
    opacity: 1;
    margin-top: 0.625rem;
  }

  /* ───── CTA BANNER ───── */
  .cta-section {
    padding: 5rem 2rem;
    background: var(--ui-bg);
  }

  .cta-card {
    background: linear-gradient(135deg, var(--ui-brand) 0%, var(--ui-brand-strong) 100%);
    border-radius: var(--ui-radius-xl);
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--ui-shadow-md), 0 0 0 1px rgba(255,255,255,0.1) inset;
  }

  .cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(255,255,255,0.15) 0%, transparent 70%);
  }

  .cta-card::after {
    content: '';
    position: absolute;
    bottom: -40px; right: -40px;
    width: 200px; height: 200px;
    border: 40px solid rgba(255,255,255,0.06);
    border-radius: 50%;
  }

  .cta-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.025em;
    position: relative;
    z-index: 1;
    margin-bottom: 1rem;
  }

  .cta-sub {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.8);
    max-width: 500px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
  }

  .cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
  }

  .btn-cta-white {
    background: #fff;
    color: var(--ui-brand-strong);
    font-family: var(--ui-font-sans);
    font-size: 1rem;
    font-weight: 700;
    padding: 0.875rem 2rem;
    border-radius: var(--ui-button-radius-md);
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .btn-cta-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.25);
  }

  .btn-cta-ghost {
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-family: var(--ui-font-sans);
    font-size: 1rem;
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: var(--ui-button-radius-md);
    border: 1.5px solid rgba(255,255,255,0.35);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(8px);
    transition: background 0.2s, transform 0.2s;
  }
  .btn-cta-ghost:hover {
    background: rgba(255,255,255,0.22);
    transform: translateY(-1px);
  }

  /* ───── FOOTER ───── */
  .landing-home-footer {
    background: var(--ui-text);
    color: rgba(255,255,255,0.7);
    padding: 4rem 2rem 2rem;
  }

  .landing-home-footer .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .landing-home-footer .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
  }

  .landing-home-footer .footer-brand .nav-logo {
    color: #fff;
    margin-bottom: 0.875rem;
    display: inline-flex;
  }

  .landing-home-footer .footer-brand p {
    font-size: 1rem;
    line-height: 1.7;
    max-width: 260px;
  }

  .landing-home-footer .footer-col-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1.25rem;
  }

  .landing-home-footer .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
  }

  .landing-home-footer .footer-links a {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s;
  }
  .landing-home-footer .footer-links a:hover { color: #fff; }

  .landing-home-footer .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .landing-home-footer .footer-socials {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .feature-visual-media {
    display: block;
    min-height: 0;
    padding: 0;
    background: #e8ecf8;
  }

  .feature-shot {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .feature-shot-chip {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: #fff;
    background: rgba(17, 24, 39, 0.8);
    backdrop-filter: blur(4px);
  }

  .landing-home-footer .social-link {
    width: 32px; height: 32px;
    border-radius: var(--ui-radius-sm);
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
  }
  .landing-home-footer .social-link:hover { background: var(--ui-brand); color: #fff; }

  /* ───── ANIMATIONS ───── */
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .animate-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .animate-in.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ───── RESPONSIVE ───── */
  @media (max-width: 900px) {
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .split-feature { grid-template-columns: 1fr; gap: 2.5rem; }
    .split-feature.reverse { direction: ltr; }
    .landing-funktionen .hero { padding-top: 6.25rem; }
    .landing-preise .hero { padding-top: 6.25rem; }
    .landing-testphase .hero { padding-top: 6.25rem; }
    .landing-ueber-uns .hero { padding-top: 6.25rem; }
    .landing-kontakt .hero { padding-top: 6.25rem; }
    .landing-funktionen .hero-visual { margin-bottom: -3.5rem; }
    .landing-preise .hero-visual { margin-bottom: -3.5rem; }
    .landing-testphase .hero-visual { margin-bottom: -3.5rem; }
    .landing-ueber-uns .hero-visual { margin-bottom: -3.5rem; }
    .landing-funktionen .features-section { padding-top: 7.5rem; }
    .landing-preise .features-section { padding-top: 8.5rem; }
    .landing-testphase .features-section { padding-top: 6.5rem; }
    .landing-testphase .features-section .steps-grid { margin-bottom: 6.5rem; }
    .landing-ueber-uns .features-section { padding-top: 8rem; }
    .landing-kontakt .features-section { padding-top: 6rem; }
    .landing-preise .how-section { padding-top: 7.5rem; }
    .landing-testphase .how-section { padding-top: 6.5rem; }
    .landing-ueber-uns .how-section { padding-top: 6rem; }
    .funk-hero-grid::after { display: none; }
    .funk-hero-grid { grid-template-columns: 1fr; gap: 2rem; }
    .funk-hero-right { padding-top: 0; }
    .funk-hero-mini-bento { grid-template-columns: 1fr; }
    .landing-funktionen .hero h1,
    .landing-funktionen .hero-h1,
    .landing-funktionen .hero p { max-width: 100%; }
    .funk-hero-actions { justify-content: center; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid::before { display: none; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card.popular { transform: none; }
    .faq-grid { grid-template-columns: 1fr; }
    .landing-home-footer .footer-top { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 600px) {
    .landing-home-nav { padding: 0 1.25rem; }
    .landing-home .nav-links { display: none; }
    .bento-grid { grid-template-columns: 1fr; }
    .landing-funktionen .hero { padding: 5.8rem 1.25rem 3.25rem; }
    .landing-preise .hero { padding: 5.8rem 1.25rem 3.25rem; }
    .landing-testphase .hero { padding: 5.8rem 1.25rem 3.25rem; }
    .landing-ueber-uns .hero { padding: 5.8rem 1.25rem 3.25rem; }
    .landing-kontakt .hero { padding: 5.8rem 1.25rem 3.25rem; }
    .landing-funktionen .hero-visual { margin-bottom: -1.5rem; }
    .landing-preise .hero-visual { margin-bottom: -1.5rem; }
    .landing-testphase .hero-visual { margin-bottom: -1.5rem; }
    .landing-ueber-uns .hero-visual { margin-bottom: -1.5rem; }
    .landing-funktionen .features-section { padding-top: 5.5rem; }
    .landing-preise .features-section { padding-top: 6rem; }
    .landing-testphase .features-section { padding-top: 5.5rem; }
    .landing-testphase .features-section .steps-grid { margin-bottom: 5.5rem; }
    .landing-ueber-uns .features-section { padding-top: 5.5rem; }
    .landing-kontakt .features-section { padding-top: 5.5rem; }
    .landing-preise .how-section { padding-top: 5.5rem; }
    .landing-testphase .how-section { padding-top: 5rem; }
    .landing-ueber-uns .how-section { padding-top: 5rem; }
    .landing-funktionen .hero h1,
    .landing-funktionen .hero-h1 { font-size: clamp(1.95rem, 10vw, 2.55rem); }
    .landing-preise .hero h1,
    .landing-preise .hero-h1 { font-size: clamp(1.95rem, 10vw, 2.55rem); }
    .landing-testphase .hero h1,
    .landing-testphase .hero-h1 { font-size: clamp(1.95rem, 10vw, 2.55rem); }
    .landing-ueber-uns .hero h1,
    .landing-ueber-uns .hero-h1 { font-size: clamp(1.95rem, 10vw, 2.55rem); }
    .landing-kontakt .hero h1,
    .landing-kontakt .hero-h1 { font-size: clamp(1.95rem, 10vw, 2.55rem); }
    .funk-hero-subheadline,
    .hero-subline { width: 100%; justify-content: center; }
    .funk-hero-mini-bento { grid-template-columns: 1fr; gap: 0.75rem; }
    .funk-hero-actions { justify-content: center; }
    .steps-grid { grid-template-columns: 1fr; }
    .cta-card { padding: 2.5rem 1.5rem; }
    .landing-home-footer .footer-top { grid-template-columns: 1fr; gap: 2rem; }
    .fake-dashboard { grid-template-columns: 1fr; }
    .fake-sidebar { display: none; }
  }
