/* ==========================================================================
   Valueate.de – Stylesheet
   Mobile-First, BEM methodology
   ========================================================================== */

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

:root {
    --orange: #E6821F;
    --orange-light: #FFF3E8;
    --orange-dark: #C96D14;
    --bg-white: #FFFFFF;
    --bg-gray: #F5F5F5;
    --text-dark: #1A1A1A;
    --text-body: #2D2D2D;
    --text-muted: #555555;
    --text-light: #777777;
    --border: #E0E0E0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.1);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: 0.3s ease;
    --max-width: 1200px;
    --header-height: 80px;
    --banner-height: 48px;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-body);
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--orange);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--orange-dark);
}

h1, h2, h3, h4 {
    color: var(--text-dark);
    line-height: 1.25;
}

h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
}

h2 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
}

h3, h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

/* --- Utilities --- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.25rem;
}

.section-title {
    font-size: 1.875rem;
    text-align: center;
    margin-bottom: 0.75rem;
}

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

/* --- Buttons --- */
.btn {
    display: inline-block;
    background: var(--orange);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    border: 2px solid var(--orange);
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    line-height: 1.4;
}

.btn:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 130, 31, 0.35);
}

.btn--lg {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
    padding: 1rem 2.5rem;
    animation: btn-glow 2s ease-in-out infinite;
}

.btn--sm {
    font-size: 0.875rem;
    padding: 0.625rem 1.5rem;
}

.btn--outline {
    background: transparent;
    color: var(--text-body);
    border-color: var(--border);
}

.btn--outline:hover {
    background: var(--bg-gray);
    color: var(--text-dark);
    border-color: var(--text-muted);
}

/* CTA Pulse + Phone Icon */
.btn--lg:hover {
    animation-play-state: paused;
}

.btn__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.btn__icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    animation: btn-pulse-ring 2s ease-in-out infinite;
}

.btn__icon svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    animation: btn-phone-ring 2s ease-in-out infinite;
}

@keyframes btn-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(230, 130, 31, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(230, 130, 31, 0); }
}

@keyframes btn-pulse-ring {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.3); opacity: 0; }
}

@keyframes btn-phone-ring {
    0%, 100% { transform: rotate(0deg); }
    10% { transform: rotate(-12deg); }
    20% { transform: rotate(12deg); }
    30% { transform: rotate(-8deg); }
    40% { transform: rotate(8deg); }
    50%, 100% { transform: rotate(0deg); }
}

/* --- Cookie Banner --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: #fff;
    padding: 1.25rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.is-visible {
    transform: translateY(0);
}

.cookie-banner__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.cookie-banner p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #ccc;
}

.cookie-banner a {
    color: var(--orange);
    text-decoration: underline;
}

.cookie-banner__actions {
    display: flex;
    gap: 0.75rem;
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 1000;
    transition: box-shadow var(--transition);
}

.header.is-scrolled {
    box-shadow: var(--shadow-sm);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.header__logo img {
    height: 60px;
    width: auto;
}

.header__nav {
    display: none;
}

.header__nav-list {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.header__nav-link {
    color: var(--text-body);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.25rem 0;
}

.header__nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width var(--transition);
}

.header__nav-link:hover,
.header__nav-link.active {
    color: var(--orange);
}

.header__nav-link:hover::after,
.header__nav-link.active::after {
    width: 100%;
}

.header__cta {
    display: none;
}

/* Burger */
.header__burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.header__burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: all var(--transition);
    border-radius: 2px;
}

.header__burger.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header__burger.is-active span:nth-child(2) {
    opacity: 0;
}

.header__burger.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: calc(var(--header-height) + var(--banner-height));
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-white);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.mobile-nav.is-open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav__list {
    list-style: none;
    text-align: center;
}

.mobile-nav__list li {
    margin-bottom: 1.5rem;
}

.mobile-nav__link {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'DM Sans', sans-serif;
}

.mobile-nav__link:hover,
.mobile-nav__link.active {
    color: var(--orange);
}

/* --- Wordplay Banner --- */
.wordplay-banner {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    height: var(--banner-height);
    background: var(--text-dark);
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.wordplay-banner__inner {
    display: inline-flex;
    align-items: baseline;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1;
    white-space: nowrap;
}

.wordplay-banner__prefix {
    display: inline-block;
    width: 4.5em;
    text-align: right;
    color: #fff;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.wordplay-banner__prefix.is-fading {
    opacity: 0;
    transform: translateY(-8px);
}

.wordplay-banner__suffix {
    color: var(--orange);
}

/* --- Hero --- */
.hero {
    padding: calc(var(--header-height) + var(--banner-height) + 3rem) 0 3rem;
    background: var(--bg-white);
}

.hero__title {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(
        110deg,
        #1A1A1A 35%,
        rgba(230, 130, 31, 0.85) 50%,
        #1A1A1A 65%
    );
    background-size: 250% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: hero-shimmer 6s linear infinite;
}

@keyframes hero-shimmer {
    0% {
        background-position: 200% 50%;
    }
    100% {
        background-position: -200% 50%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero__title {
        background: none;
        -webkit-background-clip: unset;
        background-clip: unset;
        -webkit-text-fill-color: unset;
        animation: none;
    }
}

.hero__grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.hero__box {
    background: var(--bg-gray);
    padding: 1.5rem;
    border-radius: var(--radius);
}

.hero__box-headline {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.hero__cta-wrap {
    text-align: center;
    margin-bottom: 2.5rem;
}

.hero__image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero__image img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 16 / 10;
}

/* --- Services --- */
.services {
    padding: 5rem 0;
    background: var(--bg-gray);
}

.services__grid {
    display: grid;
    gap: 2rem;
}

.services__card {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    color: var(--text-body);
    text-decoration: none;
    display: block;
}

.services__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    color: var(--text-body);
}

.services__card-img {
    max-width: 280px;
    margin: 0 auto 1.5rem;
    position: relative;
}

.services__card-img::after {
    content: 'Illustrationen von Storyset';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 0.65rem;
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.9);
    padding: 0.3rem;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.services__card-img:hover::after {
    opacity: 1;
}

.services__card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.services__card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* --- Use Cases --- */
.usecases {
    padding: 5rem 0;
    background: var(--bg-white);
}

.usecases__grid {
    display: grid;
    gap: 1.5rem;
}

.usecases__card {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.usecases__card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.usecases__icon {
    flex-shrink: 0;
}

.usecases__card-header h3 {
    font-size: 1.15rem;
}

.usecases__card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.usecases__result {
    display: inline-block;
    color: var(--orange);
    font-weight: 600;
    font-size: 0.9rem;
}

/* --- Steps --- */
.steps {
    padding: 5rem 0;
    background: var(--bg-gray);
}

.steps__grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.steps__card {
    background: var(--bg-white);
    border: 2px solid var(--orange);
    border-radius: var(--radius);
    padding: 2rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
    display: flex;
    flex-direction: column;
}

.steps__card:hover {
    transform: scale(1.15);
    box-shadow: var(--shadow-lg);
    z-index: 10;
}

.steps__number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.steps__card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.steps__card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.steps__card p:last-of-type {
    margin-bottom: 1rem;
}

.steps__tag {
    display: inline-block;
    color: var(--orange);
    font-weight: 600;
    font-size: 0.875rem;
    font-style: italic;
    margin-top: auto;
}

.steps__cta-wrap {
    text-align: center;
}

/* --- About --- */
.about {
    padding: 5rem 0;
    background: var(--bg-white);
}

.about__grid {
    display: grid;
    gap: 3rem;
}

.about__text p {
    margin-bottom: 1.25rem;
    font-size: 1.025rem;
}

.about__signature {
    margin-top: 1.5rem;
    font-size: 1.1rem;
}

.about__signature strong {
    font-size: 1.2rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
}

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

.about__photo {
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    aspect-ratio: 1;
    object-fit: cover;
}

.about__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.about__stat {
    background: var(--bg-white);
    padding: 1.25rem;
    border-radius: var(--radius-sm);
    text-align: center;
    border-left: 4px solid var(--orange);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.about__stat-number {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 0.25rem;
}

.about__stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --- Comparison --- */
.comparison {
    padding: 5rem 0;
    background: var(--bg-gray);
}

.comparison__intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.comparison__intro p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.comparison__claim {
    font-size: 1.15rem;
    color: var(--text-dark) !important;
}

/* Desktop Table */
.comparison__table-wrap {
    display: none;
}

.comparison__table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.comparison__table th,
.comparison__table td {
    padding: 1rem 1.25rem;
    text-align: left;
    font-size: 0.95rem;
}

.comparison__table thead th {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 1.25rem;
}

.comparison__th--muted {
    background: #E8E8E8;
    color: var(--text-muted);
}

.comparison__th--highlight {
    background: var(--orange);
    color: #fff;
}

.comparison__table tbody tr {
    border-bottom: 1px solid var(--border);
}

.comparison__table tbody tr:last-child td {
    border-bottom: none;
}

.comparison__label {
    font-weight: 600;
    color: var(--text-dark);
    background: var(--bg-gray);
    width: 140px;
}

.comparison__td--muted {
    color: var(--text-light);
    background: #FAFAFA;
}

.comparison__td--highlight {
    color: var(--text-dark);
    background: var(--orange-light);
    font-weight: 500;
}

/* Mobile Cards */
.comparison__cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comparison__card-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.comparison__card-item::before {
    content: attr(data-category);
    display: block;
    background: var(--bg-gray);
    padding: 0.625rem 1rem;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.comparison__card-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    font-size: 0.925rem;
}

.comparison__card-row--muted {
    background: #FAFAFA;
    color: var(--text-light);
}

.comparison__card-row--highlight {
    background: var(--orange-light);
    border-left: 4px solid var(--orange);
    color: var(--text-dark);
    font-weight: 500;
}

.comparison__x {
    color: #cc3333;
    font-weight: 700;
    flex-shrink: 0;
}

.comparison__check {
    color: var(--orange);
    font-weight: 700;
    flex-shrink: 0;
}

/* --- KI-Fakten --- */
.ki-fakten {
    padding: 5rem 0;
    background: var(--bg-white);
}

.ki-fakten__stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

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

.ki-fakten__stat {
    background: var(--bg-gray);
    border-top: 4px solid var(--orange);
    border-radius: var(--radius);
    text-align: center;
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.ki-fakten__stat:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--orange);
}

.ki-fakten__stat-number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: var(--orange);
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

@media (min-width: 1024px) {
    .ki-fakten__stat-number {
        font-size: 2.5rem;
    }
}

.ki-fakten__stat-label {
    font-size: 0.95rem;
    color: var(--text-body);
    margin-bottom: 0.5rem;
}

.ki-fakten__stat-source {
    font-size: 0.75rem;
    font-style: italic;
    color: var(--text-light);
}

.ki-fakten__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

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

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

.ki-fakten__card {
    background: var(--bg-gray);
    border-radius: var(--radius);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.ki-fakten__card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--orange);
}

.ki-fakten__card-category {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--orange);
    margin-bottom: 0.75rem;
    display: block;
}

.ki-fakten__card h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.ki-fakten__list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    flex: 1;
}

.ki-fakten__list li {
    position: relative;
    padding-left: 1.1rem;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.5;
}

.ki-fakten__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange);
}

.ki-fakten__source {
    font-size: 0.75rem;
    font-style: italic;
    color: var(--text-light);
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
}

.ki-fakten__bridge {
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
}

.ki-fakten__bridge p {
    font-size: 1rem;
    color: var(--text-body);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.ki-fakten__bridge .btn--lg {
    width: 100%;
    justify-content: center;
}

@media (min-width: 600px) {
    .ki-fakten__bridge .btn--lg {
        width: auto;
    }

    .ki-fakten__bridge p {
        font-size: 1.1rem;
    }
}

.ki-fakten__bridge em {
    font-style: normal;
    font-weight: 600;
    color: var(--text-dark);
}

/* --- FAQ Accordion --- */
.faq {
    padding: 4rem 0;
    background: var(--bg-gray);
}

.faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.faq__category {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 2rem 0 0.75rem;
}

.faq__category:first-child {
    margin-top: 0;
}

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

.faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    padding: 1.125rem 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    line-height: 1.5;
    transition: color var(--transition);
}

.faq__question:hover {
    color: var(--orange);
}

.faq__icon {
    flex-shrink: 0;
    transition: transform var(--transition);
    color: var(--text-muted);
}

.faq__item.is-active .faq__icon {
    transform: rotate(180deg);
    color: var(--orange);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq__answer p {
    padding: 0 0 1.25rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq__answer a {
    color: var(--orange);
    font-weight: 500;
}

.faq__answer a:hover {
    color: var(--orange-dark);
}

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

    .faq__question {
        font-size: 1.05rem;
        padding: 1.25rem 0;
    }
}

@media (min-width: 1024px) {
    .faq {
        padding: 6rem 0;
    }
}

/* --- CTA Final --- */
.cta-final {
    padding: 5rem 0;
    background: var(--bg-gray);
    text-align: center;
}

.cta-final__text {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 2rem;
}

.cta-final .btn {
    margin-bottom: 2rem;
}

.cta-final__contact p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.cta-final__contact a {
    color: var(--text-body);
    font-weight: 500;
}

.cta-final__contact a:hover {
    color: var(--orange);
}

/* --- Footer --- */
.footer {
    background: var(--text-dark);
    color: #ccc;
    padding: 2.5rem 0 0;
}

.footer__inner {
    display: grid;
    gap: 3rem;
    padding-bottom: 3rem;
    align-items: start;
}

.footer__logo {
    height: auto;
    width: 220px;
    border-radius: var(--radius-sm);
    filter: brightness(0) invert(1);
}

.footer h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.footer a {
    color: #ccc;
    font-size: 0.9rem;
}

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

.footer__contact p {
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
}

.footer__social {
    display: flex;
    gap: 1rem;
    margin-top: 0.75rem;
    padding-bottom: 1.5rem;
}

.footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: background var(--transition);
}

.footer__social a[aria-label="WhatsApp"]:hover {
    background: #25D366;
}

.footer__social a[aria-label="LinkedIn"]:hover {
    background: #0A66C2;
}

.footer__social svg {
    width: 18px;
    height: 18px;
}

.footer__links ul {
    list-style: none;
}

.footer__links li {
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
}

.footer__copyright {
    margin-top: 1rem;
    font-size: 0.75rem;
    color: #666;
}

/* ==========================================================================
   Responsive – Tablet (768px+)
   ========================================================================== */
@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .hero {
        padding: calc(var(--header-height) + var(--banner-height) + 4rem) 0 4rem;
    }

    .hero__title {
        font-size: 3rem;
    }

    .hero__grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero__box {
        padding: 2rem;
    }

    .hero__box-headline {
        font-size: 1.35rem;
    }

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

    .usecases__grid {
        grid-template-columns: 1fr 1fr;
    }

    .steps__grid {
        grid-template-columns: 1fr 1fr;
    }

    .about__grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }

    .footer__inner {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

/* ==========================================================================
   Responsive – Desktop (1024px+)
   ========================================================================== */
@media (min-width: 1024px) {
    .header__nav {
        display: block;
    }

    .header__cta {
        display: inline-block;
    }

    .header__burger {
        display: none;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .hero {
        padding: calc(var(--header-height) + var(--banner-height) + 5rem) 0 4rem;
    }

    .hero__title {
        font-size: 3.5rem;
        margin-bottom: 2.5rem;
    }

    .hero__box {
        padding: 2.5rem;
    }

    .hero__box-headline {
        font-size: 1.4rem;
    }

    .hero__image {
        max-width: 900px;
        margin: 0 auto;
    }

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

    .steps__card {
        padding: 1.75rem;
    }

    /* Desktop: Show table, hide cards */
    .comparison__table-wrap {
        display: block;
    }

    .comparison__cards {
        display: none;
    }

    .about__text p {
        font-size: 1.05rem;
    }

    .about__stat-number {
        font-size: 1.5rem;
    }
}

/* ==========================================================================
   Responsive – Large Desktop (1280px+)
   ========================================================================== */
@media (min-width: 1280px) {
    .hero__title {
        font-size: 3.75rem;
    }

    .container {
        padding: 0 2.5rem;
    }
}

/* ==========================================================================
   Animations
   ========================================================================== */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.fade-in-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in-children.is-visible > * {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-children.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.fade-in-children.is-visible > *:nth-child(2) { transition-delay: 0.15s; }
.fade-in-children.is-visible > *:nth-child(3) { transition-delay: 0.25s; }
.fade-in-children.is-visible > *:nth-child(4) { transition-delay: 0.35s; }

/* ==========================================================================
   Legal Pages (Impressum, Datenschutz)
   ========================================================================== */
.legal-page {
    padding: calc(var(--header-height) + var(--banner-height) + 4rem) 0 5rem;
    max-width: 800px;
    margin: 0 auto;
}

.legal-page h1 {
    margin-bottom: 2.5rem;
    text-align: left;
}

.legal-page h2 {
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.5rem;
}

.legal-page h3 {
    font-size: 1.15rem;
    margin: 1.5rem 0 0.75rem;
    text-align: left;
}

.legal-page p {
    margin-bottom: 1rem;
}

.legal-page ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-page li {
    margin-bottom: 0.5rem;
}

/* ==========================================================================
   Leistungen Detail Page
   ========================================================================== */
.leistungen-hero {
    padding: calc(var(--header-height) + var(--banner-height) + 3rem) 0 3rem;
    background: var(--bg-gray);
    text-align: center;
}

.leistungen-hero__title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.leistungen-hero__subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.leistungen__block {
    padding: 4rem 0;
    background: var(--bg-white);
}

.leistungen__block:nth-child(odd) {
    background: var(--bg-gray);
}

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

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

.leistungen__image img {
    max-width: 320px;
    width: 100%;
}

.leistungen__title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.leistungen__content p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.leistungen__list {
    list-style: none;
    margin: 1.5rem 0 2rem;
    padding: 0;
}

.leistungen__list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-body);
    font-size: 0.95rem;
}

.leistungen__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--orange);
}

.leistungen__content .btn {
    animation: btn-glow 2s ease-in-out infinite;
}

.leistungen__content .btn:hover {
    animation-play-state: paused;
}

@media (min-width: 768px) {
    .leistungen-hero {
        padding: calc(var(--header-height) + var(--banner-height) + 4rem) 0 3.5rem;
    }

    .leistungen-hero__title {
        font-size: 2.75rem;
    }

    .leistungen__block {
        padding: 5rem 0;
    }

    .leistungen__inner {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .leistungen__image img {
        max-width: 380px;
    }

    .leistungen__title {
        font-size: 2rem;
    }

    /* Reverse layout: image right, text left */
    .leistungen__block--reverse .leistungen__inner {
        direction: rtl;
    }

    .leistungen__block--reverse .leistungen__inner > * {
        direction: ltr;
    }
}

@media (min-width: 1024px) {
    .leistungen-hero {
        padding: calc(var(--header-height) + var(--banner-height) + 5rem) 0 4rem;
    }

    .leistungen-hero__title {
        font-size: 3rem;
    }

    .leistungen__inner {
        gap: 4rem;
    }

    .leistungen__image img {
        max-width: 420px;
    }

    .leistungen__title {
        font-size: 2.25rem;
    }
}

/* ==========================================================================
   Logo Marquee (Leistungen Page – Trust Band)
   ========================================================================== */
.logo-marquee {
    padding: 3rem 0;
    background: var(--bg-white);
    overflow: hidden;
}

.logo-marquee__title {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 2rem;
}

.logo-marquee__track {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.logo-marquee__scroll {
    display: flex;
    align-items: center;
    gap: 3rem;
    width: max-content;
    animation: marquee 40s linear infinite;
    will-change: transform;
}

.logo-marquee__link {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.logo-marquee__logo {
    height: 36px;
    width: auto;
    max-width: none;
    filter: grayscale(100%) opacity(0.4);
    transition: filter 0.3s ease;
}

.logo-marquee__link:hover .logo-marquee__logo {
    filter: grayscale(0%) opacity(1);
}

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

/* Pause on hover for accessibility */
.logo-marquee__track:hover .logo-marquee__scroll {
    animation-play-state: paused;
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .logo-marquee__scroll {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
        width: auto;
        gap: 2rem;
        padding: 0 1.25rem;
    }

    .logo-marquee__track {
        -webkit-mask-image: none;
        mask-image: none;
    }

    .btn--lg,
    .contact__whatsapp,
    .leistungen__content .btn {
        animation: none;
    }

    .btn__icon::before,
    .btn__icon svg {
        animation: none;
    }

    .wordplay-banner__prefix {
        transition: none;
    }
}

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

    .logo-marquee__title {
        font-size: 1.75rem;
        margin-bottom: 2.5rem;
    }

    .logo-marquee__logo {
        height: 44px;
    }

    .logo-marquee__scroll {
        gap: 4rem;
    }
}

@media (min-width: 1024px) {
    .logo-marquee__logo {
        height: 48px;
    }

    .logo-marquee__scroll {
        gap: 5rem;
    }
}

/* ==========================================================================
   Calculator Page
   ========================================================================== */
.calc-page {
    padding: calc(var(--header-height) + var(--banner-height) + 3rem) 0 2rem;
    background: var(--bg-gray);
}

.calc-page__title {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 0.75rem;
}

.calc-page__subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

/* Calculator Intro / Explanation */
.calc-page__intro {
    max-width: 960px;
    margin: 0 auto 2.5rem;
}

.calc-page__intro-title {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.calc-page__intro-text {
    text-align: center;
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 750px;
    margin: 0 auto 2rem;
}

.calc-page__intro-cards {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.calc-page__intro-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.calc-page__intro-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    flex: 1;
}

.calc-page__intro-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.calc-page__intro-card-header svg {
    flex-shrink: 0;
    color: var(--orange);
}

.calc-page__intro-card-header h3 {
    font-size: 1.15rem;
}

.calc-page__intro-price {
    display: inline-block;
    color: var(--orange);
    font-weight: 600;
    font-size: 0.9rem;
}

.calc-page__intro-instruction {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 750px;
    margin: 0 auto;
}

.calc {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 1.75rem;
    box-shadow: var(--shadow-md);
    max-width: 960px;
    margin: 0 auto;
}

.calc__heading {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.calc__options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.calc__option {
    display: block;
    cursor: pointer;
}

.calc__option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.calc__option-pill {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.25rem;
    border: 2px solid var(--border);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-body);
    transition: all var(--transition);
    user-select: none;
}

.calc__option-pill::before {
    content: '';
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid var(--border);
    transition: all var(--transition);
    flex-shrink: 0;
}

.calc__option input:checked + .calc__option-pill {
    border-color: var(--orange);
    color: var(--text-dark);
    background: var(--orange-light);
}

.calc__option input:checked + .calc__option-pill::before {
    border-color: var(--orange);
    background: var(--orange);
    box-shadow: inset 0 0 0 3px #fff;
}

.calc__option-pill:hover {
    border-color: var(--orange);
}

/* Sliders */
.calc__sliders {
    display: grid;
    gap: 1.75rem;
    margin-bottom: 2rem;
}

.calc__slider-group {
    min-width: 0;
}

.calc__slider-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.75rem;
}

.calc__slider-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-body);
}

.calc__slider-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--orange);
    white-space: nowrap;
}

.calc__slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: var(--border);
    outline: none;
    cursor: pointer;
}

.calc__slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 2.5px solid var(--orange);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.calc__slider::-webkit-slider-thumb:hover {
    box-shadow: 0 2px 14px rgba(230, 130, 31, 0.35);
    transform: scale(1.1);
}

.calc__slider::-webkit-slider-thumb:active {
    transform: scale(1.15);
}

.calc__slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 2.5px solid var(--orange);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.calc__slider::-moz-range-track {
    height: 6px;
    border-radius: 3px;
    background: var(--border);
}

/* Divider */
.calc__divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 0 0 2rem;
}

/* Results */
.calc__results {
    display: grid;
    gap: 1rem;
}

.calc__result {
    background: var(--bg-gray);
    border-radius: var(--radius);
    padding: 1.5rem 1.25rem;
    text-align: center;
    transition: transform 0.2s ease;
}

.calc__result-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.calc__result-label svg {
    flex-shrink: 0;
}

.calc__result-value {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

/* Highlight card */
.calc__result--highlight {
    background: linear-gradient(135deg, #E6821F 0%, #F5A623 100%);
    box-shadow: 0 4px 20px rgba(230, 130, 31, 0.3);
}

.calc__result--highlight .calc__result-label {
    color: rgba(255, 255, 255, 0.88);
}

.calc__result--highlight .calc__result-label svg {
    stroke: rgba(255, 255, 255, 0.88);
}

.calc__result--highlight .calc__result-value {
    color: #fff;
}

.calc__result-percent {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    margin-top: 0.35rem;
}

/* Disclaimer */
.calc-page__disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 1.5rem;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA white variant */
.cta-final--white {
    background: var(--bg-white);
}

/* --- Calculator Responsive – Tablet (768px+) --- */
@media (min-width: 768px) {
    .calc-page {
        padding: calc(var(--header-height) + var(--banner-height) + 4rem) 0 2.5rem;
    }

    .calc-page__title {
        font-size: 2.75rem;
    }

    .calc {
        padding: 2.5rem;
    }

    .calc__sliders {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2rem;
    }

    .calc__results {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .calc__result-value {
        font-size: 2rem;
    }

    .calc-page__intro-cards {
        grid-template-columns: 1fr 1fr;
    }

    .calc-page__intro-title {
        font-size: 1.75rem;
    }
}

/* --- Calculator Responsive – Desktop (1024px+) --- */
@media (min-width: 1024px) {
    .calc-page {
        padding: calc(var(--header-height) + var(--banner-height) + 5rem) 0 3rem;
    }

    .calc-page__title {
        font-size: 3rem;
    }

    .calc {
        padding: 3rem;
    }

    .calc__result-value {
        font-size: 2.25rem;
    }
}

/* ==========================================================================
   Glossar Page
   ========================================================================== */
.glossar-hero {
    padding: calc(var(--header-height) + var(--banner-height) + 3rem) 0 2rem;
    background: var(--bg-gray);
    text-align: center;
}

.glossar-hero__title {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
}

.glossar-hero__subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Glossar Main Section */
.glossar {
    padding: 2.5rem 0 4rem;
    background: var(--bg-white);
}

/* Search */
.glossar__search-wrap {
    max-width: 500px;
    margin: 0 auto 0.75rem;
}

.glossar__search {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    padding: 0.75rem 1.25rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg-white);
    color: var(--text-body);
    transition: border-color var(--transition);
    width: 100%;
}

.glossar__search:focus {
    outline: none;
    border-color: var(--orange);
}

/* A-Z Navigation */
.glossar__alpha-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.75rem 0;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: var(--header-height);
    background: var(--bg-white);
    z-index: 10;
}

.glossar__alpha-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--text-body);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

.glossar__alpha-btn:hover {
    background: var(--orange-light);
    color: var(--orange);
}

.glossar__alpha-btn.is-active {
    background: var(--orange);
    color: #fff;
}

.glossar__alpha-btn.is-disabled {
    color: var(--border);
    pointer-events: none;
}

/* Groups */
.glossar__group {
    margin-bottom: 2.5rem;
}

.glossar__group.is-hidden {
    display: none;
}

.glossar__letter {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--orange);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--orange);
    margin-bottom: 1.25rem;
}

/* Grid */
.glossar__grid {
    display: grid;
    gap: 1rem;
}

/* Card */
.glossar__card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition);
}

.glossar__card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--orange);
    transform: translateY(-2px);
}

.glossar__card.is-hidden {
    display: none;
}

.glossar__term {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.glossar__definition {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Empty State */
.glossar__empty {
    display: none;
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.glossar__empty.is-visible {
    display: block;
}

/* Glossar Teaser (Startseite) */
.glossar-teaser {
    padding: 5rem 0;
    background: var(--bg-white);
    text-align: center;
}

.glossar-teaser__text {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.glossar-teaser__grid {
    display: grid;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto 2.5rem;
    text-align: left;
}

.glossar-teaser__card {
    background: var(--bg-white);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
    box-shadow: var(--shadow-sm);
}

.glossar-teaser__card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}

.glossar-teaser__card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- Glossar Responsive – Tablet (768px+) --- */
@media (min-width: 768px) {
    .glossar-hero {
        padding: calc(var(--header-height) + var(--banner-height) + 4rem) 0 2.5rem;
    }

    .glossar-hero__title {
        font-size: 2.75rem;
    }

    .glossar__grid {
        grid-template-columns: 1fr 1fr;
    }

    .glossar-teaser__grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* --- Glossar Responsive – Desktop (1024px+) --- */
@media (min-width: 1024px) {
    .glossar-hero {
        padding: calc(var(--header-height) + var(--banner-height) + 5rem) 0 3rem;
    }

    .glossar-hero__title {
        font-size: 3rem;
    }

    .glossar__grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

/* ==========================================================================
   Contact Page
   ========================================================================== */
.contact-page {
    padding: calc(var(--header-height) + var(--banner-height) + 2rem) 0 1.5rem;
    background: var(--bg-gray);
    text-align: center;
}

.contact-page__title {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
}

.contact-page__subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto;
}

/* Contact Section */
.contact {
    padding: 2.5rem 0;
    background: var(--bg-white);
}

.contact__grid {
    display: grid;
    gap: 3rem;
}

/* Success / Error Messages */
.contact__success,
.contact__error {
    display: none;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-sm);
    margin-bottom: 2rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact__success.is-visible,
.contact__error.is-visible {
    display: flex;
}

.contact__success {
    background: #E8F5E9;
    color: #2E7D32;
    border: 1px solid #A5D6A7;
}

.contact__success svg {
    flex-shrink: 0;
    color: #2E7D32;
}

.contact__error {
    background: #FFEBEE;
    color: #C62828;
    border: 1px solid #EF9A9A;
}

.contact__error svg {
    flex-shrink: 0;
    color: #C62828;
}

.contact__error a {
    color: #C62828;
    text-decoration: underline;
}

/* Form */
.contact__heading {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.contact__field {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact__field--hp {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

.contact__label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-body);
}

.contact__label span {
    color: var(--orange);
}

.contact__input {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    padding: 0.625rem 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg-white);
    color: var(--text-body);
    transition: border-color var(--transition);
    width: 100%;
}

.contact__input:focus {
    outline: none;
    border-color: var(--orange);
}

.contact__input--textarea {
    resize: vertical;
    min-height: 100px;
}

.contact__privacy {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.5;
}

.contact__privacy a {
    color: var(--text-muted);
    text-decoration: underline;
}

.contact__submit {
    align-self: flex-start;
}

/* Info Column */
.contact__info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact__info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}

.contact__info-item svg {
    flex-shrink: 0;
    color: var(--orange);
    margin-top: 0.2rem;
}

.contact__info-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.15rem;
}

.contact__info-value {
    display: block;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-dark);
}

a.contact__info-value:hover {
    color: var(--orange);
}

/* WhatsApp Button */
.contact__whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #25D366;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    transition: all var(--transition);
    text-align: center;
    justify-content: center;
    margin-top: 0.5rem;
    animation: btn-glow-green 2s ease-in-out infinite;
}

.contact__whatsapp:hover {
    background: #1DA851;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    animation-play-state: paused;
}

@keyframes btn-glow-green {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
}

.contact__whatsapp svg {
    flex-shrink: 0;
}

/* Booking Section */
.contact__booking {
    padding: 5rem 0;
    background: var(--bg-gray);
    text-align: center;
}

.contact__booking-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* --- Contact Responsive – Tablet (768px+) --- */
@media (min-width: 768px) {
    .contact-page {
        padding: calc(var(--header-height) + var(--banner-height) + 2.5rem) 0 1.5rem;
    }

    .contact-page__title {
        font-size: 2.75rem;
    }

    .contact__grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

/* --- Contact Responsive – Desktop (1024px+) --- */
@media (min-width: 1024px) {
    .contact-page {
        padding: calc(var(--header-height) + var(--banner-height) + 3rem) 0 1.5rem;
    }

    .contact-page__title {
        font-size: 3rem;
    }

    .contact__grid {
        gap: 4rem;
    }

    .contact {
        padding: 2.5rem 0;
    }
}
