/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #7B4BDE;
    --primary-dark: #5A2FB8;
    --secondary: #E8E0F7;
    --accent: #FF6B6B;
    --success: #10b981;
    --text-dark: #2C3E50;
    --text-light: #6B7280;
    --bg-white: #FFFFFF;
    --bg-light: #F9FAFB;
    --bg-soft-lilac: #F0EBFF;
    --bg-soft-lilac-strong: #E4D4FF;
    --bg-soft-inky: #E8E6F9;
    --bg-soft-berry: #F2E3FF;
    --bg-soft-amber: #F8EEFF;
    --border: #E5E7EB;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --header-height: 88px;
    --hero-content-height: 480px;
    --hero-gradient-progress: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.only-desktop {
    display: block;
}

.only-tablet,
.only-mobile {
    display: none;
}

body.nav-open {
    overflow: hidden;
}

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

/* Legal Content (Impressum, Datenschutz) */
section .container[style*="max-width: 800px"] {
    width: 53vw !important;
    max-width: 53vw !important;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
}

section {
    scroll-margin-top: 80px;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.72);
    border-bottom: 1px solid rgba(123, 77, 222, 0.12);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: all 0.3s ease;
    width: 100vw;
    max-width: 100vw;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    color: var(--primary);
    backdrop-filter: blur(12px);
}

.header .container {
    width: 50vw;
    max-width: 50vw !important;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-start;
    position: relative;
}

.header.scrolled {
    background: #ffffff;
    border-bottom: 1px solid rgba(123, 77, 222, 0.2);
    box-shadow: 0 4px 16px rgba(44, 62, 80, 0.08);
    color: var(--primary-dark);
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(123, 77, 222, 0.1) 20%, 
        rgba(123, 77, 222, 0.1) 80%, 
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.header.scrolled::after {
    opacity: 1;
}

body.nav-open .header {
    background: #ffffff;
    box-shadow: 0 4px 16px rgba(44, 62, 80, 0.14);
    color: var(--primary-dark);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    width: 100%;
    max-width: 100%;
    gap: 2rem;
    position: relative;
    color: inherit;
}

.nav .logo {
    flex-shrink: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.25rem;
    margin: 0;
    padding: 0;
    align-items: center;
    margin-left: auto;
    margin-right: 2rem;
}

.nav-menu a {
    color: var(--primary);
    text-decoration: none !important;
    font-weight: 700;
    font-size: 0.95rem;
    transition: color 0.2s ease, background 0.2s ease;
    position: relative;
    padding: 0.45rem 0.9rem;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    border-radius: 999px;
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.header.scrolled .nav-menu a:hover,
.header.scrolled .nav-menu a:focus-visible {
    color: #ffffff;
    background: var(--primary);
}

@media (max-width: 1199px) {
    .nav-menu a {
        font-size: 1.05rem;
        display: flex;
        width: 100%;
        justify-content: flex-start;
        padding: 0.65rem 0.75rem;
        color: var(--primary);
        text-decoration: none;
        border-radius: 16px;
        transition: color 0.2s ease, background 0.2s ease;
    }

    .nav-menu a:hover,
    .nav-menu a:focus-visible {
        color: #ffffff;
        background: var(--primary);
    }
}

.nav-menu a::after {
    display: none;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
    color: #ffffff;
    background: var(--primary);
    border-color: transparent;
}

.nav-menu a:focus-visible {
    outline: 3px solid rgba(123, 77, 222, 0.35);
    outline-offset: 2px;
}

.header:not(.scrolled) .nav-menu a,
.header.scrolled .nav-menu a {
    color: var(--primary);
}

.header:not(.scrolled) .nav-menu a:hover,
.header.scrolled .nav-menu a:hover {
    color: #ffffff;
}

.nav .cta-button {
    flex-shrink: 0;
    margin-left: 0;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: auto;
    align-items: center;
    justify-content: center;
    color: inherit;
}

.nav-toggle:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
}

.nav-toggle-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
}

.nav-toggle-icon .icon-bars,
.nav-toggle-icon .icon-close {
    position: absolute;
    font-size: 1.4rem;
    color: inherit;
    transition: opacity 0.25s ease, transform 0.25s ease, color 0.25s ease;
}

.nav-toggle-icon .icon-close {
    opacity: 0;
    transform: scale(0.6);
}

.header.scrolled .nav-toggle-icon .icon-bars,
.header.scrolled .nav-toggle-icon .icon-close {
    color: var(--primary-dark);
}

.nav-toggle[aria-expanded="true"] .icon-bars {
    opacity: 0;
    transform: scale(0.6);
}

.nav-toggle[aria-expanded="true"] .icon-close {
    opacity: 1;
    transform: scale(1);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: currentColor;
    transition: width 0.3s ease;
    border-radius: 2px;
}

.header:not(.scrolled) .nav-menu a:hover,
.header.scrolled .nav-menu a:hover {
    color: #ffffff;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: inherit;
    transition: color 0.3s ease;
}

.header:not(.scrolled) .logo:hover,
.header:not(.scrolled) .logo:hover span {
    color: rgba(90, 47, 184, 0.9);
}

.header.scrolled .logo {
    color: var(--primary);
}

.header.scrolled .logo:hover,
.header.scrolled .logo:hover span {
    color: var(--primary-dark);
}

.logo i {
    font-size: 1.875rem;
    color: inherit;
    transition: color 0.3s ease;
}

.header:not(.scrolled) .logo:hover i {
    color: rgba(90, 47, 184, 0.9);
}

.header.scrolled .logo:hover i {
    color: var(--primary-dark);
}

.logo-img {
    height: 50px;
    width: 50px;
    transition: transform 0.3s ease;
    border-radius: 50%;
}

.logo:hover .logo-img {
    transform: translateY(-2px);
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--secondary);
}

.cta-button {
    background: var(--primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(123, 77, 222, 0.2);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(123, 77, 222, 0.3);
}

.cta-button .cta-button-text {
    display: inline-block;
}

.cta-button-mobile {
    width: 100%;
    justify-content: center;
    font-size: 1.05rem;
    gap: 0.75rem;
    padding: 0.9rem 1.5rem;
}

.cta-button-hidden {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Coming Soon Badge */
.coming-soon {
    position: relative;
    cursor: not-allowed;
    opacity: 0.85;
}

.coming-soon:hover {
    transform: none;
}

.coming-soon-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FFA500, #FF6B35);
    color: white;
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    margin-left: 0.5rem;
    font-weight: 600;
    white-space: nowrap;
    vertical-align: middle;
    box-shadow: 0 2px 8px rgba(255, 165, 0, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.05);
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--header-height) + 4rem) 0 6rem;
    color: #fff;
    text-align: center;
    background-image:
        linear-gradient(180deg, rgba(216, 208, 248, 0.78), rgba(196, 170, 245, 0.65), rgba(248, 244, 255, 0.45)),
        url('img/IMG_3353-portrait.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
    margin-top: calc(-1 * var(--header-height));
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: linear-gradient(180deg, rgba(216, 208, 248, 0.78), rgba(196, 170, 245, 0.65));
    pointer-events: none;
}

.hero-inner {
    width: 100%;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.hero-inner > * {
    width: min(80vw, 1080px);
}

@media (max-width: 767px) {
    .hero-inner > * {
        width: 100%;
    }

    .hero-product-visual {
        display: none;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: clamp(1.25rem, 3vw, 2rem);
    padding: clamp(2rem, 6vw, 3rem);
    border-radius: 24px;
    background: rgba(103, 72, 191, 0.88);
    box-shadow:
        0 34px 60px rgba(15, 23, 42, 0.35),
        0 16px 32px rgba(15, 23, 42, 0.25),
        0 4px 12px rgba(17, 24, 39, 0.35);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    max-width: 520px;
    width: 100%;
    margin: 1rem auto 0;
}

.hero-content-layout {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 4vw, 2.5rem);
}
.hero-headline {
    font-size: clamp(2.1rem, 4vw, 3.2rem);
    line-height: 1.05;
    margin: 0;
    letter-spacing: -0.015em;
    word-break: break-word;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    line-height: 1.1;
    margin: 0;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2.5vw, 1.4rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 1.25rem;
}

.hero-description {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.75;
    margin: 0;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-buttons .btn-large {
    padding: 1rem 2.25rem;
    font-size: 1.05rem;
    font-weight: 600;
}

.hero-buttons .btn-primary {
    background: #a066ff;
}
.hero-buttons .btn-primary:hover {
    background: #8b4fff;
    box-shadow: 0 10px 24px rgba(160, 102, 255, 0.35);
}

.hero-notice {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    margin: 0;
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-notice span {
    font-weight: 700;
}

.hero-utility-links {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.hero-utility-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.hero-utility-link:hover,
.hero-utility-link:focus-visible {
    background: rgba(255, 255, 255, 0.28);
    transform: translateY(-1px);
}

.hero-utility-link i {
    font-size: 1rem;
}

@media (min-width: 769px) {
    .hero-inner {
        justify-content: center;
        padding-left: clamp(2rem, 6vw, 4rem);
        padding-right: clamp(2rem, 6vw, 4rem);
    }

    .hero-content {
        max-width: min(70vw, 860px);
        margin: 1.5rem auto 0;
        text-align: center;
    }

    .hero-headline {
        font-size: clamp(2.4rem, 4.5vw, 3.4rem);
    }

    .hero-buttons,
    .hero-notice,
    .hero-utility-links {
        justify-content: center;
        text-align: center;
    }
}

@media (min-width: 1200px) {
    .hero-content {
        max-width: min(60vw, 1100px);
    }
}

@media (max-width: 1024px), (pointer: coarse) {
    .hero {
        background-attachment: scroll;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: calc(var(--header-height) + 3rem) 0 4rem;
    }

    .hero-inner {
        padding: 0 1.5rem;
    }

    .hero-content-layout {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-product-visual {
        max-width: 320px;
        margin: 0 auto;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn-large,
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 560px) {
    .hero {
        padding: calc(var(--header-height) + 2.5rem) 0 3.5rem;
    }

    .hero-inner {
        padding: 0 1.25rem;
    }

    .hero-content {
        padding: 1.75rem 1.25rem 2.25rem;
        max-width: 480px;
    }

    .hero-headline {
        font-size: clamp(2.2rem, 8vw, 2.8rem);
    }
}

.magazine-section {
    padding: clamp(2rem, 4vw, 3rem) 0;
    background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-soft-lilac) 100%);
}

.magazine-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.magazine-header-text h2 {
    margin: 0;
    font-size: clamp(2rem, 3vw, 2.6rem);
    color: var(--text-dark);
}

.magazine-subtitle {
    margin: 0.35rem 0 0;
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 580px;
}

.magazine-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.4rem;
    border-radius: 999px;
    background: rgba(123, 75, 222, 0.1);
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.magazine-link:hover {
    background: rgba(123, 75, 222, 0.18);
    transform: translateY(-2px);
}

.magazine-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

.magazine-feature-card {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    background: rgba(103, 72, 191, 0.95);
    color: #fff;
    display: flex;
    flex-direction: column;
    min-height: 600px;
    box-shadow:
        0 32px 60px rgba(15, 23, 42, 0.32),
        0 16px 30px rgba(15, 23, 42, 0.18),
        0 4px 12px rgba(17, 24, 39, 0.32);
}

.magazine-feature-link {
    display: grid;
    grid-template-rows: minmax(0, 380px) auto;
    height: 100%;
    min-height: 600px;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
}

.magazine-feature-media {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(17, 24, 39, 0.35);
    background-size: cover;
    background-position: center;
}

.magazine-feature-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0), rgba(17, 24, 39, 0.75));
}

.magazine-feature-body {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: clamp(1.8rem, 3vw, 2.4rem);
}

.magazine-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.magazine-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.magazine-meta-item i {
    font-size: 0.95rem;
}

.magazine-title {
    font-size: clamp(1.8rem, 2.4vw, 2.35rem);
    line-height: 1.2;
    margin: 0;
    color: #fff;
}

.magazine-excerpt {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.65;
    font-size: 1rem;
    line-clamp: 4;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.magazine-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.magazine-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
}

.magazine-readmore {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    align-self: flex-start;
    margin-top: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
}

.magazine-readmore i {
    font-size: 0.9rem;
}

.magazine-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, 1fr);
    gap: 1rem;
    align-items: stretch;
    height: 100%;
    min-height: 600px;
}

.magazine-card {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-white);
    height: 100%;
    min-height: 0;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
}

.magazine-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(44, 62, 80, 0.16);
}

.magazine-card a {
    color: inherit;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.magazine-card-image {
    position: relative;
    padding-top: 40%;
    background-size: cover;
    background-position: center;
}

.magazine-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0), rgba(17, 24, 39, 0.12));
}

.magazine-card-body {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.75rem;
    padding: 1.25rem 1.35rem 1.35rem;
    flex-grow: 1;
    min-height: 0;
}

.magazine-card-title {
    font-size: 1.15rem;
    margin: 0;
    color: var(--text-dark);
    text-align: center;
    word-break: break-word;
    hyphens: auto;
    line-height: 1.4;
    padding-bottom: 0.25rem;
}

.magazine-card-excerpt {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    flex-grow: 1;
    padding: 0;
    text-align: left;
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: auto;
    margin-bottom: 0.5rem;
    /* Text wird in PHP bereits auf 28 Wörter + [...] gekürzt */
    /* KEINE CSS line-clamp mehr - Text wird nur in PHP gekürzt */
    word-wrap: break-word;
    /* Overflow hidden als Sicherheit, aber Text sollte durch PHP-Kürzung bereits passen */
    overflow: hidden;
}

.magazine-card-readmore {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9rem;
    justify-content: flex-end;
    margin-top: auto;
    padding-top: 0.75rem;
    align-self: flex-end;
    margin-left: auto;
    margin-right: 0;
    margin-bottom: 0;
}

.magazine-card-readmore i {
    font-size: 0.85rem;
}

.magazine-more {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
    margin-top: auto;
}

@media (max-width: 768px) {
    .magazine-feature-card,
    .magazine-feature-link,
    .magazine-grid .magazine-card,
    .magazine-grid .magazine-card a {
        max-height: none;
    }
}

.magazine-empty {
    grid-column: 1 / -1;
    padding: 3rem;
    border-radius: 22px;
    border: 1px dashed rgba(123, 77, 222, 0.4);
    text-align: center;
    color: var(--text-light);
}

.magazine-empty strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.magazine-placeholder,
.magazine-placeholder-card {
    position: relative;
    border-radius: 22px;
    background: rgba(232, 224, 247, 0.4);
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(90, 47, 184, 0.65);
    font-weight: 600;
}

.magazine-placeholder {
    min-height: 420px;
}

.is-loading::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0));
    animation: shimmer 1.2s infinite;
}

.magazine-placeholder-card.is-loading {
    min-height: 190px;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

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

    .magazine-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        grid-auto-rows: auto;
    }
}

@media (max-width: 768px) {
    .magazine-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .magazine-link {
        align-self: stretch;
        justify-content: center;
    }

    .magazine-feature-link {
        grid-template-rows: minmax(0, 220px) auto;
    }
}

@media (max-width: 520px) {
    .magazine-card-body {
        padding: 1.25rem;
    }
}

.app-mockup {
    width: 300px;
    height: 600px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.app-mockup::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.app-mockup i {
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.2);
}

/* Problem Section */
.problem-section {
    padding: 5rem 0;
    background: var(--bg-white);
}

.problem-section .container {
    max-width: 100%;
    width: 100%;
    padding: 0 4rem;
}

.problem-section h2,
.benefits-section h2,
.how-it-works-section h2,
.pricing-section h2,
.cta-section h2,
.features-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3.5rem;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    width: 100%;
}

.problem-card {
    padding: 2.5rem 2.25rem;
    background: var(--bg-light);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(123, 77, 222, 0.15);
    box-shadow: 0 2px 8px rgba(123, 77, 222, 0.08);
    width: 100%;
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(123, 77, 222, 0.2);
    border-color: rgba(123, 77, 222, 0.3);
}

.problem-card i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.problem-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.problem-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* Solution Section */
.solution-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.solution-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.solution-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
    line-height: 1.2;
    width: 100%; /* Nutzt die gesamte Breite bis zum Bild */
    max-width: 100%; /* Keine Breitenbeschränkung */
    box-sizing: border-box;
    word-wrap: break-word; /* Erlaubt Umbrüche bei langen Wörtern */
    overflow-wrap: break-word; /* Erlaubt Umbrüche bei langen Wörtern */
}

.solution-section .section-subtitle {
    font-size: 1.25rem;
    color: rgba(232, 224, 247, 0.95); /* Helles Lila (--secondary) mit hoher Transparenz für gute Lesbarkeit */
    opacity: 1;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.section-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

.solution-benefits {
    width: 70vw;
    max-width: none;
    margin: 2rem auto 0;
    margin-left: auto;
    margin-right: auto;
    display: block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.solution-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    width: 100%;
}

.solution-list li {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border-left: 4px solid rgba(255, 255, 255, 0.3);
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
}

.solution-list li:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.solution-list li strong {
    color: white;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
}

.problem-intro {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 3rem;
}

/* Features Section */
.features-section {
    padding: 3rem 0;
    background: var(--bg-white);
}

/* Carousel Styles */
.features-carousel-wrapper {
    position: relative;
    width: 80%;
    max-width: 80vw;
    margin: 0 auto;
    padding: 0 75px;
    box-sizing: border-box;
}

@media (max-width: 767px) {
    .features-carousel-wrapper {
        width: 100%;
        max-width: 100%;
        padding: 0 24px;
    }
}

.features-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 700px;
    display: flex;
    align-items: center;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.feature-slide {
    min-width: 100%;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    width: 100%;
    box-sizing: border-box;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: white;
    border: 2px solid var(--primary);
    color: var(--primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 12px rgba(123, 77, 222, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn-prev {
    left: 10px;
}

.carousel-btn-next {
    right: 10px;
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
    padding: 0;
    list-style: none;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(123, 77, 222, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot.active {
    background: var(--primary);
    transform: scale(1.3);
}

.carousel-dot:hover {
    background: var(--primary);
    opacity: 0.7;
}

.feature-slide .feature-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 1rem;
}

.feature-slide .feature-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 480px;
    max-height: 660px;
    overflow: hidden;
}

.feature-slide .feature-screenshot {
    width: 100%;
    max-width: 340px;
    max-height: 640px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    position: relative;
}

.feature-slide .feature-screenshot img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    visibility: visible;
    opacity: 1;
}

.feature-slide .feature-screenshot-children img,
.feature-slide .screenshot-children {
    object-fit: contain !important;
    width: 100% !important;
    height: auto !important;
    max-height: 580px !important;
    max-width: 100% !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.feature-slide .feature-screenshot-cloud img,
.feature-slide .screenshot-cloud {
    object-fit: contain !important;
    width: 100% !important;
    height: auto !important;
    max-height: 580px !important;
    max-width: 100% !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.feature-slide .feature-screenshot-analytics img,
.feature-slide .screenshot-analytics {
    object-fit: contain !important;
    width: 100% !important;
    height: auto !important;
    max-height: 580px !important;
    max-width: 100% !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.feature-slide .feature-screenshot-devices img,
.feature-slide .screenshot-devices {
    object-fit: contain !important;
    width: 100% !important;
    height: auto !important;
    max-height: 580px !important;
    max-width: 100% !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.feature-row.reverse {
    direction: rtl;
}

.feature-row.reverse > * {
    direction: ltr;
}

.feature-mockup {
    width: 100%;
    aspect-ratio: 1;
    max-width: 400px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--bg-light) 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.feature-mockup i {
    font-size: 6rem;
    color: var(--primary);
    opacity: 0.5;
}

/* Feature Screenshots */
.feature-screenshot {
    width: 100%;
    max-width: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.screenshot-img {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    object-fit: contain;
    background: transparent;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.12));
}

/* Kalender-Ausschnitt: Nur den Kalender-Bereich zeigen */
.feature-screenshot-calendar {
    overflow: hidden;
    height: 500px;
    border-radius: 24px;
}

.screenshot-calendar {
    object-fit: cover;
    object-position: center 40%;
    width: 100%;
    height: 100%;
    border-radius: 24px;
}

/* Analytics-Ausschnitt: Graph und Analytics-Bereich sichtbar */
.feature-screenshot-analytics {
    overflow: visible;
    height: auto;
    border-radius: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.screenshot-analytics {
    object-fit: contain;
    width: 100%;
    height: auto;
    max-height: 800px;
    object-position: center;
    border-radius: 0;
    box-shadow: none;
    filter: none;
}

/* Cloud-Synchronisation: Vollständig sichtbar mit korrektem Verhältnis - genau wie Analytics */
.feature-screenshot-cloud {
    overflow: visible;
    height: auto;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mehrere Kinder verwalten: Vollständig sichtbar mit korrektem Verhältnis */
.feature-screenshot-children {
    overflow: visible;
    height: auto;
    border-radius: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.screenshot-children {
    object-fit: contain;
    width: 100%;
    height: auto;
    max-height: 800px;
    object-position: center;
    border-radius: 0;
    box-shadow: none;
    filter: none;
}

.screenshot-cloud {
    object-fit: contain;
    width: 100%;
    height: auto;
    max-height: 800px;
    object-position: center;
    border-radius: 0;
    box-shadow: none;
    filter: none;
    display: block;
}

/* Feature-Ausschnitte für andere Screenshots */
.feature-screenshot {
    overflow: hidden;
    border-radius: 24px;
}

/* Feature-Ausschnitte - zeige nur relevante Bereiche */
.feature-screenshot:not(.feature-screenshot-analytics):not(.feature-screenshot-cloud):not(.feature-screenshot-children) img {
    object-fit: cover;
}

/* Für Dashboard/Noten-Feature: Zeige den mittleren Bereich */
.feature-screenshot:not(.feature-screenshot-calendar):not(.feature-screenshot-devices):not(.feature-screenshot-analytics):not(.feature-screenshot-cloud):not(.feature-screenshot-children) img {
    object-position: center 30%;
    height: 500px;
    width: 100%;
}

/* Devices-Bild: Vollständig sichtbar mit korrektem Verhältnis */
.feature-screenshot-devices {
    overflow: visible;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    box-shadow: none;
}

.screenshot-devices {
    object-fit: contain;
    width: 100%;
    height: auto;
    max-height: 600px;
    object-position: center;
    border-radius: 0;
    box-shadow: none;
    filter: none;
}


.feature-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
}

.feature-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.feature-slide .feature-content {
    max-height: 650px;
    overflow-y: auto;
    padding-right: clamp(0.5rem, 2vw, 2rem);
    width: 100%;
}

.feature-slide .feature-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    line-height: 1.3;
}

.feature-slide .feature-content p {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    line-height: 1.7;
    text-align: justify;
}

.feature-slide .analytics-features-table {
    margin-top: 0.5rem;
}

.feature-slide .analytics-features-table td {
    padding: 0.45rem 0.45rem;
    font-size: 0.9rem;
    line-height: 1.35;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.feature-list i {
    color: var(--success);
    font-size: 1.25rem;
}

/* Analytics Features Tabelle */
.analytics-features-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 0.75rem;
}

.analytics-features-table tbody tr {
    border-bottom: 1px solid var(--border);
    transition: background-color 0.2s ease;
}

.analytics-features-table tbody tr:last-child {
    border-bottom: none;
}

.analytics-features-table tbody tr:hover {
    background-color: var(--bg-light);
}

.analytics-features-table td {
    padding: 0.625rem 0.5rem;
    vertical-align: top;
    font-size: 1rem;
    line-height: 1.5;
}

.analytics-features-table .feature-name {
    font-weight: 600;
    color: var(--text-dark);
    width: 40%;
    min-width: 180px;
    padding-right: 1.5rem;
    white-space: nowrap;
}

.analytics-features-table .feature-name i {
    color: var(--primary);
    margin-right: 0.5rem;
}

.analytics-features-table .feature-description {
    color: var(--text-light);
    padding-left: 0;
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.benefits-section .container {
    max-width: 100%;
    width: 100%;
    padding: 0 4rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    width: 100%;
}

.benefit-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    width: 100%;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--border);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon i {
    font-size: 2.5rem;
    color: var(--primary);
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.875rem;
    font-weight: 600;
    line-height: 1.3;
    word-break: break-word;
    hyphens: auto;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* How It Works Section */
.how-it-works-section {
    padding: 5rem 0;
    background: var(--bg-white);
}


.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 12px rgba(123, 77, 222, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover .step-icon {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(123, 77, 222, 0.4);
}

.step-icon i {
    font-size: 2rem;
}

.step h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    line-height: 1.3;
    height: calc(1.1rem * 1.3 * 3); /* Genau 3 Zeilen */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.step p {
    color: var(--text-light);
    line-height: 1.7;
}

.step-arrow {
    font-size: 2rem;
    color: var(--primary);
    flex-shrink: 0;
}

/* CTA Section */
.cta-section {
    padding: clamp(4rem, 7vw, 6rem) 0;
    background: linear-gradient(135deg, rgba(123, 75, 222, 0.85), rgba(90, 47, 184, 0.78));
    color: #fff;
    text-align: center;
}

.cta-section .section-eyebrow {
    color: rgba(255, 255, 255, 0.85);
}

.cta-section .solution-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-section .container {
    max-width: 100%;
    padding: 0 2rem;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
    line-height: 1.2;
    width: 100vw;
    max-width: 100vw;
    box-sizing: border-box;
    color: white;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: 2rem;
    padding-right: 2rem;
}

@media (max-width: 768px) {
    .cta-section h2 {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        max-width: 32rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        margin-inline: auto;
    }
}

.cta-section .section-subtitle {
    font-size: 1.25rem;
    color: rgba(232, 224, 247, 0.95);
    opacity: 1;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

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

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
}

.testimonials-section .section-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 3.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(123, 77, 222, 0.15);
    box-shadow: 0 2px 8px rgba(123, 77, 222, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(123, 77, 222, 0.2);
    border-color: rgba(123, 77, 222, 0.3);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    font-size: 1.1rem;
}

.testimonial-rating .fa-solid {
    color: #FFB800;
}

.testimonial-rating .fa-regular {
    color: rgba(255, 184, 0, 0.3);
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
    flex-grow: 1;
    margin: 0;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.testimonial-author strong {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 600;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Roadmap Section */
.roadmap-section {
    padding: 5rem 0;
    background: var(--bg-white);
}

.roadmap-section .container {
    max-width: 100%;
    width: 100%;
    padding: 0 4rem;
}

.roadmap-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
}

.roadmap-section .section-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 3.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    width: 100%;
}

.roadmap-card {
    background: var(--bg-light);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(123, 77, 222, 0.15);
    box-shadow: 0 2px 8px rgba(123, 77, 222, 0.08);
    width: 100%;
}

.roadmap-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(123, 77, 222, 0.2);
    border-color: rgba(123, 77, 222, 0.3);
}

.roadmap-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.roadmap-icon i {
    font-size: 2.5rem;
    color: var(--primary);
}

.roadmap-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.875rem;
    font-weight: 600;
    line-height: 1.3;
    word-break: break-word;
    hyphens: auto;
    color: var(--text-dark);
}

.roadmap-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* Footer */
.footer {
    background: var(--secondary);
    color: var(--text-dark);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: clamp(1.5rem, 4vw, 2.5rem);
    align-items: flex-start;
    margin-bottom: 2rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-column--brand {
    gap: 1rem;
}

.footer-column h4 {
    margin: 0 0 0.75rem;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.footer-column a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link-button {
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    font: inherit;
    color: var(--text-light);
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
}

.footer-link-button:hover,
.footer-link-button:focus {
    color: var(--primary);
    outline: none;
}

.footer-link-button:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

.footer-column a:hover {
    color: var(--primary);
}

@media (max-width: 960px) {
    .footer-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-column--brand {
        grid-column: 1 / -1;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-column {
        align-items: center;
    }
}

.footer-brand {
    text-align: center;
}

.footer-brand .logo {
    color: var(--primary);
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-brand .logo span {
    color: var(--primary);
}

.footer-brand p {
    color: var(--text-light);
}

.footer-links h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(123, 77, 222, 0.2);
    padding-top: 1.5rem;
    text-align: center;
    color: var(--text-light);
}

.footer-bottom i {
    color: var(--accent);
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.pricing-section .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-table {
    max-width: 900px;
    margin: 0 auto 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table thead {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}

.pricing-table th {
    padding: 1.5rem 1rem;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
}

.pricing-table th.free-column,
.pricing-table th.premium-column {
    font-size: 1.5rem;
}

.pricing-table th i {
    font-size: 1rem; /* Kleinere Icons im Header */
}

.pricing-table th.feature-column {
    text-align: left;
    width: 50%;
}

.pricing-table th.free-column,
.pricing-table th.premium-column {
    width: 25%;
    text-align: center;
    vertical-align: middle;
}

.pricing-table th.premium-column {
    background: linear-gradient(135deg, rgba(232, 224, 247, 0.95), rgba(232, 224, 247, 0.85));
    color: var(--primary);
}

.pricing-table th .header-price {
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: 0.15rem;
    color: var(--text-light);
    opacity: 0.9;
}

.pricing-table th.free-column {
    color: var(--secondary);
}

.pricing-table th.free-column .header-price {
    color: var(--secondary);
    font-weight: 600;
}

.pricing-table th.premium-column .header-price {
    color: var(--primary);
    font-weight: 600;
}

.pricing-table tbody tr {
    border-bottom: 1px solid var(--border);
    transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-table tbody tr:hover {
    background-color: var(--bg-light);
}

.pricing-table tbody tr.premium-feature {
    background-color: rgba(232, 224, 247, 0.3); /* Lila-Pastell (--secondary) */
}

.pricing-table tbody tr.premium-feature:hover {
    background-color: rgba(232, 224, 247, 0.5); /* Intensiveres Lila beim Hover */
}

.pricing-table tbody tr.price-row {
    background: linear-gradient(135deg, rgba(232, 224, 247, 0.5), rgba(232, 224, 247, 0.3));
    font-weight: 600;
}

.pricing-table td {
    padding: 1.25rem 1rem;
    text-align: center;
    vertical-align: middle;
}

.pricing-table td.feature-name {
    text-align: left;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.6;
}

.pricing-table td.check {
    color: var(--primary); /* Lila statt Grün */
    font-size: 1.2rem; /* Kleinere Icons */
}

.pricing-table td.no-check {
    color: #9CA3AF;
    font-size: 1.2rem; /* Kleinere Icons */
}

.pricing-table td.price {
    font-size: 1.2rem;
    color: var(--primary);
}

.pricing-cta {
    text-align: center;
    margin-top: 2rem;
}

.pricing-note {
    display: inline-block;
    background: rgba(123, 77, 222, 0.1);
    padding: 1rem 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
    box-shadow: var(--shadow-sm);
    font-size: 1rem;
    color: var(--text-dark);
}

[data-horizontal-scroll] {
    position: relative;
}

[data-horizontal-scroll].is-scrollable::after {
    content: '';
    position: absolute;
    inset: 0 0 auto auto;
    width: 48px;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(270deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0));
}

.benefits-section [data-horizontal-scroll].is-scrollable::after,
.testimonials-section [data-horizontal-scroll].is-scrollable::after,
.roadmap-section [data-horizontal-scroll].is-scrollable::after {
    background: linear-gradient(270deg, rgba(249, 250, 251, 0.95), rgba(249, 250, 251, 0));
}

/* Responsive Design */

@media (max-width: 1199px) {
    .only-mobile {
        display: block;
    }

    .header .container {
        width: 100%;
        max-width: 100% !important;
        padding: 0 1.5rem;
    }

    .nav {
        gap: 1rem;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: min(320px, 80vw);
        background: var(--bg-white);
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        padding: 5.5rem 2rem 2rem;
        transform: translateX(110%);
        transition: transform 0.3s ease, opacity 0.3s ease;
        box-shadow: none;
        margin: 0;
        z-index: 200;
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .nav-menu-header {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        width: 100%;
        justify-content: flex-start;
    }

    .nav-menu-close-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 52px;
        height: 52px;
        border-radius: 999px;
        background: rgba(123, 77, 222, 0.18);
        border: none;
        color: var(--primary-dark);
        font-weight: 700;
        font-size: 1.6rem;
        cursor: pointer;
        transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    }

    .nav-menu-close-btn:hover {
        background: rgba(123, 77, 222, 0.28);
        color: var(--primary);
        transform: translateX(2px);
    }

    .nav-menu-close-btn:focus-visible {
        outline: 2px solid rgba(123, 77, 222, 0.45);
        outline-offset: 3px;
    }

    .nav-menu-cta-button {
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
        padding: 0.95rem 1.4rem;
        border-radius: 999px;
        background: var(--primary);
        color: #fff;
        font-weight: 700;
        font-size: 1rem;
        text-decoration: none;
        box-shadow: 0 10px 24px rgba(90, 47, 184, 0.25);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .nav-menu-cta-button:visited {
        color: #fff;
    }

    .nav-menu-cta-button:hover {
        transform: translateY(-1px);
        box-shadow: 0 14px 32px rgba(90, 47, 184, 0.3);
        background: var(--primary-dark);
        color: #fff;
    }

    .nav-menu-cta-button i {
        color: #fff;
    }

    .nav-menu-cta-button span {
        display: block;
        color: #fff;
    }

    .nav-menu-cta-button i {
        color: #fff;
    }

    .nav-menu-cta-item {
        width: 100%;
        margin-top: 0.5rem;
    }

    .nav-menu::before {
        content: '';
        position: absolute;
        inset: 0 0 auto 0;
        height: 5.5rem;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0));
        pointer-events: none;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        font-size: 1.05rem;
        display: flex;
        width: 100%;
        justify-content: flex-start;
        padding: 0.65rem 0.75rem;
        color: var(--primary);
        text-decoration: none;
        border-radius: 16px;
        transition: color 0.2s ease, background 0.2s ease;
    }

    .nav-menu a:hover,
    .nav-menu a:focus-visible {
        color: #ffffff;
        background: var(--primary);
    }

    .nav-menu a::after {
        display: none;
    }

    .nav-menu.nav-menu--open {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        box-shadow: -4px 0 24px rgba(44, 62, 80, 0.15);
    }

    .header-cta {
        display: none;
    }
}

@media (max-width: 968px) {
    .hero {
        min-height: 600px;
    }

    .hero .container {
        top: calc(var(--header-height) + clamp(10px, 5vh, 60px));
        width: min(680px, 90vw);
        padding: 0 1.5rem;
    }
}

@media (max-width: 767px) {
    .hero {
        min-height: calc(100vh + var(--hero-content-height));
    }

    .hero-visual {
        height: 100vh;
    }

    .hero .container {
        top: calc(var(--header-height) + clamp(8px, 5vh, 48px));
        width: min(90vw, 560px);
        padding: 0 1.25rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn-large,
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .hero {
        min-height: 520px;
    }

    .hero .container {
        top: calc(var(--header-height) + clamp(4px, 4vh, 40px));
        width: min(92vw, 520px);
        padding: 0 1rem;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, rgba(123, 75, 222, 0.08), rgba(102, 126, 234, 0.15));
    padding: 6rem 0;
}

.newsletter-wrapper {
    width: min(80vw, 960px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.75rem;
    background: var(--bg-white);
    border-radius: 24px;
    padding: 3.25rem 3.5rem;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.14);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.newsletter-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(123, 75, 222, 0.18), transparent 65%);
    pointer-events: none;
}

.newsletter-content h2 {
    font-size: clamp(2rem, 3vw, 2.75rem);
    color: var(--text-dark);
    margin: 1rem 0;
}

.newsletter-content p {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 32rem;
}

.newsletter-form {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: min(480px, 100%);
}

.newsletter-input-group {
    display: flex;
    align-items: stretch;
    gap: 1rem;
    width: 100%;
}

.newsletter-input-group input[type="email"] {
    flex: 1 1 auto;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    border: 2px solid rgba(123, 75, 222, 0.15);
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
}

.newsletter-input-group input[type="email"]::placeholder {
    color: rgba(15, 23, 42, 0.35);
}

.newsletter-input-group input[type="email"]:focus {
    outline: none;
    border-color: rgba(123, 75, 222, 0.45);
    box-shadow: 0 0 0 4px rgba(123, 75, 222, 0.12);
}

.newsletter-input-group .btn-primary {
    white-space: nowrap;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-size: 1rem;
}

.newsletter-privacy {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.newsletter-privacy a {
    color: var(--primary);
    text-decoration: underline;
}

.newsletter-feedback {
    margin-top: 1rem;
    min-height: 1.25rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

.newsletter-feedback--success {
    color: var(--success);
}

.newsletter-feedback--error {
    color: var(--accent);
}

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

@media (max-width: 1024px) {
    .newsletter-wrapper {
        padding: 2.75rem 2.25rem;
        gap: 1.75rem;
    }

    .newsletter-input-group {
        flex-direction: column;
    }

    .newsletter-input-group .btn-primary {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .newsletter-section {
        padding: 4rem 0;
    }

    .newsletter-wrapper {
        padding: 2.25rem 1.75rem;
        gap: 1.5rem;
    }

    .newsletter-input-group input[type="email"] {
        padding: 0.9rem 1rem;
    }
}

.content-limiter {
    width: min(80vw, 1080px);
    margin: 0 auto;
}

.section-eyebrow {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(123, 75, 222, 0.9);
    margin-bottom: 0.75rem;
}

.highlights-section {
    padding: clamp(4rem, 7vw, 6rem) 0;
    background: var(--bg-white);
    width: 100%;
    max-width: 100%;
}

.highlights-section .content-limiter {
    width: 90%;
    max-width: 90%;
    margin: 0 auto;
    text-align: center;
}

.highlights-section .section-eyebrow {
    text-align: center;
}

.highlights-section h2 {
    text-align: center;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(1.5rem, 4vw, 2.5rem);
    margin-top: clamp(2rem, 5vw, 3rem);
    text-align: left;
}

.highlight-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: clamp(1.75rem, 4vw, 2.25rem);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight-card h3 {
    font-size: 1.25rem;
    margin: 0;
    color: var(--text-dark);
}

.highlight-card p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.65;
}

.highlight-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(123, 75, 222, 0.12);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.showcase-section {
    padding: clamp(4rem, 7vw, 6rem) 0;
    background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-soft-lilac) 100%);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(2rem, 6vw, 4rem);
    align-items: center;
}

.showcase-visual {
    margin: 0;
    overflow: hidden;
}

.showcase-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.showcase-content h2 {
    margin-bottom: 1rem;
}

.showcase-content p {
    color: var(--text-light);
    line-height: 1.7;
}

.showcase-list {
    margin: clamp(1.5rem, 4vw, 2.25rem) 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.85rem;
}

.showcase-list li {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    color: var(--text-dark);
    line-height: 1.6;
}

.showcase-list i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.trust-section {
    padding: clamp(3rem, 6vw, 5rem) 0;
    background: linear-gradient(135deg, rgba(123, 75, 222, 0.06), rgba(123, 75, 222, 0.02));
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1.75rem, 5vw, 3rem);
    align-items: center;
}

.trust-copy h2 {
    margin-top: 0.25rem;
    margin-bottom: 1rem;
}

.trust-copy p {
    color: var(--text-light);
    line-height: 1.65;
}

.trust-badges {
    display: grid;
    gap: 1rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(123, 75, 222, 0.12);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    font-weight: 500;
}

.trust-badge i {
    color: var(--primary);
    font-size: 1.2rem;
}

.trust-badge span {
    color: var(--text-dark);
}

.feature-promo-section {
    padding: clamp(3.5rem, 6vw, 5rem) 0;
    background: var(--bg-white);
    width: 100%;
    max-width: 100%;
}

.feature-promo-section .content-limiter {
    width: 90%;
    max-width: 90%;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 3rem);
    padding-left: clamp(3rem, 8vw, 6rem);
    text-align: center;
}

.feature-promo-section .section-eyebrow {
    text-align: center;
}

.feature-promo-section h2 {
    text-align: center;
}

.feature-promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: clamp(1.5rem, 4vw, 2.5rem);
    max-width: 100%;
}

.feature-promo-card {
    background: var(--bg-white);
    border-radius: 24px;
    padding: clamp(1.5rem, 4vw, 2.25rem);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.feature-promo-media {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.18);
    margin: 0;
}

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

.feature-promo-image--simulation {
    object-position: 50% 45%;
}

.feature-promo-image--reminders {
    object-position: 50% 38%;
}

.feature-promo-image--family {
    object-position: 50% 55%;
}

.feature-promo-body {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-promo-body h3 {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    color: var(--text-dark);
}

.feature-promo-body h3 i {
    color: var(--primary);
}

.feature-promo-body p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.65;
}

.feature-promo-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
}

.feature-promo-grid {
    text-align: left;
}

.family-sync-section {
    padding: clamp(4rem, 7vw, 6rem) 0;
    background: var(--bg-white);
}

.family-sync-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(2rem, 6vw, 4rem);
    align-items: center;
}

.family-sync-content h2 {
    margin-top: 0.25rem;
    margin-bottom: 1rem;
}

.family-sync-content p {
    color: var(--text-light);
    line-height: 1.7;
}

.family-sync-list {
    list-style: none;
    padding: 0;
    margin: clamp(1.5rem, 4vw, 2.5rem) 0 0;
    display: grid;
    gap: 0.85rem;
}

.family-sync-list li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    color: var(--text-dark);
    line-height: 1.65;
}

.family-sync-list i {
    color: var(--primary);
    margin-top: 0.25rem;
}

.family-sync-media {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 28px;
    background-image: url('img/IMG_3363-portrait.png');
    background-size: cover;
    background-position: 50% 30%;
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.18);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.family-sync-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.comparison-section {
    padding: clamp(4rem, 7vw, 6rem) 0;
    background: linear-gradient(180deg, var(--bg-soft-lilac) 0%, var(--bg-soft-lilac-strong) 100%);
}

.comparison-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(2.5rem, 6vw, 3.5rem);
}

.comparison-header h2 {
    margin-bottom: 1rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(1.5rem, 4vw, 2.5rem);
}

.comparison-card {
    background: var(--bg-white);
    border-radius: 24px;
    padding: clamp(2rem, 4vw, 2.75rem);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
}

.comparison-card.premium {
    border: 2px solid rgba(123, 75, 222, 0.35);
    box-shadow: 0 28px 64px rgba(123, 75, 222, 0.18);
}

.comparison-badge {
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.comparison-card h3 {
    font-size: 1.6rem;
    margin: 0;
    color: var(--text-dark);
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
    color: var(--text-light);
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    line-height: 1.6;
}

.comparison-list i {
    color: var(--primary);
    margin-top: 0.15rem;
}

.comparison-cta {
    align-self: flex-start;
    margin-top: auto;
}

.bug-report-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(1rem, 4vw, 2.5rem);
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 999;
}

.bug-report-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.bug-report-modal {
    position: relative;
    width: min(560px, 100%);
    max-height: calc(100vh - 3rem);
    overflow-y: auto;
    background: var(--bg-white);
    border-radius: 20px;
    padding: clamp(2rem, 5vw, 2.6rem);
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.25);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.bug-report-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    border: none;
    background: rgba(123, 75, 222, 0.1);
    color: var(--primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.bug-report-close:hover,
.bug-report-close:focus {
    transform: scale(1.05);
    background: rgba(123, 75, 222, 0.18);
    outline: none;
}

.bug-report-close:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.bug-report-header {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.bug-report-header h2 {
    margin: 0;
    font-size: clamp(1.7rem, 4vw, 2rem);
    color: var(--text-dark);
}

.bug-report-subtitle {
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
}

.bug-report-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.bug-report-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.bug-report-field label {
    font-weight: 600;
    color: var(--text-dark);
}

.bug-report-field input,
.bug-report-field textarea {
    border: 1px solid rgba(123, 75, 222, 0.25);
    border-radius: 14px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.bug-report-field input:focus,
.bug-report-field textarea:focus {
    border-color: rgba(123, 75, 222, 0.6);
    box-shadow: 0 0 0 4px rgba(123, 75, 222, 0.18);
    outline: none;
}

.bug-report-field textarea {
    min-height: 160px;
    resize: vertical;
    line-height: 1.55;
}

.bug-report-hint {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-light);
}

.bug-report-feedback {
    font-size: 0.95rem;
    border-radius: 12px;
    padding: 0.9rem 1rem;
    display: none;
}

.bug-report-feedback--success,
.bug-report-feedback--error {
    display: block;
}

.bug-report-feedback--success {
    background: rgba(34, 197, 94, 0.15);
    color: #0f6848;
}

.bug-report-feedback--error {
    background: rgba(239, 68, 68, 0.15);
    color: #b91c1c;
}

.bug-report-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.bug-report-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.bug-report-privacy {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.bug-report-privacy a {
    color: var(--primary);
    text-decoration: underline;
}

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

body.no-scroll {
    overflow: hidden;
}

@media (max-width: 640px) {
    .bug-report-modal {
        padding: 1.75rem;
        max-height: calc(100vh - 1.5rem);
    }

    .bug-report-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .bug-report-submit {
        justify-content: center;
    }

    .bug-report-close {
        top: 0.5rem;
        right: 0.5rem;
    }
}
.assurance-strip {
    margin-top: clamp(2.5rem, 6vw, 3.5rem);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
}

.assurance-strip i {
    color: var(--primary);
    margin-right: 0.35rem;
}

.voices-section {
    padding: clamp(4rem, 7vw, 6rem) 0;
    background: linear-gradient(180deg, var(--bg-soft-inky) 0%, var(--bg-soft-berry) 100%);
}

.voices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: clamp(1.5rem, 4vw, 2.5rem);
    margin-top: clamp(2rem, 5vw, 3rem);
}

.voice-card {
    background: var(--bg-light);
    border-radius: 20px;
    padding: clamp(1.75rem, 4vw, 2.25rem);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.voice-rating {
    display: flex;
    gap: 0.35rem;
    color: #FFB800;
}

.voice-card p {
    margin: 0;
    color: var(--text-dark);
    line-height: 1.7;
}

.voice-author {
    font-weight: 600;
    color: var(--text-light);
}

.faq-section {
    padding: clamp(4rem, 7vw, 6rem) 0;
    background: linear-gradient(180deg, var(--bg-soft-lilac) 0%, #FFFFFF 100%);
}

.faq-section h2 {
    max-width: 640px;
}

.faq-list {
    margin-top: clamp(2rem, 5vw, 3rem);
    display: grid;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-sm);
}

.faq-item summary {
    cursor: pointer;
    font-weight: 700;
    color: var(--text-dark);
    outline: none;
}

.faq-item p {
    margin: 1rem 0 0;
    color: var(--text-light);
    line-height: 1.6;
}

.cta-section {
    padding: clamp(4rem, 7vw, 6rem) 0;
    background: linear-gradient(135deg, rgba(123, 75, 222, 0.85), rgba(90, 47, 184, 0.78));
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    max-width: 720px;
    margin: 0 auto clamp(1.75rem, 5vw, 2.5rem);
    line-height: 1.2;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.newsletter-section {
    background: linear-gradient(135deg, rgba(123, 75, 222, 0.08), rgba(102, 126, 234, 0.15));
    padding: 6rem 0;
}

.newsletter-wrapper {
    width: min(80vw, 960px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.75rem;
    background: var(--bg-white);
    border-radius: 24px;
    padding: 3.25rem 3.5rem;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.14);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.newsletter-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(123, 75, 222, 0.18), transparent 65%);
    pointer-events: none;
}

.newsletter-content h2 {
    font-size: clamp(2rem, 3vw, 2.75rem);
    color: var(--text-dark);
    margin: 1rem 0;
}

.newsletter-content p {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 32rem;
    margin: 0 auto;
}

.newsletter-form {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: min(480px, 100%);
}

.newsletter-input-group {
    display: flex;
    align-items: stretch;
    gap: 1rem;
    width: 100%;
}

.newsletter-input-group input[type="email"] {
    flex: 1 1 auto;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    border: 2px solid rgba(123, 75, 222, 0.15);
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
}

.newsletter-input-group .btn-primary {
    white-space: nowrap;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-size: 1rem;
}

.newsletter-privacy {
    margin-top: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

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

    .comparison-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .newsletter-wrapper {
        padding: 2.75rem 2.25rem;
        gap: 1.75rem;
    }

    .newsletter-input-group {
        flex-direction: column;
    }

    .cta-actions {
        flex-direction: column;
    }
}

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

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

@media (min-width: 1400px) {
    .feature-promo-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 640px) {
    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .feature-promo-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-wrapper {
        padding: 2.25rem 1.75rem;
        gap: 1.5rem;
    }

    .newsletter-input-group input[type="email"] {
        padding: 0.9rem 1rem;
    }
}

.highlights-intro {
    max-width: 780px;
    margin: 1.5rem auto 2.5rem;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.05rem;
    text-align: center;
}

.magazine-card.placeholder,
.magazine-card.placeholder a {
    background: rgba(123, 75, 222, 0.12);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.magazine-card.placeholder .magazine-card-body {
    padding: 2rem;
    gap: 0.5rem;
}

.magazine-card.placeholder strong {
    font-size: 1.05rem;
}

.magazine-card-more {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
    margin-top: auto;
}

a {
    text-decoration: none;
}

