/* AvoTax Landing – 1:1 zu taxavo-landingpage.zip (Home.tsx + index.css) */

:root {
    --primary: #0f172a;
    --primary-foreground: #ffffff;
    --background: #f9fafb;
    --foreground: #1f2937;
    --card: #ffffff;
    --muted-foreground: #6b7280;
    --accent: #3b82f6;
    --accent-hover: #2563eb;
    --border: #e2e8f0;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-pill: 100px;
    --header-h: 4rem;
    --lx-spacing-section: 5rem;
    --hero-dark-from: #1e3a8a;
    --hero-dark-to: #0f172a;
    --hero-dark-glow: rgba(59, 130, 246, 0.28);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    background: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-weight: 700;
}

.fonts-loaded body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

.fonts-loaded h1,
.fonts-loaded h2,
.fonts-loaded h3,
.fonts-loaded h4 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* Buttons (shadcn / Home.tsx) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    font-weight: 500;
    font-size: 0.875rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    font-family: inherit;
    line-height: 1.25;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
}

.btn-primary:hover {
    background: color-mix(in srgb, var(--primary) 90%, white);
}

.btn-accent {
    background: var(--accent);
    color: #fff;
    font-weight: 600;
}

.btn-accent:hover {
    background: color-mix(in srgb, var(--accent) 90%, white);
}

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

.btn-outline-primary:hover {
    background: color-mix(in srgb, var(--primary) 5%, transparent);
}

.btn-ghost {
    background: transparent;
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.btn-ghost:hover {
    background: color-mix(in srgb, var(--accent) 10%, transparent);
    color: var(--foreground);
}

.btn-lg {
    padding: 1.5rem 2rem;
    font-size: 1rem;
    border-radius: var(--radius-lg);
    font-weight: 500;
}

.btn-white {
    background: #fff;
    color: var(--primary);
    font-weight: 600;
}

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

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    font-weight: 600;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-block {
    width: 100%;
}

.icon-check {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    color: var(--primary);
}

/* Navigation – 3-Spalten wie React */
.landing-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    gap: 1rem;
}

@media (min-width: 768px) {
    .nav-inner {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
    }
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    justify-self: start;
}

.nav-logo .brand,
.nav-logo img.brand,
.nav-logo .auth-brand__logo {
    height: 2.75rem;
    width: auto;
    max-width: min(17.5rem, 48vw);
    object-fit: contain;
    display: block;
}

.nav-logo .icon,
.nav-logo .text {
    display: none;
}

.nav-center {
    display: none;
    align-items: center;
    gap: 2rem;
    justify-self: center;
}

.nav-center a {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-center a:hover {
    color: var(--foreground);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-self: end;
    margin-left: auto;
}

@media (min-width: 768px) {
    .nav-center {
        display: flex;
    }

    .nav-actions {
        margin-left: 0;
    }

    .nav-actions .btn-ghost {
        display: inline-flex;
    }
}

.nav-menu-btn {
    display: inline-flex;
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid var(--border);
    border-radius: 0.625rem;
    background: var(--card);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .nav-menu-btn {
        display: none;
    }
}

.nav-menu-btn .bar {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--foreground);
    border-radius: 1px;
    position: relative;
}

.nav-menu-btn .bar::before,
.nav-menu-btn .bar::after {
    content: '';
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
}

.nav-menu-btn .bar::before {
    top: -6px;
}

.nav-menu-btn .bar::after {
    top: 6px;
}

.nav-mobile-panel {
    display: none;
    flex-direction: column;
    padding: 0 0 1rem;
    border-top: 1px solid var(--border);
    margin-top: -1px;
}

.nav-mobile-panel.is-open {
    display: flex;
}

.nav-mobile-panel a {
    padding: 0.875rem 0;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
}

.nav-mobile-panel a:hover {
    color: var(--foreground);
}

@media (min-width: 768px) {
    .nav-mobile-panel {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .nav-actions .btn-ghost {
        display: none;
    }
}

/* Hero */
.hero {
    position: relative;
    overflow: visible;
    background: #fff;
    padding-top: 5rem;
    padding-bottom: 0;
}

.hero--dark {
    background: linear-gradient(145deg, var(--hero-dark-from) 0%, var(--hero-dark-to) 52%, #020617 100%);
    color: #fff;
    padding-top: 3rem;
    padding-bottom: 3rem;
    overflow: hidden;
}

.hero.hero--trust-band.hero--dark {
    overflow: visible;
}

.hero--dark::before {
    content: '';
    position: absolute;
    width: 55%;
    height: 65%;
    top: -8%;
    right: -12%;
    background: radial-gradient(ellipse at center, var(--hero-dark-glow) 0%, transparent 68%);
    pointer-events: none;
    z-index: 0;
}

.hero--dark > .container,
.hero--dark > .hero-trust-band {
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .hero--dark {
        padding-top: 4rem;
    }
}

.hero--dark .hero-content h1,
.hero--dark .hero-headline-phrase {
    color: #fff;
}

.hero--dark .hero-lead {
    color: rgba(255, 255, 255, 0.88);
}

.hero--dark .hero-trust-credentials {
    color: rgba(255, 255, 255, 0.75);
}

.hero--dark .hero-trust-credentials__sep {
    color: rgba(255, 255, 255, 0.35);
}

.hero--dark .hero-badge {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero--dark .hero-badge-meta {
    border-top-color: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 767px) {
    .hero--dark .hero-badge {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.18);
        color: #fff;
    }
}

.hero--dark .hero-offer-badge {
    color: #fff;
    background: rgba(59, 130, 246, 0.25);
    border-color: rgba(147, 197, 253, 0.45);
}

.hero--dark .hero-trust-item {
    color: rgba(255, 255, 255, 0.9);
}

.hero--dark .hero-trust .icon-check,
.hero--dark .icon-check {
    color: #93c5fd;
}

.hero--dark .hero-content .landing-trust-badges {
    border-top-color: rgba(255, 255, 255, 0.15);
}

.hero--dark .landing-product-frame {
    box-shadow: 0 28px 56px rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 255, 255, 0.12);
}

.hero--trust-band {
    padding-bottom: 0;
}

@media (min-width: 768px) {
    .hero {
        padding-top: 8rem;
    }
}

.hero-content {
    max-width: 42rem;
    min-width: 0;
}

.hero-layout {
    display: grid;
    gap: 2rem;
    align-items: center;
}

.hero-layout > * {
    min-width: 0;
}

@media (min-width: 900px) {
    .hero-layout {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        gap: 2.5rem 3rem;
        align-items: center;
    }

    .hero-content {
        max-width: none;
    }
}

.hero-illustration {
    width: 100%;
    max-width: 36rem;
    margin-inline: auto;
}

@media (min-width: 900px) {
    .hero-illustration {
        max-width: min(100%, 20rem);
        margin-inline: auto 0;
        justify-self: end;
    }
}

@media (min-width: 1100px) {
    .hero-illustration {
        max-width: min(100%, 24rem);
    }
}

@media (min-width: 1280px) {
    .hero-illustration {
        max-width: min(100%, 28rem);
    }
}

@media (min-width: 1440px) {
    .hero-illustration {
        max-width: min(100%, 32rem);
    }
}

.landing-product-frame {
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    box-shadow: 0 24px 56px rgba(15, 23, 42, 0.16);
    border: 1px solid rgba(148, 163, 184, 0.22);
}

.landing-product-frame__chrome {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.65rem 0.85rem;
}

.landing-product-frame__dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: rgba(148, 163, 184, 0.45);
}

.landing-product-frame__viewport {
    overflow: hidden;
    aspect-ratio: 1919 / 893;
    background: #0f172a;
    position: relative;
}

.landing-demo-carousel {
    position: absolute;
    inset: 0;
}

.landing-demo-carousel__track {
    position: relative;
    width: 100%;
    height: 100%;
}

.landing-demo-carousel__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.45s ease;
    pointer-events: none;
}

.landing-demo-carousel__slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.landing-demo-carousel__slide .landing-screenshot-zoom {
    width: 100%;
    height: 100%;
}

.landing-demo-carousel__dots {
    position: absolute;
    bottom: 0.75rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.45rem;
    z-index: 2;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(4px);
}

.landing-demo-carousel__nav {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

.landing-demo-carousel__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(6px);
    color: #fff;
    cursor: pointer;
    pointer-events: auto;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.landing-demo-carousel__arrow:hover {
    background: rgba(15, 23, 42, 0.88);
    border-color: rgba(255, 255, 255, 0.35);
}

.landing-demo-carousel__arrow:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.landing-demo-carousel__arrow--prev {
    left: 0.65rem;
}

.landing-demo-carousel__arrow--next {
    right: 0.65rem;
}

@media (max-width: 767px) {
    .landing-demo-carousel__track {
        overscroll-behavior: contain;
    }
}

@media (max-width: 479px) {
    .landing-demo-carousel__arrow {
        width: 2rem;
        height: 2rem;
    }

    .landing-demo-carousel__arrow svg {
        width: 16px;
        height: 16px;
    }
}

.landing-demo-carousel__dot {
    width: 0.5rem;
    height: 0.5rem;
    border: none;
    border-radius: 50%;
    padding: 0;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.landing-demo-carousel__dot.is-active {
    background: #fff;
    transform: scale(1.15);
}

.landing-demo-carousel__dot:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.landing-product-frame__viewport .landing-screenshot-zoom {
    width: 100%;
    height: 100%;
    border-radius: 0;
    box-shadow: none;
    cursor: zoom-in;
}

.landing-product-frame__viewport .landing-screenshot-zoom:hover {
    transform: none;
    box-shadow: none;
}

.landing-product-frame__viewport .landing-screenshot-zoom picture {
    width: 100%;
    height: 100%;
    display: block;
}

.landing-product-frame__viewport picture,
.landing-product-frame__viewport .landing-screenshot-zoom__img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center center;
}

.landing-screenshot-zoom__img--content-crop {
    object-fit: cover;
    object-position: 86% center;
    max-width: none;
}

.landing-screenshot-zoom--content-crop .landing-screenshot-zoom__img--content-crop {
    width: 116%;
    margin-left: -13.5%;
    height: auto;
    object-position: right center;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: rgba(59, 130, 246, 0.4);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.45;
    margin-bottom: 1.5rem;
    max-width: 100%;
}

.hero-badge-line {
    display: block;
}

.hero-badge-line-compact {
    display: none;
}

.hero-badge-meta {
    display: block;
    margin-top: 0.125rem;
    text-align: center;
}

.hero-badge-nowrap {
    white-space: nowrap;
}

.hero-badge-sep {
    white-space: pre;
}

@media (max-width: 767px) {
    .hero {
        padding-top: 4.5rem;
        padding-bottom: 5.5rem;
    }

    .hero-badge {
        display: block;
        width: fit-content;
        max-width: 100%;
        padding: 0.35rem 0.625rem;
        font-size: 0.75rem;
        font-weight: 500;
        line-height: 1.35;
        margin-bottom: 1rem;
        border-radius: 0.5rem;
        background: rgba(59, 130, 246, 0.16);
    }

    .hero-badge-line-full {
        display: none;
    }

    .hero-badge-line-compact {
        display: block;
        text-wrap: balance;
    }

    .hero-badge-meta {
        margin-top: 0.35rem;
        padding-top: 0.35rem;
        border-top: 1px solid rgba(59, 130, 246, 0.18);
        font-size: 0.6875rem;
        font-weight: 600;
        letter-spacing: 0.03em;
    }
}

.hero-content h1 {
    display: flex;
    flex-wrap: wrap;
    column-gap: 0.2em;
    row-gap: 0.05em;
    width: 100%;
    max-width: 100%;
    font-size: 2.75rem;
    line-height: 1.12;
    margin-bottom: 1.5rem;
    color: var(--foreground);
    overflow-wrap: anywhere;
}

.hero-headline-phrase {
    white-space: nowrap;
}

@media (min-width: 900px) and (max-width: 1279px) {
    .hero-content h1 {
        font-size: 2.125rem;
    }

    .hero-headline-phrase {
        white-space: normal;
    }
}

@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 3.25rem;
    }
}

@media (min-width: 900px) {
    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (min-width: 1200px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
}

.hero-lead {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    line-height: 1.625;
}

@media (min-width: 768px) {
    .hero-lead {
        font-size: 1.25rem;
    }
}

@media (max-width: 767px) {
    .hero-content h1 {
        font-size: 2.125rem;
        margin-bottom: 1rem;
    }

    .hero-lead {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
    }
}

.hero-cta-note {
    margin: 0 0 2rem;
    font-size: 0.8125rem;
    color: var(--muted-foreground);
}

.hero--dark .hero-cta-note {
    color: rgba(255, 255, 255, 0.72);
}

.hero-trust {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .hero-trust {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-trust-credentials {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.15rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--muted-foreground);
    margin: 0.75rem 0 1rem;
    line-height: 1.5;
}

.hero-trust-credentials__sep {
    color: var(--border);
    font-weight: 400;
}

.hero-offer-badge {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    background: color-mix(in srgb, var(--accent) 12%, #fff);
    border: 1px solid color-mix(in srgb, var(--accent) 35%, var(--border));
    border-radius: var(--radius-pill);
    padding: 0.4rem 0.9rem;
    margin-bottom: 1.25rem;
}

/* Lexware-Stil: überlappendes Vertrauensband (AvoTax-Farben) */
.hero-trust-band {
    position: relative;
    z-index: 6;
    margin-top: 2.5rem;
    transform: translateY(50%);
    margin-bottom: -3.25rem;
    pointer-events: none;
}

.hero-trust-band__list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    margin: 0;
    padding: 0;
    pointer-events: auto;
}

@media (min-width: 640px) {
    .hero-trust-band__list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .hero-trust-band__list {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 0.75rem;
    }
}

.hero-trust-band__item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 1rem 0.85rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
    min-height: 100%;
}

.hero-trust-band__headline {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.25;
}

.hero-trust-band__line {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.hero-trust-band--compact .hero-trust-band__list {
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .hero-trust-band--compact .hero-trust-band__list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.hero-trust-band--in-section {
    transform: none;
    margin: 0 0 2rem;
    pointer-events: auto;
}

.hero-trust-band--in-section .hero-trust-band__item {
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
}

@media (max-width: 767px) {
    .hero--trust-band .hero-trust-band {
        transform: translateY(1.5rem);
        margin-bottom: 0;
    }

    .hero--trust-band {
        padding-bottom: 2rem;
    }
}

.landing-trust-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.25rem 2rem;
    margin: 0 auto 1.75rem;
    max-width: 28rem;
}

.hero-content .landing-trust-badges {
    margin-top: 1.25rem;
    margin-bottom: 0;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
    justify-content: flex-start;
    max-width: none;
}

.landing-trust-badge-shell {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 5rem;
    height: 5rem;
    padding: 0.5rem;
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

.hero--dark .landing-trust-badge-shell {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
}

.landing-trust-badge {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 1;
}

.landing-trust-badge--gobd,
.landing-trust-badge--hosting {
    height: 3.5rem;
    width: 3.5rem;
    max-width: none;
}

.hero-quick {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    max-width: 36rem;
}

.hero-quick-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.hero-quick-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-quick-list li {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.5;
    padding-left: 1.25rem;
    position: relative;
}

.hero-quick-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* Sections */
.section {
    padding: 5rem 0;
}

@media (min-width: 768px) {
    .section {
        padding: 8rem 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: var(--foreground);
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 3rem;
    }
}

.section-header p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.625;
}

.section-header p.wide {
    max-width: 56rem;
}

.section-narrative {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .section-narrative {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }
}

.landing-narrative-card {
    max-width: 44rem;
    margin: 0 auto;
    padding: 2rem 1.75rem;
    background: #fff;
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-left: 4px solid var(--accent);
    text-align: center;
}

@media (min-width: 768px) {
    .landing-narrative-card {
        padding: 2.5rem 3rem;
    }
}

.landing-narrative-lead {
    font-size: 1.0625rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0 0 0.75rem;
}

.landing-narrative-emphasis {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.375rem, 3.5vw, 1.875rem);
    font-weight: 700;
    color: var(--primary);
    line-height: 1.35;
    margin: 0;
}

.section-footer-note {
    text-align: center;
    max-width: 40rem;
    margin: 2.5rem auto 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--foreground);
    line-height: 1.625;
}

.advisor-switch-list {
    max-width: 48rem;
    margin: 0 auto;
}

.pricing-footnote {
    text-align: center;
    margin-top: 2.5rem;
    max-width: 40rem;
    margin-inline: auto;
}

.pricing-footnote p {
    margin: 0 0 0.5rem;
    color: var(--muted-foreground);
    line-height: 1.625;
}

.pricing-footnote-highlight {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--foreground);
    line-height: 1.5;
}

.section-advisory-future .section-header {
    margin-bottom: 0;
}

.section-solution {
    background:
        radial-gradient(circle at top left, rgba(59, 130, 246, 0.12), transparent 32rem),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.solution-header {
    text-align: center;
    margin-bottom: 2rem;
}

.solution-header h2 {
    color: var(--primary);
}

.landing-workflow {
    max-width: 40rem;
    margin: 2.5rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.audit-feature-bridge {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--muted-foreground);
    margin: 0 0 1rem;
}

.solution-benefits-list {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: 36rem;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.solution-benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--foreground);
    line-height: 1.5;
}

.solution-benefits-list .icon-check {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.15rem;
    color: var(--accent);
}

.landing-aside-link {
    text-align: center;
    margin: 2rem 0 0;
    font-size: 0.9375rem;
}

.landing-aside-link a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}

.landing-aside-link a:hover {
    text-decoration: underline;
}

/* SEO-FAQ (Startseite, GSC-Suchintentionen) */
.landing-seo-faq {
    background: var(--surface-elevated, #f8fafc);
    border-top: 1px solid var(--border-subtle, #e2e8f0);
}

.landing-seo-faq__grid {
    display: grid;
    gap: 0.75rem;
    max-width: 48rem;
    margin: 0 auto;
}

.landing-seo-faq__item {
    background: #fff;
    border: 1px solid var(--border-subtle, #e2e8f0);
    border-radius: 0.75rem;
    padding: 0.85rem 1rem;
}

.landing-seo-faq__item summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--text-primary, #0f172a);
    list-style: none;
}

.landing-seo-faq__item summary::-webkit-details-marker {
    display: none;
}

.landing-seo-faq__item p {
    margin: 0.75rem 0 0;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: var(--text-muted, #475569);
}

.section-audit-feature {
    background: #fff;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

@media (min-width: 768px) {
    .section-audit-feature {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}

.audit-feature-panel {
    max-width: 44rem;
    margin: 0 auto;
    padding: 2rem 1.75rem;
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(59, 130, 246, 0.18);
    border-radius: 1.5rem;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

@media (min-width: 768px) {
    .audit-feature-panel {
        padding: 2.5rem 3rem;
    }
}

.audit-feature-heading {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--primary);
    margin: 0 0 1rem;
}

.audit-feature-lead {
    font-size: 1.125rem;
    line-height: 1.55;
    color: var(--foreground);
    margin: 0 0 0.75rem;
    font-weight: 600;
}

.audit-feature-compliance {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--muted-foreground);
    margin: 0 0 1.5rem;
}

.audit-feature-steps {
    list-style: none;
    margin: 0 0 1.75rem;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.audit-feature-steps li {
    margin: 0;
}

.audit-feature-steps__title {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.85rem;
    border-radius: 9999px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.35;
}

.audience-grid.audience-grid--four {
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .audience-grid.audience-grid--four {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.audience-grid--four .audience-card {
    padding: 1.5rem;
}

.audience-grid--four .audience-desc {
    font-size: 0.8125rem;
    line-height: 1.55;
}

.audience-grid--four .audience-card h3 {
    font-size: 1.125rem;
}

.section-security--compact {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background: linear-gradient(
        180deg,
        rgba(191, 219, 254, 0.35) 0%,
        rgba(255, 255, 255, 1) 100%
    );
}

.section-security--compact .section-header {
    margin-bottom: 1.5rem;
    text-align: center;
}

.security-compact-list {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: 40rem;
    display: grid;
    gap: 0.75rem 2rem;
}

@media (min-width: 640px) {
    .security-compact-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.security-compact-list li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--foreground);
}

.security-compact-list .icon-check {
    flex-shrink: 0;
    width: 1.125rem;
    height: 1.125rem;
    color: var(--accent);
}

.section-eyebrow {
    display: inline-flex;
    margin-bottom: 0.75rem;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.solution-pillars {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .solution-pillars {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 901px) {
    .solution-pillars {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.solution-card {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 1.5rem;
    padding: 1.75rem;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.solution-card:hover,
.solution-card:focus-within {
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.11);
    transform: translateY(-2px);
    border-color: rgba(59, 130, 246, 0.18);
}

.solution-card__signal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.875rem;
    padding: 0.5rem 0.625rem;
    border-radius: 0.625rem;
    background: rgba(248, 250, 252, 0.95);
    border: 1px solid rgba(148, 163, 184, 0.18);
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.solution-card:hover .solution-card__signal,
.solution-card:focus-within .solution-card__signal {
    opacity: 1;
    transform: translateY(0);
}

.solution-card__severity {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.solution-card__severity-dot {
    width: 0.4375rem;
    height: 0.4375rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.solution-card__severity--high {
    color: #e11d48;
}

.solution-card__severity--high .solution-card__severity-dot {
    background: #e11d48;
    box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.15);
}

.solution-card__severity--medium {
    color: #b45309;
}

.solution-card__severity--medium .solution-card__severity-dot {
    background: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

.solution-card__severity--low {
    color: #0369a1;
}

.solution-card__severity--low .solution-card__severity-dot {
    background: #0ea5e9;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}

.solution-card__score {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 0;
    flex: 1;
    justify-content: flex-end;
}

.solution-card__score-bar {
    width: 4.5rem;
    height: 0.3125rem;
    border-radius: 9999px;
    background: rgba(148, 163, 184, 0.25);
    overflow: hidden;
    flex-shrink: 0;
}

.solution-card__score-bar span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #f59e0b 0%, #e11d48 100%);
    transition: width 0.35s ease;
}

.solution-card--medium .solution-card__score-bar span {
    background: linear-gradient(90deg, #22c55e 0%, #f59e0b 100%);
}

.solution-card__score-value {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--foreground);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.solution-card__badge {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--foreground);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.22);
}

@media (prefers-reduced-motion: reduce) {
    .solution-card__signal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.solution-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 1rem;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
    background: rgba(59, 130, 246, 0.12);
    color: var(--accent);
}

.solution-icon svg {
    width: 1.35rem;
    height: 1.35rem;
}

.solution-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.6rem;
    color: var(--primary);
}

.solution-card p {
    margin: 0;
    color: var(--muted-foreground);
    line-height: 1.65;
    font-size: 0.9375rem;
}

.section-features {
    background: linear-gradient(
        180deg,
        rgba(191, 219, 254, 0.55) 0%,
        rgba(219, 234, 254, 0.35) 35%,
        rgba(249, 250, 251, 0.9) 70%,
        #ffffff 100%
    );
}

.section-features .section-header {
    margin-bottom: 3.5rem;
}

.section-features .section-header h2 {
    font-size: clamp(2rem, 4.5vw, 2.75rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.25rem;
}

.section-features .section-header p.wide {
    max-width: 52rem;
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--muted-foreground);
}

.features-layout {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 768px) {
    .features-layout {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        gap: 2.5rem 3rem;
    }
}

.features-illustration {
    display: flex;
    align-items: center;
    justify-content: center;
}

.features-illustration img,
.features-illustration .landing-screenshot-zoom__img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 0.75rem;
}

.landing-screenshot-zoom {
    position: relative;
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    cursor: zoom-in;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.12);
    transition: box-shadow 0.2s, transform 0.2s;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.landing-screenshot-zoom:hover {
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
    transform: translateY(-2px);
}

.landing-screenshot-zoom:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

.landing-screenshot-zoom__hint {
    position: absolute;
    right: 0.75rem;
    bottom: 0.75rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.75rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #fff;
    background: rgba(15, 23, 42, 0.72);
    border-radius: 9999px;
    pointer-events: none;
    backdrop-filter: blur(6px);
}

.landing-screenshot-zoom picture,
.landing-screenshot-zoom__img {
    display: block;
    line-height: 0;
    /* iOS/Safari: Tap auf <img> im <button> sonst ohne click */
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

/* Lightbox für Dashboard-Screenshot */
.landing-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s, visibility 0.2s;
}

.landing-lightbox.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.landing-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.88);
    cursor: zoom-out;
}

.landing-lightbox__dialog {
    position: relative;
    z-index: 1;
    /* Nie breiter als das Bild in nativer Pixelgröße (verhindert Hochskalierung) */
    max-width: min(96vw, var(--lightbox-img-w, 1916px));
    max-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-lightbox__img {
    display: block;
    width: auto;
    height: auto;
    max-width: min(96vw, var(--lightbox-img-w, 1916px));
    max-height: 92vh;
    border-radius: 0.5rem;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
    object-fit: contain;
}

/* Retina: Anzeige auf max. 50 % der CSS-Breite → 1 Gerätepixel pro Bildpixel */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
    .landing-lightbox__dialog,
    .landing-lightbox__img {
        max-width: min(96vw, calc(var(--lightbox-img-w, 1916px) / 2));
    }
}

.landing-lightbox__close {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    z-index: 2;
    width: 2.75rem;
    height: 2.75rem;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: var(--primary);
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: background 0.15s, transform 0.15s;
}

.landing-lightbox__close:hover {
    background: var(--muted);
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .landing-lightbox {
        padding: 2rem;
    }

    .landing-lightbox__close {
        top: 0;
        right: 0;
        transform: translate(50%, -50%);
    }

    .landing-lightbox__close:hover {
        transform: translate(50%, -50%) scale(1.05);
    }
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: 0.625rem;
    background: #ffffff;
    border: none;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.07);
    transition: box-shadow 0.2s, transform 0.2s;
}

.feature-card:hover {
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
    transform: translateY(-1px);
}

.feature-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    background: rgba(59, 130, 246, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.feature-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke: var(--primary);
}

.audience-card .feature-icon svg {
    width: 2rem;
    height: 2rem;
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    font-family: 'Inter', sans-serif;
    color: var(--primary);
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.55;
    margin: 0;
}

.section-audience {
    background: #fff;
}

.audience-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .audience-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.audience-card {
    position: relative;
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    background: var(--card);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.audience-card--highlight {
    border-color: rgba(59, 130, 246, 0.35);
    box-shadow: 0 16px 40px rgba(59, 130, 246, 0.1);
}

.audience-card__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.625rem;
    border-radius: 9999px;
    background: rgba(59, 130, 246, 0.12);
    color: var(--accent);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.audience-grid--four .audience-card__badge {
    top: 0.875rem;
    right: 0.875rem;
    font-size: 0.625rem;
}

.audience-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.audience-card .feature-icon {
    margin-bottom: 1rem;
}

.audience-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.audience-subtitle {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1rem;
}

.audience-desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    flex-grow: 1;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.section-security {
    background: linear-gradient(
        180deg,
        rgba(191, 219, 254, 0.55) 0%,
        rgba(219, 234, 254, 0.35) 35%,
        rgba(249, 250, 251, 0.9) 70%,
        #ffffff 100%
    );
}

.security-layout {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 768px) {
    .security-layout {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
        gap: 2.5rem 3rem;
    }
}

.security-content h2 {
    font-size: clamp(2rem, 4.5vw, 2.75rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.25rem;
}

.security-lead {
    font-size: 1.0625rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 36rem;
}

.security-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.security-card {
    align-items: center;
}

.security-card p {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--primary);
    margin: 0;
    line-height: 1.45;
}

.security-illustration {
    display: flex;
    align-items: center;
    justify-content: center;
}

.security-illustration img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 0.75rem;
}

@media (max-width: 767px) {
    .security-illustration {
        order: -1;
    }
}

.section-pricing {
    background: #fff;
}

.pricing-value-card {
    margin-bottom: 3rem;
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    background: var(--card);
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.07);
}

@media (min-width: 768px) {
    .pricing-value-card {
        padding: 2.5rem 3rem;
        margin-bottom: 4rem;
    }
}

.pricing-value-card-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.pricing-value-card-header h2 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.pricing-value-card-header p {
    font-size: 1rem;
    color: var(--muted-foreground);
    max-width: 40rem;
    margin: 0 auto;
    line-height: 1.625;
}

.pricing-value-features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .pricing-value-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem 1.25rem;
    }
}

@media (min-width: 1024px) {
    .pricing-value-features {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-value-features li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.875rem;
    line-height: 1.4;
    color: var(--foreground);
    padding: 0.75rem 1rem;
    background: var(--background);
    border-radius: 0.5rem;
    border: 1px solid var(--border);
}

.pricing-value-features .icon-check {
    flex-shrink: 0;
    width: 1.125rem;
    height: 1.125rem;
    color: var(--accent);
}

.pricing-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        align-items: stretch;
        gap: 1.5rem;
    }
}

.price-card {
    padding: 1.125rem 1.75rem 1.25rem;
    border-radius: var(--radius-xl);
    border: 2px solid var(--border);
    background: var(--card);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
}

.price-card.highlight {
    border-color: var(--accent);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.1);
}

.price-badge {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    min-height: 1.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background: rgba(59, 130, 246, 0.2);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.price-badge-spacer {
    display: block;
    min-height: 1.5rem;
    margin-bottom: 0.5rem;
}

.price-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.375rem;
}

.price-desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin: 0 0 1rem;
    line-height: 1.45;
}

.price-amount-wrap {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.price-amount {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 0.25rem;
}

.price-amount .value {
    font-size: 2.25rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    color: var(--foreground);
    line-height: 1.1;
}

.price-amount .currency {
    color: var(--muted-foreground);
    font-size: 1.125rem;
}

.price-period {
    display: block;
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    line-height: 1.4;
}

.price-card-footer {
    margin-top: auto;
}

.price-card-footer .btn-block {
    margin-bottom: 0;
    font-weight: 600;
}

.price-note {
    min-height: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    line-height: 1.35;
    color: var(--muted-foreground);
    text-align: center;
    margin: 0.5rem 0 0;
}

.price-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.price-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.375;
}

/* CTA */
.section-cta {
    background: linear-gradient(to right, var(--primary), var(--accent));
    color: #fff;
    text-align: center;
    padding: 5rem 0;
}

@media (min-width: 768px) {
    .section-cta {
        padding: 8rem 0;
    }
}

.section-cta h2 {
    font-size: 2.25rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .section-cta h2 {
        font-size: 3rem;
    }
}

.section-cta p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 42rem;
    margin: 0 auto 2rem;
    line-height: 1.625;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

/* Footer – heller Hintergrund, damit die dunkle AvoTax-Wortmarke im Logo lesbar bleibt */
.landing-footer {
    background: linear-gradient(180deg, #f8fafc 0%, #eef3fb 100%);
    color: var(--foreground);
    padding: 3rem 0;
    border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
    .landing-footer {
        padding: 4rem 0;
    }
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-brand .nav-logo {
    margin-bottom: 1rem;
}

.footer-brand .nav-logo .brand,
.footer-brand .nav-logo img.brand {
    height: 3rem;
    max-width: min(12.5rem, 52vw);
}

.footer-tagline {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    color: var(--primary);
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-col a {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.footer-bottom .meta-note {
    margin-top: 0.5rem;
    font-size: 0.75rem;
}

/* Contact modal */
.contact-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(15, 23, 42, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
}

.contact-modal-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.contact-modal {
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--card);
    border-radius: var(--radius-xl);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
}

.contact-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem 1.5rem 0;
}

.contact-modal-header h3 {
    font-size: 1.25rem;
}

.contact-modal-close {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--background);
    border-radius: 8px;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    color: var(--muted-foreground);
}

.contact-modal-body {
    padding: 1rem 1.5rem 1.5rem;
}

.contact-modal-intro {
    color: var(--muted-foreground);
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
}

.contact-form-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form-grid label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.35rem;
}

.contact-form-grid input,
.contact-form-grid select,
.contact-form-grid textarea {
    width: 100%;
    padding: 0.65rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font: inherit;
    background: var(--background);
}

.contact-form-grid textarea {
    min-height: 88px;
    resize: vertical;
}

.contact-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.contact-form-note {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    margin-top: 0.5rem;
}

.contact-form-actions .btn-outline-primary {
    border-color: var(--border);
    color: var(--foreground);
}

/* ── Full HD (1920×1080): weniger Scroll, breitere Fläche ── */
@media (min-width: 1440px) and (max-width: 1999px) {
    .container {
        max-width: 1360px;
    }
}

@media (min-width: 1280px) and (max-height: 1110px) {
    :root {
        --header-h: 3.75rem;
    }

    .hero {
        padding-top: 4rem;
        padding-bottom: 4.5rem;
    }

    .hero-layout {
        gap: 2rem 2.75rem;
    }

    .hero-content h1 {
        font-size: 3rem;
        margin-bottom: 1rem;
        line-height: 1.08;
    }

    .hero-lead {
        font-size: 1.125rem;
        margin-bottom: 1.25rem;
        line-height: 1.55;
    }

    .hero-cta {
        margin-bottom: 1.25rem;
    }

    .hero-trust {
        gap: 0.75rem 1.25rem;
    }

    .btn-lg {
        padding: 1rem 1.5rem;
    }

    .section {
        padding: 4.5rem 0;
    }

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

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

    .section-cta {
        padding: 4.5rem 0;
    }

    .section-cta h2 {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }

    .section-cta p {
        margin-bottom: 1.5rem;
    }

    .section-audit-feature {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }

    .section-security--compact {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .solution-pillars {
        margin-top: 1.5rem;
        gap: 1rem;
    }

    .solution-card {
        padding: 1.35rem 1.5rem;
    }

    .solution-card h3 {
        font-size: 1.0625rem;
        margin-bottom: 0.45rem;
    }

    .solution-card p {
        font-size: 0.875rem;
        line-height: 1.55;
    }

    .landing-workflow {
        margin-top: 1.75rem;
        padding-top: 1.5rem;
    }

    .pricing-value-card {
        margin-bottom: 2.5rem;
        padding: 1.75rem 2rem;
    }

    .pricing-value-card-header {
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .audience-grid.audience-grid--four {
        gap: 1rem;
    }

    .audience-grid--four .audience-card {
        padding: 1.35rem;
    }

    .audience-grid--four .audience-desc {
        font-size: 0.8125rem;
        margin-bottom: 1.15rem;
    }

    .landing-footer {
        padding: 3rem 0;
    }
}

@media (min-width: 1440px) and (max-width: 1999px) and (max-height: 1110px) {
    .hero-layout {
        gap: 2rem 2.75rem;
    }
}

/* =============================================================================
   Lexware-inspiriertes Layout (AvoTax USP)
   ============================================================================= */

.lx-btn-pill {
    border-radius: var(--radius-pill);
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.lx-eyebrow::before {
    content: '✦';
    color: var(--accent);
    margin-right: 0.4rem;
    font-size: 0.85em;
}

.lx-section-header .section-eyebrow {
    display: inline-flex;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.lx-section-anchor {
    display: block;
    position: relative;
    top: calc(-1 * (var(--header-h) + 1rem));
    height: 0;
    width: 0;
    overflow: hidden;
    pointer-events: none;
}

/* Feature-Tabs & Zielgruppen (Layout, AvoTax-Farben) */
.lx-features {
    position: relative;
    padding-top: var(--lx-spacing-section);
    padding-bottom: var(--lx-spacing-section);
    background-color: #fff;
    background: linear-gradient(180deg, var(--background) 0%, #fff 55%);
    color: var(--foreground);
}

.lx-features .hero-trust-band--in-section {
    margin: 0 0 2.5rem;
}

.lx-feature-tabs__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.5rem;
}

.lx-feature-tabs__btn {
    appearance: none;
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--muted-foreground);
    padding: 0.65rem 1.1rem;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: color 0.2s, background 0.2s, box-shadow 0.2s;
}

.lx-feature-tabs__btn:hover {
    color: var(--foreground);
    background: var(--background);
}

.lx-feature-tabs__btn.is-active {
    color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 2px var(--accent) inset;
    font-weight: 600;
}

.lx-feature-tabs__panel[hidden] {
    display: none !important;
}

.lx-feature-tabs__panel:not([hidden]) {
    display: block;
    animation: lxFadeIn 0.35s ease;
}

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

.lx-feature-tabs__content {
    display: grid;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 900px) {
    .lx-feature-tabs__content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.lx-feature-tabs__text h3 {
    font-size: clamp(1.375rem, 2.5vw, 1.75rem);
    margin-bottom: 1rem;
    color: var(--primary);
}

.lx-feature-tabs__text p {
    color: var(--muted-foreground);
    margin-bottom: 1.25rem;
    line-height: 1.65;
}

.lx-feature-tabs__bullets {
    list-style: none;
    display: grid;
    gap: 0.65rem;
    margin: 0;
    padding: 0;
}

.lx-feature-tabs__bullets li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9375rem;
    color: var(--foreground);
}

.lx-feature-tabs__bullets .icon-check {
    width: 1.125rem;
    height: 1.125rem;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.lx-feature-tabs__visual {
    min-width: 0;
}

.lx-feature-tabs__visual .content-feature-figure {
    margin: 0;
}

.lx-feature-tabs__visual .content-feature-figure__frame {
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    box-shadow: 0 24px 56px rgba(15, 23, 42, 0.16);
    border: 1px solid rgba(148, 163, 184, 0.22);
}

.lx-feature-tabs__visual .content-feature-figure__viewport {
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #0f172a;
    position: relative;
}

.lx-feature-tabs__visual .content-feature-figure__zoom {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: none;
    background: transparent;
    cursor: zoom-in;
}

.lx-feature-tabs__visual .content-feature-figure__zoom picture,
.lx-feature-tabs__visual .landing-screenshot-zoom__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.lx-feature-tabs__visual .content-feature-figure__caption {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    margin-top: 0.75rem;
    text-align: center;
}

/* Personas / Zielgruppen */
.lx-personas {
    padding-top: var(--lx-spacing-section);
    padding-bottom: var(--lx-spacing-section);
    background: #fff;
}

.lx-personas .audience-card {
    border-radius: 1rem;
    border: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
    transition: transform 0.2s, box-shadow 0.2s;
}

.lx-personas .audience-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.lx-personas .audience-card--highlight {
    border-color: color-mix(in srgb, var(--accent) 40%, var(--border));
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.12);
}

/* Solution-Section (Signale & Workflow) */
.section-solution {
    padding-top: 3rem;
    padding-bottom: var(--lx-spacing-section);
}

@media (max-width: 767px) {
    .lx-features {
        padding-top: 3rem;
    }

    .lx-features .hero-trust-band--in-section {
        margin-bottom: 2rem;
    }

    .lx-feature-tabs {
        display: grid;
        grid-template-columns: 1fr;
    }

    .lx-feature-tabs__nav {
        grid-row: 1;
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.75rem;
        overscroll-behavior-x: contain;
    }

    .lx-feature-tabs__panel {
        grid-row: 2;
        grid-column: 1;
    }

    .lx-feature-tabs__panel[hidden] {
        display: block !important;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        animation: none;
    }

    .lx-feature-tabs__panel:not([hidden]) {
        visibility: visible;
        opacity: 1;
        position: relative;
        z-index: 1;
        animation: lxFadeInMobile 0.3s ease;
    }

    @keyframes lxFadeInMobile {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    .lx-feature-tabs__btn {
        flex-shrink: 0;
    }

    .lx-feature-tabs__visual {
        overscroll-behavior: contain;
    }
}

