/*
═══════════════════════════════════════════════════════════════════════════════
  BRANCHEN-LANDINGPAGE (geteilt für alle Branchen)
  ───────────────────────────────────────────────────────────────────────────
  Datei: public/css/branchen-landingpage.css

  Strategie:
  • Self-contained Namespace `.azk-lp` — kein Konflikt mit bestehendem CSS
  • CSS-Variablen oben für einfaches Re-Branding
  • Mobile-First mit zwei Breakpoints (640px = große Phones, 1024px = Desktop)
  • Fluid Typography mit clamp() — keine harten Sprünge zwischen Geräten
  • Container: max-width 1180px, immer 24px Mindest-Side-Padding

  Anpassung an Ihr Brand:
  Wenn Sie Ihre echten Brand-Farben kennen, ersetzen Sie nur den :root-Block
  unten. Der Rest der Datei bleibt unangetastet.
═══════════════════════════════════════════════════════════════════════════════
*/

.azk-lp {
    /* ─── Color System (überschreibbar für Brand-Anpassung) ─── */
    --azk-primary: #0FB99B;          /* Türkis-Grün, passt zu Yoga/Wellness */
    --azk-primary-dark: #0A8E76;
    --azk-primary-light: #E8F8F4;
    --azk-accent: #FF7849;           /* Warmer Akzent für CTAs/Tags */

    --azk-text: #0F1B2D;
    --azk-text-muted: #5A6478;
    --azk-text-light: #94A0B5;

    --azk-bg: #FFFFFF;
    --azk-bg-soft: #F7F9FC;
    --azk-bg-warm: #FFF9F4;

    --azk-border: #E5EAF0;
    --azk-border-strong: #D5DCE5;

    --azk-shadow-sm: 0 2px 8px rgba(15, 27, 45, 0.06);
    --azk-shadow-md: 0 8px 24px rgba(15, 27, 45, 0.08);
    --azk-shadow-lg: 0 24px 48px rgba(15, 27, 45, 0.12);

    /* ─── Typography Scale (fluid) ─── */
    --azk-font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --azk-font-display: 'Manrope', 'Inter', system-ui, sans-serif;

    --azk-fs-xs: 0.8125rem;          /* 13px */
    --azk-fs-sm: 0.9375rem;          /* 15px */
    --azk-fs-base: 1rem;             /* 16px */
    --azk-fs-lg: 1.125rem;           /* 18px */
    --azk-fs-xl: clamp(1.25rem, 2.5vw, 1.5rem);
    --azk-fs-2xl: clamp(1.5rem, 3.5vw, 2rem);
    --azk-fs-3xl: clamp(1.875rem, 4.5vw, 2.5rem);
    --azk-fs-4xl: clamp(2.25rem, 6vw, 3.5rem);
    --azk-fs-hero: clamp(2.5rem, 7vw, 4.25rem);

    /* ─── Spacing & Layout ─── */
    --azk-radius-sm: 8px;
    --azk-radius-md: 16px;
    --azk-radius-lg: 24px;
    --azk-radius-xl: 32px;
    --azk-radius-pill: 999px;

    --azk-section-py: clamp(3.5rem, 8vw, 6rem);
    --azk-container-px: clamp(1.25rem, 4vw, 2rem);
    --azk-container-max: 1180px;

    /* ─── Typography Reset within Component ─── */
    font-family: var(--azk-font-sans);
    color: var(--azk-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.azk-lp *,
.azk-lp *::before,
.azk-lp *::after {
    box-sizing: border-box;
}

.azk-lp img,
.azk-lp svg,
.azk-lp picture {
    display: block;
    max-width: 100%;
    height: auto;
}

/* ─────────────────────────────────────────────────────────────────────
   Container & Section Defaults
   ───────────────────────────────────────────────────────────────────── */

.azk-lp__container {
    max-width: var(--azk-container-max);
    margin: 0 auto;
    padding-left: var(--azk-container-px);
    padding-right: var(--azk-container-px);
    width: 100%;
}

.azk-lp__eyebrow {
    display: inline-block;
    font-size: var(--azk-fs-xs);
    font-weight: 600;
    color: var(--azk-primary-dark);
    background: var(--azk-primary-light);
    padding: 0.4rem 0.9rem;
    border-radius: var(--azk-radius-pill);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.azk-lp__section-head {
    max-width: 720px;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.azk-lp__section-head--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.azk-lp__section-title {
    font-family: var(--azk-font-display);
    font-size: var(--azk-fs-3xl);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 1rem 0 1rem;
    color: var(--azk-text);
}

.azk-lp__section-lead {
    font-size: var(--azk-fs-lg);
    color: var(--azk-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ─────────────────────────────────────────────────────────────────────
   Buttons
   ───────────────────────────────────────────────────────────────────── */

.azk-lp__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.95rem 1.75rem;
    font-family: var(--azk-font-sans);
    font-size: var(--azk-fs-base);
    font-weight: 600;
    line-height: 1.2;
    border-radius: var(--azk-radius-pill);
    border: 2px solid transparent;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
    /* Wichtig: kein nowrap — sonst wird auf schmalen Mobiles der Pfeil abgeschnitten */
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

.azk-lp__btn--primary {
    background: var(--azk-primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(15, 185, 155, 0.35);
}

.azk-lp__btn--primary:hover,
.azk-lp__btn--primary:focus-visible {
    background: var(--azk-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(15, 185, 155, 0.45);
}

.azk-lp__btn--secondary {
    background: transparent;
    color: var(--azk-text);
    border-color: var(--azk-border-strong);
}

.azk-lp__btn--secondary:hover,
.azk-lp__btn--secondary:focus-visible {
    background: var(--azk-bg-soft);
    border-color: var(--azk-text-muted);
}

.azk-lp__btn--ghost {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
}

.azk-lp__btn--ghost:hover,
.azk-lp__btn--ghost:focus-visible {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.azk-lp__btn--large {
    padding: 1.15rem 2.25rem;
    font-size: var(--azk-fs-lg);
}

.azk-lp__btn:focus-visible {
    outline: 3px solid var(--azk-primary);
    outline-offset: 3px;
}

/* ═════════════════════════════════════════════════════════════════════
   1. HERO
   ═════════════════════════════════════════════════════════════════════ */

.azk-lp__hero {
    position: relative;
    padding: clamp(3rem, 7vw, 5rem) 0 clamp(3rem, 8vw, 6rem);
    overflow: hidden;
}

.azk-lp__hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.azk-lp__hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
}

.azk-lp__hero-blob--1 {
    top: -10%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    max-width: 700px;
    max-height: 700px;
    background: radial-gradient(circle, var(--azk-primary-light) 0%, transparent 70%);
}

.azk-lp__hero-blob--2 {
    bottom: -20%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    max-width: 600px;
    max-height: 600px;
    background: radial-gradient(circle, #FFE4D5 0%, transparent 70%);
}

.azk-lp__hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2.5rem, 6vw, 4rem);
    align-items: center;
}

.azk-lp__hero-content {
    order: 1;
}

.azk-lp__hero-title {
    font-family: var(--azk-font-display);
    font-size: var(--azk-fs-hero);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 1.25rem 0 1.5rem;
    color: var(--azk-text);
}

.azk-lp__hero-title-accent {
    color: var(--azk-primary);
    font-weight: 700;
}

.azk-lp__hero-lead {
    font-size: var(--azk-fs-lg);
    color: var(--azk-text-muted);
    line-height: 1.6;
    margin: 0 0 2rem;
    max-width: 32rem;
}

.azk-lp__hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

/* Auf sehr schmalen Mobiles (< 380px) volle Breite, damit Pfeile nicht abgeschnitten werden */
@media (max-width: 480px) {
    .azk-lp__hero-ctas .azk-lp__btn {
        width: 100%;
    }
}

.azk-lp__hero-checks {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: var(--azk-fs-sm);
    color: var(--azk-text-muted);
}

.azk-lp__hero-checks li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.azk-lp__hero-checks svg {
    width: 18px;
    height: 18px;
    color: var(--azk-primary);
    flex-shrink: 0;
}

/* Hero Visual */

.azk-lp__hero-visual {
    order: 2;
    position: relative;
    aspect-ratio: 4 / 3;
    max-width: 540px;
    margin: 0 auto;
    width: 100%;
}

.azk-lp__hero-image {
    display: block;
    width: 100%;
    height: 100%;
}

.azk-lp__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--azk-radius-xl);
    box-shadow: var(--azk-shadow-lg);
}

.azk-lp__hero-card {
    position: absolute;
    bottom: -1.5rem;
    left: -1rem;
    background: #fff;
    padding: 1rem 1.25rem;
    border-radius: var(--azk-radius-md);
    box-shadow: var(--azk-shadow-lg);
    min-width: 220px;
    border: 1px solid var(--azk-border);
}

.azk-lp__hero-card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--azk-fs-xs);
    font-weight: 600;
    color: var(--azk-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.azk-lp__hero-card-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--azk-primary);
    animation: azk-lp-pulse 2s infinite;
}

@keyframes azk-lp-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(15, 185, 155, 0.6); }
    50% { box-shadow: 0 0 0 8px rgba(15, 185, 155, 0); }
}

.azk-lp__hero-card-title {
    font-family: var(--azk-font-display);
    font-size: var(--azk-fs-lg);
    font-weight: 700;
    color: var(--azk-text);
    line-height: 1.2;
}

.azk-lp__hero-card-meta {
    font-size: var(--azk-fs-sm);
    color: var(--azk-text-muted);
    margin: 0.25rem 0 0.875rem;
}

.azk-lp__hero-card-progress {
    height: 6px;
    background: var(--azk-bg-soft);
    border-radius: var(--azk-radius-pill);
    overflow: hidden;
}

.azk-lp__hero-card-bar {
    height: 100%;
    width: var(--fill, 50%);
    background: linear-gradient(90deg, var(--azk-primary), var(--azk-primary-dark));
    border-radius: var(--azk-radius-pill);
}

.azk-lp__hero-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.625rem;
    font-size: var(--azk-fs-sm);
    color: var(--azk-text-muted);
}

.azk-lp__hero-card-tag {
    background: var(--azk-primary-light);
    color: var(--azk-primary-dark);
    padding: 0.2rem 0.6rem;
    border-radius: var(--azk-radius-pill);
    font-size: var(--azk-fs-xs);
    font-weight: 600;
}

/* ═════════════════════════════════════════════════════════════════════
   2. TRUST BAR
   ═════════════════════════════════════════════════════════════════════ */

.azk-lp__trust {
    background: var(--azk-bg-soft);
    padding: clamp(2rem, 4vw, 3rem) 0;
    border-top: 1px solid var(--azk-border);
    border-bottom: 1px solid var(--azk-border);
}

.azk-lp__trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1rem;
    text-align: center;
}

.azk-lp__trust-number {
    font-family: var(--azk-font-display);
    font-size: var(--azk-fs-3xl);
    font-weight: 800;
    color: var(--azk-text);
    letter-spacing: -0.02em;
    line-height: 1;
}

.azk-lp__trust-label {
    font-size: var(--azk-fs-sm);
    color: var(--azk-text-muted);
    margin-top: 0.5rem;
    font-weight: 500;
}

/* ═════════════════════════════════════════════════════════════════════
   3. PAIN POINTS
   ═════════════════════════════════════════════════════════════════════ */

.azk-lp__pain {
    padding: var(--azk-section-py) 0;
    background: var(--azk-bg);
}

.azk-lp__pain-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.azk-lp__pain-card {
    padding: 1.75rem;
    background: var(--azk-bg-soft);
    border-radius: var(--azk-radius-lg);
    border: 1px solid var(--azk-border);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.azk-lp__pain-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--azk-shadow-md);
}

.azk-lp__pain-icon {
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 1rem;
}

.azk-lp__pain-card h3 {
    font-family: var(--azk-font-display);
    font-size: var(--azk-fs-xl);
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: var(--azk-text);
    line-height: 1.3;
}

.azk-lp__pain-card p {
    margin: 0;
    color: var(--azk-text-muted);
    font-size: var(--azk-fs-base);
    line-height: 1.6;
}

/* ═════════════════════════════════════════════════════════════════════
   4. SOLUTION / FEATURES
   ═════════════════════════════════════════════════════════════════════ */

.azk-lp__solution {
    padding: var(--azk-section-py) 0;
    background: var(--azk-bg-soft);
}

.azk-lp__features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.azk-lp__feature {
    background: #fff;
    padding: 1.75rem;
    border-radius: var(--azk-radius-lg);
    border: 1px solid var(--azk-border);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.azk-lp__feature:hover {
    transform: translateY(-2px);
    box-shadow: var(--azk-shadow-md);
    border-color: var(--azk-primary);
}

.azk-lp__feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--azk-radius-md);
    background: var(--azk-primary-light);
    color: var(--azk-primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.azk-lp__feature-icon svg {
    width: 24px;
    height: 24px;
}

.azk-lp__feature h3 {
    font-family: var(--azk-font-display);
    font-size: var(--azk-fs-xl);
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: var(--azk-text);
    line-height: 1.3;
}

.azk-lp__feature p {
    margin: 0;
    color: var(--azk-text-muted);
    font-size: var(--azk-fs-base);
    line-height: 1.6;
}

/* ═════════════════════════════════════════════════════════════════════
   5. TESTIMONIAL
   ═════════════════════════════════════════════════════════════════════ */

.azk-lp__testimonial {
    padding: var(--azk-section-py) 0;
    background: var(--azk-bg);
}

.azk-lp__quote-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: clamp(2rem, 5vw, 3.5rem);
    background: linear-gradient(135deg, var(--azk-primary-light) 0%, var(--azk-bg-warm) 100%);
    border-radius: var(--azk-radius-xl);
    position: relative;
}

.azk-lp__quote-mark {
    width: 48px;
    height: 48px;
    color: var(--azk-primary);
    margin-bottom: 1rem;
    opacity: 0.5;
}

.azk-lp__quote-text {
    font-family: var(--azk-font-display);
    font-size: var(--azk-fs-xl);
    line-height: 1.5;
    font-weight: 500;
    color: var(--azk-text);
    margin: 0 0 2rem;
    font-style: italic;
}

.azk-lp__quote-cite {
    font-style: normal;
    font-size: var(--azk-fs-base);
}

.azk-lp__quote-cite strong {
    display: block;
    color: var(--azk-text);
    font-weight: 700;
    font-size: var(--azk-fs-lg);
}

.azk-lp__quote-cite span {
    color: var(--azk-text-muted);
    font-size: var(--azk-fs-sm);
}

/* ═════════════════════════════════════════════════════════════════════
   6. STEPS
   ═════════════════════════════════════════════════════════════════════ */

.azk-lp__steps {
    padding: var(--azk-section-py) 0;
    background: var(--azk-bg-soft);
}

.azk-lp__step-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step;
    position: relative;
}

.azk-lp__step {
    background: #fff;
    padding: 2rem;
    border-radius: var(--azk-radius-lg);
    border: 1px solid var(--azk-border);
    position: relative;
    z-index: 1;
}

.azk-lp__step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--azk-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--azk-font-display);
    font-size: var(--azk-fs-xl);
    font-weight: 800;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(15, 185, 155, 0.35);
    position: relative;
    z-index: 2;
}

.azk-lp__step h3 {
    font-family: var(--azk-font-display);
    font-size: var(--azk-fs-xl);
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: var(--azk-text);
}

.azk-lp__step p {
    margin: 0;
    color: var(--azk-text-muted);
    font-size: var(--azk-fs-base);
    line-height: 1.6;
}

/* ═════════════════════════════════════════════════════════════════════
   7. FAQ
   ═════════════════════════════════════════════════════════════════════ */

.azk-lp__faq {
    padding: var(--azk-section-py) 0;
    background: var(--azk-bg);
}

.azk-lp__faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.azk-lp__faq-item {
    background: var(--azk-bg-soft);
    border-radius: var(--azk-radius-md);
    border: 1px solid var(--azk-border);
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.azk-lp__faq-item[open] {
    border-color: var(--azk-primary);
    background: #fff;
    box-shadow: var(--azk-shadow-sm);
}

.azk-lp__faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.125rem 1.5rem;
    font-family: var(--azk-font-display);
    font-size: var(--azk-fs-base);
    font-weight: 600;
    color: var(--azk-text);
    cursor: pointer;
    list-style: none;
    transition: color 0.2s ease;
}

.azk-lp__faq-item summary:hover {
    color: var(--azk-primary-dark);
}

/* Webkit / Firefox marker hide */
.azk-lp__faq-item summary::-webkit-details-marker { display: none; }
.azk-lp__faq-item summary::marker { display: none; content: ""; }

.azk-lp__faq-item summary svg {
    width: 20px;
    height: 20px;
    color: var(--azk-text-muted);
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.azk-lp__faq-item[open] summary svg {
    transform: rotate(180deg);
}

.azk-lp__faq-item summary:focus-visible {
    outline: 2px solid var(--azk-primary);
    outline-offset: -2px;
}

.azk-lp__faq-answer {
    padding: 0 1.5rem 1.25rem;
}

.azk-lp__faq-answer p {
    margin: 0;
    color: var(--azk-text-muted);
    font-size: var(--azk-fs-base);
    line-height: 1.7;
}

/* ═════════════════════════════════════════════════════════════════════
   8. CONVERSION CTA
   ═════════════════════════════════════════════════════════════════════ */

.azk-lp__cta {
    /* Top-padding kleiner, da FAQ darüber bereits Atemluft hat */
    padding-top: clamp(2rem, 4vw, 3rem);
    padding-bottom: var(--azk-section-py);
    background: var(--azk-bg);
}

.azk-lp__cta-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--azk-radius-xl);
    padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 5vw, 3.5rem);
    background: linear-gradient(135deg, #0F1B2D 0%, #1E2D45 100%);
    color: #fff;
    text-align: center;
}

.azk-lp__cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 0%, rgba(15, 185, 155, 0.4) 0%, transparent 50%),
                radial-gradient(circle at 80% 100%, rgba(255, 120, 73, 0.3) 0%, transparent 50%);
    z-index: 0;
}

.azk-lp__cta-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}

.azk-lp__cta-content h2 {
    font-family: var(--azk-font-display);
    font-size: var(--azk-fs-3xl);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 1rem;
    color: #fff;
}

.azk-lp__cta-content p {
    font-size: var(--azk-fs-lg);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 2rem;
}

.azk-lp__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

/* Auf sehr schmalen Mobiles volle Breite — verhindert Pfeil-Abschnitt */
@media (max-width: 480px) {
    .azk-lp__cta-buttons .azk-lp__btn {
        width: 100%;
    }
}

.azk-lp__cta-fineprint {
    font-size: var(--azk-fs-sm) !important;
    color: rgba(255, 255, 255, 0.6) !important;
    margin: 0 !important;
}


/* ═════════════════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ═════════════════════════════════════════════════════════════════════ */

/* ─── Tablet & größere Phones ≥ 640px ─── */
@media (min-width: 640px) {
    .azk-lp__trust-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }

    .azk-lp__pain-grid,
    .azk-lp__features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .azk-lp__step-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ─── Tablet Landscape & Desktop ≥ 1024px ─── */
@media (min-width: 1024px) {
    .azk-lp__hero-grid {
        grid-template-columns: 1.05fr 0.95fr;
        gap: 4rem;
    }

    .azk-lp__hero-content {
        order: 0;
    }

    .azk-lp__hero-visual {
        order: 0;
        max-width: none;
    }

    .azk-lp__features {
        grid-template-columns: repeat(3, 1fr);
    }

    .azk-lp__step-list {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }

    .azk-lp__pain-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Auf Desktop einheitliche Höhe der Step-Titel für sauberes Grid-Alignment */
    .azk-lp__step h3 {
        min-height: 3.2em;
    }
}

/* ─── Reduce Motion ─── */
@media (prefers-reduced-motion: reduce) {
    .azk-lp *,
    .azk-lp *::before,
    .azk-lp *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ─── Print ─── */
@media print {
    .azk-lp__hero-bg,
    .azk-lp__hero-card,
    .azk-lp__cta-bg {
        display: none;
    }
    .azk-lp__cta-card {
        background: none;
        color: var(--azk-text);
        border: 1px solid var(--azk-border);
    }
}
