/* ============================================
   CLEARLYBOOKS - WEBSITE STYLES
   Professional, clean, and maintainable CSS
   ============================================ */

/* ============================================
   ACCESSIBILITY
   ============================================ */

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 9999;
    padding: 0.75rem 1.5rem;
    background-color: var(--brand-primary);
    color: white;
    font-weight: 700;
    font-size: 0.9375rem;
    border-radius: 0 0 0.5rem 0.5rem;
    text-decoration: none;
    transition: top 0.2s ease;
}
.skip-link:focus {
    top: 0;
}

/* ============================================
   NAV STRUCTURE (wp_nav_menu)
   ============================================ */

.nav__list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin: 0;
    padding: 0;
}

.nav__item {
    position: relative;
}

.nav__link,
.nav__dropdown-link {
    display: block;
    padding: 0.5rem 0.75rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--slate-700);
    text-decoration: none;
    border-radius: 0.5rem;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.nav__link:hover,
.nav__dropdown-link:hover {
    color: var(--brand-primary);
    background-color: var(--brand-soft);
}

.nav__item--current > .nav__link,
.nav__item--current > .nav__dropdown-wrapper > .nav__link {
    color: var(--brand-primary);
    font-weight: 400;
}

/* ---- Dropdown wrapper (Link + Chevron-Button nebeneinander) ---- */
.nav__dropdown-wrapper {
    display: flex;
    align-items: center;
}

.nav__dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.375rem;
    color: var(--slate-500);
    border-radius: 0.375rem;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.nav__dropdown-toggle:hover {
    color: var(--brand-primary);
    background-color: var(--brand-soft);
}

.nav__dropdown-toggle svg {
    transition: transform 0.2s ease;
}

.nav__item--has-dropdown.is-open .nav__dropdown-toggle svg {
    transform: rotate(180deg);
}

/* ---- Dropdown Panel ---- */
.nav__dropdown {
    display: none;
    position: absolute;
    top: 33px;
    left: 0;
    min-width: 220px;
    background-color: white;
    border: 1px solid var(--slate-100);
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 0.5rem;
    list-style: none;
    z-index: 200;
}

.nav__item--has-dropdown.is-open .nav__dropdown {
    display: block;
}

/* Desktop: Hover to show dropdown */
@media (min-width: 769px) {
    .nav__item--has-dropdown:hover .nav__dropdown,
    .nav__dropdown:hover {
        display: block;
    }

    .nav__dropdown-toggle {
        display: none;
    }
}

.nav__dropdown .nav__item {
    width: 100%;
}

.nav__dropdown-link {
    padding: 0.625rem 1rem;
    font-size: 0.9rem;
    border-radius: 0.625rem;
    white-space: nowrap;
}


/* ============================================
   MOBILE NAVIGATION TOGGLE
   ============================================ */

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    position: relative;
    z-index: 201;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--slate-900);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hamburger → X Animation */
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

    /* Overlay-Navigation */
    .nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background-color: white;
        z-index: 199;
        overflow-y: auto;
        padding: 6rem 2rem 3rem;
        box-shadow: 0 3px 6px #cccccc;
    }

    .nav.is-open {
        display: block;
    }

    /* Flache Liste im Overlay */
    .nav__list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .nav__item {
        width: 100%;
        border-bottom: 1px solid var(--slate-100);
    }

    .nav__link,
    .nav__dropdown-link {
        font-size: 1.125rem;
        font-family: 'Jost', sans-serif;
        font-weight: 600;
        padding: 1rem 0;
        border-radius: 0;
    }

    .nav__link:hover,
    .nav__dropdown-link:hover {
        background-color: transparent;
    }

    /* Dropdown auf Mobile: statisch eingebettet */
    .nav__dropdown {
        display: none;
        position: static;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0 0 0.5rem 1rem;
        background: transparent;
    }

    /* Dropdown auf Mobile: sichtbar machen, wenn is-open */
    .nav__item--has-dropdown.is-open .nav__dropdown {
        display: block;
    }

    .nav__dropdown .nav__item {
        border-bottom: none;
    }

    .nav__dropdown-link {
        font-size: 1rem;
        font-weight: 500;
        color: var(--slate-500);
        padding: 0.625rem 0;
    }

    .nav__dropdown-toggle {
        padding: 1rem 0.5rem;
    }
}

/* ============================================
   0. LOCAL FONTS (DSGVO-konform, kein Google-Kontakt)
   ============================================ */

/* Inter */
@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-v20-latin-300.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-v20-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-v20-latin-500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-v20-latin-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-v20-latin-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Jost */
@font-face {
    font-family: 'Jost';
    src: url('../fonts/jost-v20-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Jost';
    src: url('../fonts/jost-v20-latin-500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Jost';
    src: url('../fonts/jost-v20-latin-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Jost';
    src: url('../fonts/jost-v20-latin-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ============================================
   1. CSS RESET & BASE STYLES
   ============================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
    color: #0f172a;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* overflow-x guard via max-width on elements, not body-clip */
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Jost', sans-serif;
    letter-spacing: -0.02em;
    font-weight: 700;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* ============================================
   2. COLOR VARIABLES & BRAND COLORS
   ============================================ */

:root {
    /* Brand Colors */
    --brand-primary: #2e509f;
    --brand-dark: #243e7c;
    --brand-light: #4b6dbd;
    --brand-soft: #f0f3f9;

    /* Neutral Colors */
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;

    /* Utility Colors */
    --yellow-400: #facc15;
    --yellow-500: #eab308;
    --green-500: #22c55e;

    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 6rem 0;
}

.text-brand {
    color: var(--brand-primary);
}

/* ============================================
   3. LAYOUT & CONTAINER
   ============================================ */

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============================================
   4. HEADER & NAVIGATION
   ============================================ */

#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    transition: all 0.3s ease;
    padding: 1.5rem 0;
    background-color: transparent;
}

#header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(46, 80, 159, 0.1);
    padding: 0.75rem 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#header .logo img {
    height: 4rem;
    transition: height 0.3s ease;
}

#header.scrolled .logo img {
    height: 2.5rem;
}

#header .nav {
    display: none;
    gap: 2.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

#header .nav.is-open {
    display: block;
}

#header .nav a {
    transition: color 0.3s ease;
}

#header .nav a:hover {
    color: var(--brand-primary);
}

#header .btn-phone {
    background-color: var(--brand-primary);
    color: white;
    padding: 0.625rem 1.75rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

#header .btn-phone:hover {
    background-color: var(--brand-dark);
    box-shadow: 0 20px 25px -5px rgba(46, 80, 159, 0.2);
}

#header .btn-phone:active {
    transform: scale(0.95);
}

/* Desktop Navigation */
@media (min-width: 1024px) {
    #header .nav {
        display: flex;
    }
}

/* ============================================
   5. HERO SECTION
   ============================================ */

.hero {
    position: relative;
    padding-top: 8rem;
    padding-bottom: 5rem;
    overflow: hidden;
}

.hero-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: var(--brand-soft);
    border-bottom-left-radius: 200px;
    opacity: 0.5;
    z-index: -1;
    display: none;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.hero-text {
    width: 100%;
}

.hero .badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brand-primary);
    background-color: rgba(46, 80, 159, 0.1);
    border-radius: 9999px;
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--slate-900);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--slate-600);
    margin-bottom: 2.5rem;
    max-width: 32rem;
    line-height: 1.6;
    font-weight: 300;
}

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

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.avatar-stack {
    display: flex;
    margin-left: -0.75rem;
}

.avatar-stack img {
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    border: 4px solid white;
    object-fit: cover;
    margin-left: -0.75rem;
}

.rating .stars {
    color: var(--yellow-400);
    font-size: 0.875rem;
}

.rating p {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--slate-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
}

.hero-image {
    position: relative;
    width: 100%;
}

.image-wrapper {
    position: relative;
    z-index: 10;
    border-radius: 2.5rem;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(46, 80, 159, 0.15);
    transform: rotate(0deg);
}

.image-wrapper img {
    width: 100%;
    height: auto;
}

.hero-decoration-pulse {
    position: absolute;
    bottom: -2rem;
    left: -2rem;
    width: 10rem;
    height: 10rem;
    background-color: rgba(46, 80, 159, 0.1);
    border-radius: 1.5rem;
    z-index: -1;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.hero-trust-badge {
    position: absolute;
    bottom: -20px;
    left: -1.5rem;
    z-index: 20;
    background-color: white;
    border-radius: 1.25rem;
    padding: 0.75rem;
    box-shadow: 0 10px 30px rgba(46, 80, 159, 0.15);
    border: 1px solid rgba(46, 80, 159, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-trust-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(46, 80, 159, 0.2);
}

.hero-trust-badge img {
    width: 7rem;
    height: auto;
    display: block;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Hero Responsive */
@media (min-width: 1024px) {
    .hero {
        padding-top: 12rem;
        padding-bottom: 8rem;
    }

    .hero-decoration {
        display: block;
    }

    .hero-content {
        flex-direction: row;
        align-items: center;
    }

    .hero-text {
        width: 50%;
    }

    .hero h1 {
        font-size: 4.5rem;
    }

    .hero-image {
        width: 50%;
    }

    .image-wrapper {
        transform: rotate(2deg);
    }

    .hero-buttons {
        flex-direction: row;
    }
}

/* ============================================
   6. BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-weight: 700;
    text-align: center;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--slate-900);
    color: white;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: var(--brand-primary);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: white;
    color: var(--brand-primary);
    border: 1px solid rgba(46, 80, 159, 0.2);
}

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

.btn-brand {
    background-color: var(--brand-primary);
    color: white;
    box-shadow: 0 20px 25px -5px rgba(46, 80, 159, 0.1);
}

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

.btn-submit {
    width: 100%;
    background-color: var(--brand-primary);
    color: white;
    padding: 1.25rem;
    border-radius: 1rem;
    font-family: 'Jost', sans-serif;
    font-size: 1.125rem;
    box-shadow: 0 20px 25px -5px rgba(46, 80, 159, 0.2);
}

.btn-submit:hover {
    background-color: var(--brand-light);
}

.btn-submit:active {
    transform: scale(0.95);
}

/* ============================================
   7. SECTION HEADERS
   ============================================ */

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.section-divider {
    width: 5rem;
    height: 0.25rem;
    background-color: var(--brand-primary);
    margin: 0 auto 1.5rem;
    border-radius: 9999px;
}

.section-header p {
    color: var(--slate-500);
    max-width: 36rem;
    margin: 0 auto;
    font-weight: 300;
    font-size: 1.125rem;
}

/* ============================================
   8. SERVICES SECTION
   ============================================ */

.services {
    padding: 6rem 0;
    background-color: white;
}

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

.service-card {
    padding: 2.5rem;
    border-radius: 1.5rem;
    background-color: var(--slate-50);
    border: 1px solid transparent;
    transition: all 0.5s ease;
}

.service-card:hover {
    background-color: white;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border-color: rgba(46, 80, 159, 0.1);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    background-color: white;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-primary);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.service-icon svg {
    width: 1.75rem;
    height: 1.75rem;
}

.service-card:hover .service-icon {
    background-color: var(--brand-primary);
    color: white;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--slate-800);
}

.service-card p {
    color: var(--slate-500);
    line-height: 1.6;
    font-weight: 300;
}

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

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

    /* 6-Card Grid: 3 Spalten auf Desktop */
    .services-grid--6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   9. PARTNER SECTION
   ============================================ */

.partners {
    padding: 6rem 0;
    background-color: var(--slate-50);
}

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

.partner-card {
    background-color: white;
    border-radius: 2rem;
    padding: 2.5rem;
    border: 1px solid var(--slate-100);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.partner-card:hover {
    box-shadow: 0 20px 40px rgba(46, 80, 159, 0.1);
    transform: translateY(-2px);
}

.partner-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--brand-soft);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-primary);
}

.partner-icon svg {
    width: 1.75rem;
    height: 1.75rem;
}

.partner-content {
    flex: 1;
}

.partner-tag {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--brand-primary);
    background-color: rgba(46, 80, 159, 0.08);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    margin-bottom: 0.75rem;
}

.partner-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 0.75rem;
}

.partner-content > p {
    color: var(--slate-500);
    font-size: 0.9375rem;
    line-height: 1.65;
    font-weight: 300;
    margin-bottom: 1rem;
}

.partner-location {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--slate-400);
}

@media (max-width: 480px) {
    .partner-card {
        padding: 1.5rem;
    }
}

.partner-location svg {
    width: 0.875rem;
    height: 0.875rem;
}

.partner-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    margin-top: 0.5rem;
}

.partner-features li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
    color: var(--slate-600);
}

.partner-features li svg {
    width: 1.125rem;
    height: 1.125rem;
    color: var(--brand-primary);
    flex-shrink: 0;
}

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

/* ============================================
   10. TARGET AUDIENCE SECTION
   ============================================ */

.target-audience {
    padding: 6rem 0;
    background-color: var(--slate-50);
    overflow: hidden;
}

.audience-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.audience-text .badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--brand-primary);
    background-color: rgba(46, 80, 159, 0.1);
    border-radius: 9999px;
}

.audience-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
    color: var(--slate-900);
}

.audience-text p {
    font-size: 1.125rem;
    color: var(--slate-500);
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.6;
    max-width: 28rem;
}

.icon-label {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.icon-circle {
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    border: 1px solid rgba(46, 80, 159, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-primary);
}

.icon-circle svg {
    width: 1.25rem;
    height: 1.25rem;
}

.icon-label span {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--slate-400);
}

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

.audience-card {
    background-color: white;
    padding: 2rem;
    border-radius: 2.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--slate-100);
    transition: all 0.5s ease;
}

.audience-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.audience-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: rgba(46, 80, 159, 0.05);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-primary);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.audience-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.audience-card:hover .audience-icon {
    background-color: var(--brand-primary);
    color: white;
}

.audience-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--slate-800);
}

.audience-card p {
    font-size: 0.875rem;
    color: var(--slate-500);
    font-weight: 300;
    line-height: 1.6;
}

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

    .audience-card.offset {
        margin-top: 2rem;
    }
}

@media (min-width: 1024px) {
    .audience-content {
        flex-direction: row;
        align-items: flex-start;
    }

    .audience-text {
        width: 41.666667%;
    }

    .audience-grid {
        width: 58.333333%;
    }

    .audience-text h2 {
        font-size: 3rem;
    }
}

/* ============================================
   10. STARTUP FOCUS SECTION
   ============================================ */

.startup-focus {
    padding: 6rem 0;
    background-color: var(--slate-900);
    overflow: hidden;
    color: white;
    position: relative;
    overflow: hidden;
}

.startup-bg-blur {
    position: absolute;
    top: 0;
    right: 0;
    width: min(500px, 100vw);
    height: min(500px, 100vw);
    background-color: rgba(46, 80, 159, 0.1);
    border-radius: 9999px;
    filter: blur(120px);
    margin-right: -8rem;
    margin-top: -8rem;
    pointer-events: none;
}

.startup-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5rem;
}

.startup-text {
    width: 100%;
}

.badge-startup {
    color: #a2beff;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-size: 0.75rem;
    display: inline-block;
    margin-bottom: 1.25rem;
}

.startup-focus .text-brand {
    color: #a2beff
}

.startup-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    line-height: 1.2;
}

.startup-text p {
    color: var(--slate-400);
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 300;
}

.startup-features {
    list-style: none;
    margin-bottom: 3rem;
}

.startup-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.check-icon {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 9999px;
    background-color: rgba(46, 80, 159, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.startup-focus .check-icon {
    background-color:#a2beff
}

.check-icon svg {
    width: 0.875rem;
    height: 0.875rem;
    color: var(--brand-primary);
}

.startup-features span {
    color: var(--slate-300);
    font-weight: 500;
}

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

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

.stats-column:first-child {
    padding-top: 3rem;
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    padding: 2rem;
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.3s ease;
}



.stat-card:hover {
    border-color: rgba(46, 80, 159, 0.4);
}

.stat-card.highlight {
    background-color: var(--brand-primary);
    box-shadow: 0 25px 50px -12px rgba(46, 80, 159, 0.2);
}

.stat-card h4 {
    font-size: 1.875rem;
    color: var(--brand-primary);
    margin-bottom: 0.5rem;
}

.stat-card.highlight h4 {
    color: white;
}

.startup-focus .stat-card h4 {
    color: #a2beff;
}

.stat-card p {
    font-size: 0.75rem;
    color: var(--slate-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
}

.stat-card.highlight p {
    color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 1024px) {
    .startup-content {
        flex-direction: row;
    }

    .startup-text {
        width: 50%;
    }

    .startup-stats {
        width: 50%;
    }

    .startup-text h2 {
        font-size: 3rem;
    }
}

/* ============================================
   11. TEAM SECTION
   ============================================ */

.team {
    padding: 6rem 0;
    background-color: white;
}

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

.team-grid--single {
    display: block;
    max-width: 760px;
    margin: 0 auto;
}

/* Single-person: horizontal profile card */
.team-grid--single .team-member {
    display: flex;
    gap: 3rem;
    align-items: center;
    background-color: var(--slate-50);
    border: 1px solid var(--slate-100);
    border-radius: 2rem;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(46, 80, 159, 0.06);
}

.team-grid--single .member-image {
    width: 260px;
    flex-shrink: 0;
    margin-bottom: 0;
}

.team-grid--single .member-image img {
    height: 320px;
}

.team-grid--single .member-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-grid--single .team-member h3 {
    font-size: 1.75rem;
    margin-bottom: 0.375rem;
}

.team-grid--single .team-member .member-role {
    font-size: 0.9375rem;
    margin-bottom: 0;
}

@media (max-width: 640px) {
    .team-grid--single .team-member {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem;
    }

    .team-grid--single .member-image {
        width: 100%;
    }

    .team-grid--single .member-image img {
        height: 22rem;
    }

    .member-cta {
        align-self: stretch;
        text-align: center;
        justify-content: center;
    }
}

.team-member {
    cursor: pointer;
}

.member-image {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.member-image img {
    width: 100%;
    height: 20rem;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(46, 80, 159, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover .member-overlay {
    opacity: 1;
}

.team-member h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 0.25rem;
}

.team-member p {
    color: var(--brand-primary);
    font-weight: 500;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.member-qualifications {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.875rem;
}

.member-bio {
    color: var(--slate-500) !important;
    font-size: 0.9375rem !important;
    line-height: 1.7 !important;
    font-weight: 400 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    margin-top: 1.25rem !important;
}

.member-cta {
    align-self: flex-start;
    margin-top: 1.5rem;
}

.member-qual {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--slate-600);
    background-color: white;
    border: 1px solid var(--slate-200);
    border-radius: 9999px;
    padding: 0.25rem 0.875rem;
}

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

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

/* ============================================
   12. TESTIMONIALS SECTION
   ============================================ */

.testimonials {
    padding: 6rem 0;
    background-color: var(--slate-50);
}

.testimonials .section-header h2 {
    font-family: 'Jost', sans-serif;
}

.stars-large {
    color: var(--yellow-500);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.rating-text {
    color: var(--slate-500);
    font-weight: 600;
    font-size: 1rem;
}

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

.testimonial-card {
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--slate-100);
    position: relative;
}

.quote-mark {
    color: var(--brand-primary);
    font-size: 2.5rem;
    font-style: italic;
    font-family: serif;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--slate-600);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--slate-200);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--slate-500);
}

.author-info h4 {
    font-weight: 700;
    color: var(--slate-900);
    font-size: 1rem;
}

.author-info p {
    font-size: 0.75rem;
    color: var(--slate-400);
}

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

/* ============================================
   13. CONTACT SECTION
   ============================================ */

.contact {
    padding: 6rem 0;
    background-color: white;
}

.contact .text-brand {
    color: #a2beff
}

.contact-wrapper {
    background-color: var(--slate-900);
    border-radius: 3rem;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(46, 80, 159, 0.2);
    display: flex;
    flex-direction: column;
}

.contact-info {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
}

.contact-info > p {
    color: var(--slate-400);
    margin-bottom: 3rem;
    font-size: 1.125rem;
    font-weight: 300;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    background-color: #a2beff;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-primary);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.contact-text h4 {
    color: white;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
}

.contact-text p {
    color: var(--slate-300);
}

.contact-form {
    background-color: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(8px);
    padding: 3rem;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

.form-group label {
    color: var(--slate-400);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background-color: rgba(15, 23, 42, 0.5);
    border: 1px solid var(--slate-700);
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    color: white;
    font-weight: 300;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--brand-primary);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.5rem;
    padding-right: 3rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 6rem;
}

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

@media (min-width: 1024px) {
    .contact-wrapper {
        flex-direction: row;
    }

    .contact-info {
        width: 41.666667%;
        padding: 4rem;
    }

    .contact-form {
        width: 58.333333%;
        padding: 4rem;
    }
}

/* ============================================
   14. HERO FOUNDER TRIGGER BUTTON
   ============================================ */

.btn-founder-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
    margin-bottom: 2.5rem;
    padding: 0.75rem 1rem;
    background: none;
    border: none;
    border-left: 2px solid rgba(46, 80, 159, 0.25);
    border-radius: 0;
    color: var(--slate-600);
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: left;
}

.btn-founder-trigger svg {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    color: var(--brand-primary);
    opacity: 0.7;
}

.btn-founder-trigger .arrow {
    width: 0.875rem;
    height: 0.875rem;
    margin-left: 0.25rem;
    opacity: 0.35;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.btn-founder-trigger strong {
    color: var(--brand-primary);
    font-weight: 600;
}

.btn-founder-trigger:hover {
    border-left-color: var(--brand-primary);
    color: var(--slate-800);
    padding-left: 1.25rem;
}

.btn-founder-trigger:hover .arrow {
    transform: translateX(4px);
    opacity: 0.8;
}

/* ============================================
   15. EXISTENZGRÜNDER MODAL
   ============================================ */

.modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
}

.modal-container {
    position: relative;
    z-index: 10;
    background-color: white;
    width: 100%;
    max-width: 720px;
    max-height: 92vh;
    overflow-y: auto;
    border-radius: 2rem 2rem 0 0;
    transform: translateY(2rem);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal.active .modal-container {
    transform: translateY(0);
}

/* Centered on larger screens */
@media (min-width: 768px) {
    .modal {
        align-items: center;
        padding: 1.5rem;
    }

    .modal-container {
        border-radius: 2rem;
        transform: translateY(1.5rem) scale(0.97);
    }

    .modal.active .modal-container {
        transform: translateY(0) scale(1);
    }
}

/* ----- Modal Header ----- */

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2rem 2rem 1.5rem;
    border-bottom: 1px solid var(--slate-100);
    gap: 1rem;
}

.modal-header .badge {
    display: inline-block;
    padding: 0.3rem 0.875rem;
    margin-bottom: 0.625rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brand-primary);
    background-color: rgba(46, 80, 159, 0.08);
    border-radius: 9999px;
}

.modal-header h2 {
    font-size: 1.625rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 0.375rem;
}

.modal-header p {
    font-size: 0.9375rem;
    color: var(--slate-500);
    font-weight: 300;
}

.modal-close {
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--slate-100);
    border: none;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background-color 0.2s ease;
}

.modal-close:hover {
    background-color: var(--slate-200);
}

.modal-close svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--slate-600);
}

/* ----- Modal Body ----- */

.modal-body {
    padding: 1.75rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 640px) {
    .modal-body {
        flex-direction: row;
        gap: 2.5rem;
        align-items: flex-start;
    }

    .modal-features {
        flex: 0 0 42%;
    }

    .modal-form {
        flex: 1;
    }
}

/* ----- Feature List ----- */

.modal-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.modal-feature {
    display: flex;
    gap: 0.875rem;
    align-items: flex-start;
}

.modal-feature-icon {
    width: 2.25rem;
    height: 2.25rem;
    background-color: rgba(46, 80, 159, 0.07);
    border-radius: 0.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-primary);
    flex-shrink: 0;
}

.modal-feature-icon svg {
    width: 1.125rem;
    height: 1.125rem;
}

.modal-feature h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--slate-800);
    margin-bottom: 0.25rem;
}

.modal-feature p {
    font-size: 0.8125rem;
    color: var(--slate-500);
    font-weight: 300;
    line-height: 1.55;
}

/* ----- Modal Form ----- */

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

.modal-form .form-group label {
    color: var(--slate-500);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.modal-form .form-group input,
.modal-form .form-group select,
.modal-form .form-group textarea {
    background-color: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: 0.75rem;
    padding: 0.875rem 1rem;
    color: var(--slate-900);
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    width: 100%;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.modal-form .form-group input:focus,
.modal-form .form-group select:focus,
.modal-form .form-group textarea:focus {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(46, 80, 159, 0.1);
    background-color: white;
}

.modal-form .form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.25rem;
    padding-right: 3rem;
    cursor: pointer;
}

.modal-form .form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.modal-form textarea {
    resize: vertical;
    min-height: 5rem;
}

.modal-form .btn-submit {
    background-color: var(--brand-primary);
    font-size: 0.9375rem;
    padding: 1rem;
    border-radius: 0.875rem;
}

.modal-disclaimer {
    font-size: 0.75rem;
    color: var(--slate-400);
    text-align: center;
    font-weight: 400;
}

/* ============================================
   15. FOOTER
   ============================================ */

.footer {
    background-color: white;
    padding: 3rem 0;
    border-top: 1px solid var(--slate-100);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-brand img {
    height: 2rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--slate-500);
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    color: var(--slate-500);
    font-size: 0.875rem;
    font-weight: 500;
}

.footer-links a {
    transition: color 0.3s ease;
}

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

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--slate-100);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.social-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.social-icon:hover {
    background-color: rgba(46, 80, 159, 0.1);
    color: var(--brand-primary);
}

.social-icon--instagram:hover {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-brand {
        margin-bottom: 0;
    }
}

/* ============================================
   15. CHAT WIDGET
   ============================================ */

.chat-widget {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 100;
}

.chat-button {
    background-color: var(--brand-primary);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chat-button:hover {
    background-color: var(--brand-dark);
    transform: scale(1.05);
}

.chat-button:active {
    transform: scale(0.95);
}

.chat-button-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.chat-icon-wrapper {
    position: relative;
}

.chat-icon {
    width: 1.75rem;
    height: 1.75rem;
}

.status-dot {
    position: absolute;
    top: -0.25rem;
    right: -0.25rem;
    width: 0.75rem;
    height: 0.75rem;
    background-color: var(--green-500);
    border: 2px solid var(--brand-primary);
    border-radius: 9999px;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.chat-label {
    font-weight: 700;
    font-size: 0.875rem;
    font-family: 'Jost', sans-serif;
    letter-spacing: 0.05em;
}

.chat-window {
    display: none;
    width: 350px;
    height: 550px;
    background-color: white;
    border-radius: 1.5rem;
    box-shadow: 0 20px 60px rgba(46, 80, 159, 0.3);
    flex-direction: column;
    border: 1px solid var(--slate-200);
    overflow: hidden;
    animation: slideIn 0.5s ease;
}

.chat-window.active {
    display: flex;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(2rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-header {
    background-color: var(--brand-primary);
    padding: 1.25rem;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.chat-avatar {
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.chat-avatar svg {
    width: 1.25rem;
    height: 1.25rem;
}

.chat-title {
    font-weight: 700;
    font-size: 0.875rem;
    font-family: 'Jost', sans-serif;
    display: block;
}

.chat-status {
    font-size: 0.625rem;
    color: rgba(240, 243, 249, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
}

.chat-close-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 9999px;
    transition: background-color 0.3s ease;
}

.chat-close-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.chat-close-btn svg {
    width: 1.5rem;
    height: 1.5rem;
}

.chat-messages {
    flex: 1;
    padding: 1.25rem;
    overflow-y: auto;
    background-color: rgba(248, 250, 252, 0.5);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.message {
    display: flex;
}

.message.user {
    justify-content: flex-end;
}

.message.assistant {
    justify-content: flex-start;
}

.message-bubble {
    max-width: 85%;
    padding: 1rem;
    border-radius: 1rem;
    font-size: 0.8125rem;
    line-height: 1.6;
}

.message.user .message-bubble {
    background-color: var(--brand-primary);
    color: white;
    border-top-right-radius: 0.25rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.message.assistant .message-bubble {
    background-color: white;
    color: var(--slate-700);
    border: 1px solid var(--slate-100);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border-top-left-radius: 0.25rem;
}

.message.loading .message-bubble {
    display: flex;
    gap: 0.375rem;
    padding: 1rem;
}

.loading-dot {
    width: 0.375rem;
    height: 0.375rem;
    background-color: rgba(46, 80, 159, 0.3);
    border-radius: 9999px;
    animation: bounce 1.4s ease-in-out infinite;
}

.loading-dot:nth-child(2) {
    animation-delay: -0.15s;
}

.loading-dot:nth-child(3) {
    animation-delay: -0.3s;
}

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}

.chat-input-wrapper {
    padding: 1.25rem;
    border-top: 1px solid var(--slate-100);
    background-color: white;
}

.chat-input-container {
    display: flex;
    gap: 0.75rem;
}

#chat-input {
    flex: 1;
    background-color: var(--slate-100);
    border: none;
    border-radius: 1rem;
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 300;
    outline: none;
    transition: box-shadow 0.3s ease;
}

#chat-input:focus {
    box-shadow: 0 0 0 2px var(--brand-primary);
}

.chat-send-btn {
    background-color: var(--brand-primary);
    color: white;
    border: none;
    border-radius: 1rem;
    padding: 0.75rem;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.chat-send-btn:hover {
    background-color: var(--brand-dark);
}

.chat-send-btn:active {
    transform: scale(0.9);
}

.chat-send-btn svg {
    width: 1.25rem;
    height: 1.25rem;
}

.chat-disclaimer {
    font-size: 0.5625rem;
    text-align: center;
    color: var(--slate-400);
    margin-top: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

@media (min-width: 640px) {
    .chat-window {
        width: 400px;
    }
}

/* ============================================
   16. SPAM-SCHUTZ: HONEYPOT (nicht entfernen!)
   Verstecktes Feld – Bots füllen es aus, User sehen es nie.
   Kein display:none – das erkennen manche Bots.
   ============================================ */

.hp-field {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

/* ============================================
   17. FORM SUCCESS STATE
   ============================================ */

.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 2rem;
    gap: 1rem;
    min-height: 16rem;
}

.form-success svg {
    width: 3.5rem;
    height: 3.5rem;
    color: #22c55e;
    stroke-width: 1.5;
}

.form-success h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.form-success p {
    color: var(--slate-400);
    font-size: 1rem;
}

/* Modal success: light theme */
.form-success--modal h3 {
    color: var(--slate-900);
}

.form-success--modal p {
    color: var(--slate-500);
}

/* ============================================
   17. WHATSAPP FLOATING BUTTON
   ============================================ */

.whatsapp-button {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 100;
    display: flex;
    align-items: center;
    background-color: #25D366;
    color: white;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-button span {
    display: none;
}

.whatsapp-button:hover {
    background-color: #1ebe5d;
    transform: scale(1.05);
    box-shadow: 0 16px 40px rgba(37, 211, 102, 0.45);
}

.whatsapp-button:active {
    transform: scale(0.95);
}

.whatsapp-button svg {
    width: 1.75rem;
    height: 1.75rem;
    flex-shrink: 0;
}

/* Auf kleinen Screens nur das Icon zeigen */
@media (max-width: 640px) {
    .whatsapp-button {
        right: 1.5rem;
        padding: 1rem;
    }

    .whatsapp-button span {
        display: none;
    }
}


/* ============================================
   TRUST SECTION
   ============================================ */

.trust-section {
    padding: 3rem 0;
    background-color: var(--slate-50, #f8fafc);
    border-top: 1px solid var(--slate-200, #e2e8f0);
}

.trust-label {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slate-400, #94a3b8);
    margin-bottom: 1.75rem;
}

.trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.trust-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.75;
    transition: opacity 0.2s ease;
}

.trust-logo-item:hover {
    opacity: 1;
}

.trust-logo-item img {
    width: 200px;
    object-fit: contain;
}

@media (max-width: 480px) {
    .trust-logos {
        gap: 2rem;
    }

    .trust-logo-item img {
        width: 150px;
    }
}


/* ============================================
   BLOG – ARCHIV-HEADER
   ============================================ */

.blog-archive-header {
    padding: 10rem 0 4rem;
    background: linear-gradient(160deg, var(--brand-soft) 0%, #fff 60%);
    border-bottom: 1px solid var(--slate-200);
}

.blog-archive-header .section-header {
    margin-bottom: 0;
}

.blog-archive-title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: var(--slate-900);
    margin-bottom: 1rem;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-primary);
    margin-bottom: 0.75rem;
}

/* ============================================
   BLOG – GRID
   ============================================ */

.blog-archive-posts {
    padding: 5rem 0 6rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

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

@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ============================================
   BLOG – KARTE
   ============================================ */

.blog-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
    border: 1px solid var(--slate-100);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(46, 80, 159, 0.12);
}

/* Beitragsbild */
.blog-card__image-link {
    display: block;
    overflow: hidden;
}

.blog-card__image {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background-color: var(--brand-soft);
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card__image img {
    transform: scale(1.04);
}

.blog-card__image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--brand-soft);
}

.blog-card__image-placeholder svg {
    width: 48px;
    height: 48px;
    opacity: 0.6;
}

/* Body */
.blog-card__body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.75rem;
}

/* Meta: Kategorie + Datum */
.blog-card__meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.blog-card__category {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand-primary);
    background-color: var(--brand-soft);
    padding: 0.25rem 0.625rem;
    border-radius: 999px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.blog-card__category:hover {
    background-color: var(--brand-primary);
    color: white;
}

.blog-card__date {
    font-size: 0.8125rem;
    color: var(--slate-400);
}

/* Titel */
.blog-card__title {
    font-family: 'Jost', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.35;
    margin: 0;
    color: var(--slate-900);
}

.blog-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-card__title a:hover {
    color: var(--brand-primary);
}

/* Auszug */
.blog-card__excerpt {
    font-size: 0.9rem;
    color: var(--slate-500);
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

/* Weiterlesen */
.blog-card__readmore {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--brand-primary);
    text-decoration: none;
    margin-top: auto;
    transition: gap 0.2s ease, color 0.2s ease;
}

.blog-card__readmore:hover {
    color: var(--brand-dark);
    gap: 0.625rem;
}

/* ============================================
   BLOG – PAGINATION
   ============================================ */

.blog-pagination .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 0.75rem;
    border-radius: 0.625rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--slate-700);
    text-decoration: none;
    background: white;
    border: 1px solid var(--slate-200);
    transition: all 0.2s ease;
}

.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
    background-color: var(--brand-primary);
    border-color: var(--brand-primary);
    color: white;
}

.blog-pagination .page-numbers.dots {
    border: none;
    background: none;
    color: var(--slate-400);
}

/* ============================================
   BLOG – LEER-STATE
   ============================================ */

.blog-empty {
    text-align: center;
    padding: 4rem 0;
    color: var(--slate-500);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

/* ============================================
   SINGLE POST – HEADER
   ============================================ */

.single-post-header {
    padding: 9rem 0 3rem;
    background: linear-gradient(160deg, var(--brand-soft) 0%, #fff 70%);
    border-bottom: 1px solid var(--slate-100);
}

.single-post-breadcrumb {
    margin-bottom: 1.5rem;
}

.single-post-breadcrumb a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--brand-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.single-post-breadcrumb a:hover {
    color: var(--brand-dark);
}

.single-post-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.single-post-meta time,
.single-post-readtime {
    font-size: 0.875rem;
    color: var(--slate-400);
}

.single-post-readtime::before {
    content: '·';
    margin-right: 1rem;
    color: var(--slate-300);
}

.single-post-title {
    font-family: 'Jost', sans-serif;
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: var(--slate-900);
    max-width: 760px;
}

/* ============================================
   SINGLE POST – BEITRAGSBILD
   ============================================ */

.single-post-thumbnail {
    padding: 2.5rem 0 0;
}

.single-post-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    display: block;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.1);
}

/* ============================================
   SINGLE POST – INHALT
   ============================================ */

.single-post-content {
    padding: 4rem 0;
}

.post-body {
    max-width: 760px;
    margin: 0 auto;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--slate-700);
}

.post-body h2 {
    font-size: 1.625rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--slate-900);
}

.post-body h3 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--slate-900);
}

.post-body p {
    margin-bottom: 1.5rem;
}

.post-body ul,
.post-body ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.post-body li {
    margin-bottom: 0.5rem;
}

.post-body a {
    color: var(--brand-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.post-body a:hover {
    color: var(--brand-dark);
}

.post-body blockquote {
    margin: 2rem 0;
    padding: 1.25rem 1.5rem;
    border-left: 4px solid var(--brand-primary);
    background-color: var(--brand-soft);
    border-radius: 0 0.75rem 0.75rem 0;
    font-style: italic;
    color: var(--slate-600);
}

.post-body img {
    max-width: 100%;
    height: auto;
    border-radius: 0.75rem;
    display: block;
    margin: 2rem auto;
}

.post-body hr {
    border: none;
    border-top: 1px solid var(--slate-200);
    margin: 2.5rem 0;
}

/* Tags */
.single-post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--slate-100);
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.single-post-tag {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--slate-500);
    background-color: var(--slate-100);
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.single-post-tag:hover {
    background-color: var(--brand-soft);
    color: var(--brand-primary);
}

/* ============================================
   SINGLE POST – AUTOR-BOX
   ============================================ */

.single-post-author-section {
    padding: 0 0 3rem;
}

.author-box {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--slate-50);
    border: 1px solid var(--slate-100);
    border-radius: 1rem;
}

.single .author-box {
	display: none;
}

.author-box__avatar img,
.author-box__img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.author-box__label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slate-400);
    margin-bottom: 0.25rem;
}

.author-box__name {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--slate-900);
    margin-bottom: 0.375rem;
}

.author-box__bio {
    font-size: 0.875rem;
    color: var(--slate-500);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   SINGLE POST – PREV/NEXT NAVIGATION
   ============================================ */

.single-post-nav {
    padding: 2rem 0 5rem;
    border-top: 1px solid var(--slate-100);
}

.single-post-nav .nav-links {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
}

.single-post-nav .nav-previous,
.single-post-nav .nav-next {
    flex: 1;
}

.single-post-nav .nav-next {
    text-align: right;
}

.single-post-nav a {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    text-decoration: none;
    color: var(--slate-700);
    padding: 1rem 1.25rem;
    background: white;
    border: 1px solid var(--slate-200);
    border-radius: 0.75rem;
    transition: all 0.2s ease;
    height: 100%;
}

.single-post-nav a:hover {
    border-color: var(--brand-primary);
    box-shadow: 0 4px 16px rgba(46, 80, 159, 0.1);
    color: var(--brand-primary);
}

.post-nav__label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--slate-400);
}

.post-nav__title {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    line-height: 1.3;
    color: inherit;
}

@media (max-width: 600px) {
    .single-post-nav .nav-links {
        flex-direction: column;
    }
    .single-post-nav .nav-next {
        text-align: left;
    }
}


/* ============================================
   DOWNLOADS – ARCHIVE HEADER
   ============================================ */

.download-archive-header {
    padding: 10rem 0 4rem;
    background: linear-gradient(160deg, var(--brand-soft) 0%, #fff 60%);
    border-bottom: 1px solid var(--slate-200);
}

.download-archive-header .section-header {
    margin-bottom: 0;
}

.download-archive-title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: var(--slate-900);
    margin-bottom: 1rem;
}

/* ============================================
   DOWNLOADS – CONTENT SECTION
   ============================================ */

.download-archive-content {
    padding: 4rem 0 6rem;
}

/* ============================================
   DOWNLOADS – FILTER
   ============================================ */

.download-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--slate-100);
}

.filter-btn {
    display: inline-block;
    padding: 0.5rem 1.125rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-600);
    background-color: var(--slate-100);
    border: 1px solid var(--slate-200);
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.filter-btn:hover {
    background-color: var(--brand-soft);
    border-color: var(--brand-primary);
    color: var(--brand-primary);
}

.filter-btn.active {
    background-color: var(--brand-primary);
    border-color: var(--brand-primary);
    color: white;
}

/* ============================================
   DOWNLOADS – LISTE
   ============================================ */

.download-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .download-list {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   DOWNLOADS – CARD
   ============================================ */

.download-card {
    background: white;
    border: 1px solid var(--slate-100);
    border-radius: 1rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
    transition: all 0.25s ease;
}

.download-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(46, 80, 159, 0.12);
    border-color: var(--brand-primary);
}

/* Icon/Thumbnail */
.download-card__icon {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background-color: var(--brand-soft);
    display: none;
    align-items: center;
    justify-content: center;
}

.download-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.download-card__icon svg {
    width: 64px;
    height: 64px;
    opacity: 0.8;
}

/* Body */
.download-card__body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.75rem;
}

/* Meta */
.download-card__meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.download-card__category {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand-primary);
    background-color: var(--brand-soft);
    padding: 0.25rem 0.625rem;
    border-radius: 999px;
}

.download-card__version {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--slate-400);
}

/* Title */
.download-card__title {
    font-family: 'Jost', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.35;
    margin: 0;
    color: var(--slate-900);
}

/* Excerpt */
.download-card__excerpt {
    font-size: 0.875rem;
    color: var(--slate-500);
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

/* Footer */
.download-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--slate-100);
}

.download-card__info {
    font-size: 0.8125rem;
    color: var(--slate-400);
}

.download-card__size {
    display: inline-block;
}

/* Button */
.download-card__button {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    background-color: var(--brand-primary);
    border: none;
    border-radius: 0.625rem;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    white-space: nowrap;
}

.download-card__button:hover {
    background-color: var(--brand-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(46, 80, 159, 0.2);
}

.download-card__button--disabled {
    background-color: var(--slate-200);
    color: var(--slate-500);
    cursor: not-allowed;
}

.download-card__button--disabled:hover {
    background-color: var(--slate-200);
    transform: none;
    box-shadow: none;
}

.download-card__button svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* ============================================
   DOWNLOADS – PAGINATION
   ============================================ */

.page-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.download-empty {
    text-align: center;
    padding: 4rem 0;
    color: var(--slate-500);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.download-empty svg {
    width: 64px;
    height: 64px;
    opacity: 0.4;
}

.download-empty p {
    font-size: 1rem;
    margin: 0;
}
