/* --- 0. LOCAL FONT (DSGVO-compliant, no external requests) --- */
@font-face {
    font-family: 'Inter';
    src: url('font/inter-v20-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

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

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

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

/* --- 1. DESIGN SYSTEM (DARK MODE) --- */
:root {
    /* Base Color Palette */
    --color-palatinate-blue: #4F5DF6;
    --color-white-blue: #EBEFFA;
    --color-black-blue: #0F1024;
    --color-surface-blue: #242954;
    --color-text-gray: #545F7E;
    --color-pure-black: #06070F;
    --color-pure-white: #FFFFFF;

    /* Derived Colors - Hover States */
    --color-blue-hover: #3648e8;
    --color-blue-light: #7A86F8;

    /* Semantic Colors - Backgrounds */
    --bg-white: var(--color-pure-black);
    --bg-light: var(--color-black-blue);
    --bg-section-alt: var(--color-pure-black);
    --bg-card: var(--color-pure-black);
    --bg-overlay: rgba(6, 7, 15, 0.85);

    /* Semantic Colors - Text */
    --text-primary: var(--color-pure-white);
    --text-secondary: var(--color-white-blue);
    --text-muted: var(--color-text-gray);
    --text-disabled: var(--color-text-gray);
    --text-on-dark: var(--color-pure-white);
    --text-on-blue: var(--color-pure-white);

    /* Semantic Colors - Borders (all none in dark mode) */
    --border-light: transparent;
    --border-medium: transparent;
    --border-input: transparent;

    /* Semantic Colors - Shadows (all none in dark mode) */
    --shadow-sm: none;
    --shadow-md: none;
    --shadow-lg: none;
    --shadow-xl: none;
    --shadow-blue: none;
    --shadow-blue-lg: none;

    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 40px;
    --spacing-xl: 64px;
    --spacing-xxl: 80px;
    --spacing-section: 100px;

    /* Typography */
    --font-size-small: 0.875rem;
    --font-size-body: 1rem;
    --font-size-large: 1.125rem;
    --font-size-h3: 1.25rem;
    --font-size-h2: 2.5rem;
    --font-size-h1: 3rem;

    /* UI */
    --container-width-wide: 1600px;
    --container-width-narrow: 1200px;
    --radius-btn: 50px;
    --radius-card: 24px;
    --radius-input: 12px;
    --header-height: 80px;
}

/* Mobile Scale */
@media (max-width: 900px) {
    :root {
        --font-size-h1: 2.25rem;
        --font-size-h2: 2rem;
        --spacing-section: 60px;
        --spacing-xxl: 40px;
    }
}

/* --- 2. GLOBAL RESET --- */
html {
    scroll-behavior: smooth;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--color-white-blue);
    line-height: 1.6;
    font-weight: 400;
    background-color: var(--color-black-blue);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}



button {
    font-family: inherit;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--color-pure-white);
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

p {
    color: var(--color-white-blue);
    font-size: var(--font-size-body);
    margin-bottom: 0;
}

strong {
    font-weight: 600;
    color: var(--color-pure-white);
}

/* --- 3. ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.05s;
}

.delay-200 {
    transition-delay: 0.1s;
}

.delay-300 {
    transition-delay: 0.15s;
}

.delay-400 {
    transition-delay: 0.2s;
}

/* --- 4. UTILITIES --- */
.container {
    max-width: var(--container-width-wide);
    margin: 0 auto;
    padding: 0 40px;
}

.container-narrow {
    max-width: var(--container-width-narrow);
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 768px) {

    .container,
    .container-narrow {
        padding: 0 20px;
    }
}

section {
    padding: var(--spacing-section) 0;
    scroll-margin-top: var(--header-height);
}



.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-xl) auto;
}

.section-header h2 {
    font-size: var(--font-size-h2);
}

.section-header p {
    font-size: var(--font-size-large);
    color: var(--color-white-blue);
}

.text-blue {
    color: var(--color-palatinate-blue);
}

/* --- 5. BUTTONS --- */
.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 14px 32px;
    border-radius: var(--radius-btn);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    white-space: nowrap;
}

.btn-block {
    width: 100%;
}

.btn-primary {
    background-color: var(--color-palatinate-blue);
    color: var(--color-pure-white);
    border: none;
    box-shadow: 0 0 20px rgba(79, 93, 246, 0.35);
}

.btn-primary:hover {
    background-color: var(--color-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(79, 93, 246, 0.5);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-white-blue);
    border: none;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.btn-ghost {
    background-color: transparent;
    color: var(--color-white-blue);
    border: none;
    box-shadow: none;
}

.btn-ghost:hover {
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--color-pure-white);
    transform: translateY(-2px);
}

.btn-primary-inverse {
    background-color: rgba(235, 239, 250, 0.12);
    color: var(--color-white-blue);
    border: none;
    box-shadow: none;
}

.btn-primary-inverse:hover {
    background-color: rgba(235, 239, 250, 0.18);
    color: var(--color-pure-white);
    transform: translateY(-2px);
}

.btn-white {
    background-color: rgba(235, 239, 250, 0.12);
    color: var(--color-white-blue);
    border: none;
    box-shadow: none;
}

.btn-white:hover {
    background-color: rgba(235, 239, 250, 0.18);
    color: var(--color-pure-white);
    transform: translateY(-2px);
}

.btn-white-blue {
    background-color: rgba(235, 239, 250, 0.12);
    color: var(--color-white-blue);
    border: none;
}

.btn-white-blue:hover {
    background-color: rgba(235, 239, 250, 0.18);
    color: var(--color-pure-white);
    transform: translateY(-2px);
}

/* --- 6. HEADER --- */
header {
    background-color: rgba(6, 7, 15, 0.5);
    height: var(--header-height);
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: none;
    will-change: transform;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    letter-spacing: -0.5px;
    z-index: 1002;
    margin-right: auto;
    color: var(--color-pure-white);
}

.logo-img {
    height: 48px;
    width: auto;
}

.logo-text {
    display: flex;
    gap: 5px;
    font-weight: 400;
}

.logo-text strong {
    font-weight: 700;
    color: inherit;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 500;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link-secondary {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-gray);
    transition: 0.3s;
}

.nav-link-secondary,
.desktop-hidden {
    display: none;
}

.nav-btn-primary {
    padding: 10px 24px;
    font-size: 0.9rem;
}

.nav-links a:hover {
    color: var(--color-palatinate-blue);
}

/* Hamburger */
.hamburger {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1002;
    margin-left: auto;
}

.bar {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-pure-white);
    position: absolute;
    transition: 0.3s;
}

.bar:nth-child(1) {
    top: 0;
}

.bar:nth-child(2) {
    top: 9px;
}

.bar:nth-child(3) {
    top: 18px;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 900px) {
    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: var(--color-black-blue);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        padding: 40px;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1001;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-links {
        flex-direction: column;
        gap: 25px;
        text-align: center;
        margin-bottom: 40px;
    }

    .nav-links li a {
        font-size: 1.1rem;
        font-weight: 600;
    }

    .nav-actions {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 320px;
    }

    .nav-btn-primary {
        width: 100%;
        padding: 16px;
        font-size: 1rem;
        order: 1;
        background-color: var(--color-palatinate-blue) !important;
        color: white !important;
        border: 2px solid var(--color-palatinate-blue) !important;
    }

    .nav-btn-secondary {
        width: 100%;
        padding: 14px;
        text-align: center;
        font-size: 1rem;
        background: transparent;
        color: var(--color-text-gray);
        display: flex !important;
        order: 2;
        border: none;
        box-shadow: none;
    }

    .nav-btn-secondary:hover {
        background: rgba(42, 62, 244, 0.1);
        transform: none;
    }
}

/* --- 7. HERO SECTION --- */
.hero {
    background-color: var(--color-pure-black);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: calc(var(--header-height) + var(--spacing-xxl));
    padding-bottom: var(--spacing-xxl);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: -35%;
    left: -20%;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(79, 93, 246, 0.35) 0%, rgba(79, 93, 246, 0) 70%);
    pointer-events: none;
    animation: hero-glow-drift 10s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes hero-glow-drift {
    0% {
        opacity: 0.4;
        transform: scale(1) translate(0, 0);
    }

    25% {
        opacity: 0.6;
        transform: scale(1.2) translate(60px, -50px);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.4) translate(-40px, -120px);
    }

    75% {
        opacity: 0.8;
        transform: scale(1.5) translate(80px, -160px);
    }

    100% {
        opacity: 0.6;
        transform: scale(1.3) translate(-20px, -80px);
    }
}

.hero-wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--spacing-xl);
    width: 100%;
}

.hero-content {
    flex: 1;
    max-width: 650px;
    padding-bottom: 0;
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: var(--font-size-small);
    color: var(--color-white-blue);
    margin-bottom: var(--spacing-md);
    font-weight: 600;
}

.guarantee-badge svg {
    color: var(--color-white-blue);
}

.hero h1 {
    font-size: var(--font-size-h1);
    margin-bottom: var(--spacing-md);
    letter-spacing: -1.5px;
}

.hero p {
    font-size: var(--font-size-large);
    margin-bottom: var(--spacing-lg);
    max-width: 480px;
    color: var(--color-white-blue);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.hero-image-inner {
    position: relative;
    max-width: 800px;
    width: 100%;
}

.hero-image img {
    border-radius: 30px;
    box-shadow: none;
    aspect-ratio: 4/3;
    object-fit: cover;
    width: 100%;
    display: block;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: var(--color-surface-blue);
    border-radius: 16px;
    box-shadow: none;
    z-index: 2;
    width: 180px;
    height: 110px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
    will-change: transform;
}

.widget-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.widget-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.widget-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-pure-white);
    line-height: 1;
}

.widget-indicator {
    height: 6px;
    background: var(--color-pure-black);
    border-radius: 3px;
    margin-top: 6px;
    overflow: hidden;
}

.indicator-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--color-surface-blue) 0%, var(--color-palatinate-blue) 100%);
    border-radius: 3px;
    width: 0;
    transition: width 2.5s ease-in-out;
    transition-delay: 0.8s;
    box-shadow: 0 0 10px rgba(79, 93, 246, 0.5);
}

.reveal.visible .indicator-bar {
    width: var(--target-width);
}

.widget-chart {
    width: 100%;
    height: 25px;
    margin-top: 4px;
}

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

.widget-ring {
    width: 45px;
    height: 45px;
}

.ring-bg {
    fill: none;
    stroke: var(--color-pure-black);
    stroke-width: 4;
}

.ring-fill {
    fill: none;
    stroke: var(--color-palatinate-blue);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 0, 100;
    transition: stroke-dasharray 2.5s ease-in-out;
    transition-delay: 1s;
    filter: drop-shadow(0 0 4px rgba(79, 93, 246, 0.6));
}

@keyframes fadeInCap {
    to {
        opacity: 1;
    }
}

.reveal.visible .ring-fill {
    stroke-dasharray: var(--stroke-dash), 100;
}

.ring-cap {
    fill: var(--color-palatinate-blue);
    opacity: 0;
}

.ring-start-cap {
    fill: var(--color-surface-blue);
}

.reveal.visible .ring-cap {
    animation: fadeInCap 0.1s ease 3.45s forwards;
}

.widget-sub {
    font-size: 0.8rem;
    color: var(--color-white-blue);
    font-weight: 600;
    margin-top: 2px;
}

.card-1 {
    top: -10px;
    left: -30px;
}

.card-2 {
    bottom: 80px;
    right: -40px;
}

.card-3 {
    bottom: -20px;
    left: 40px;
}

@media (max-width: 900px) {
    .floating-card {
        width: 168px;
        height: 102px;
        padding: 14px;
        border-radius: 12px;
    }

    .widget-label {
        font-size: 0.65rem;
    }

    .widget-value {
        font-size: 1.3rem;
    }

    .widget-chart {
        height: 18px;
    }

    .widget-sub {
        font-size: 0.75rem;
    }

    .card-1 {
        top: 0px;
        left: -10px;
    }

    .card-2 {
        bottom: 70px;
        right: -10px;
    }

    .card-3 {
        bottom: -15px;
        left: 20px;
    }

    .hero-wrapper {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--spacing-lg);
    }

    .hero-content {
        text-align: center;
        margin: 0 auto;
    }

    .guarantee-badge {
        justify-content: center;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image {
        justify-content: center;
    }

    .hero {
        padding-top: calc(var(--header-height) + 20px);
        padding-bottom: 40px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2rem;
        letter-spacing: -1px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: calc(var(--header-height) + 60px);
    }

    .hero-image img {
        aspect-ratio: 4 / 5;
        object-fit: cover;
        object-position: center top;
    }

    /* Minimal Overlap Strategy for Mobile */
    .hero-image-inner {
        margin-top: 80px;
        /* Increased spacing to separate from text/CTA */
        margin-bottom: 40px;
        /* Add space at bottom */
    }

    .card-1 {
        top: -65px;
        left: 0;
        right: auto;
    }

    /* Move both bottom widgets down */
    .card-2 {
        top: auto;
        bottom: -55px;
        right: -10px;
    }

    .card-3 {
        bottom: -55px;
        left: -10px;
    }
}

/* --- 8. STATS SECTION --- */
.stats {
    background: var(--color-black-blue);
    padding: var(--spacing-xl) 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    text-align: center;
}

.stat-item .stat-value {
    display: block;
    font-size: 4rem;
    font-weight: 400;
    color: var(--color-pure-white);
    margin-bottom: var(--spacing-xs);
    letter-spacing: -2px;
}

.stat-item p {
    font-size: var(--font-size-large);
    color: var(--color-text-gray);
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .stat-item .stat-value {
        font-size: 2.5rem;
    }

    .stat-item p {
        font-size: 0.9rem;
    }
}

/* --- 9. QUOTE SECTION --- */
.quote-section {
    background-color: var(--color-pure-black);
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.quote-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.quote-text {
    font-size: var(--font-size-h2);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.5px;
    color: var(--color-pure-white);
    display: inline;
}

.quote-author {
    display: block;
    margin-top: var(--spacing-md);
    font-size: var(--font-size-body);
    color: var(--color-text-gray);
    font-weight: 500;
}

@media (max-width: 768px) {
    .quote-section {
        padding-bottom: 10px;
    }

    .quote-text {
        font-size: 1.8rem;
    }
}

/* --- 10. FEATURES SECTION --- */
.features {
    background: var(--color-pure-black);
}

@media (max-width: 768px) {
    .features {
        padding-top: 20px;
        padding-bottom: 10px;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--spacing-lg);
    align-items: start;
}

.card {
    background: var(--color-black-blue);
    padding: 30px;
    border-radius: var(--radius-card);
    text-align: center;
    transition: all 0.3s ease;
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: none;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
}

.paging-indicator {
    display: none;
}

@media (max-width: 768px) {
    .features-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding: 10px 10vw 20px 10vw;
        margin-left: -20px;
        margin-right: -20px;
        scrollbar-width: none;
        -ms-overflow-style: none;
        cursor: grab;
    }

    .features-grid::-webkit-scrollbar {
        display: none;
    }

    .features-grid .card {
        flex: 0 0 80vw;
        scroll-snap-align: center;
        margin: 0;
        /* Force visibility on mobile to fix reveal animation issues */
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .paging-indicator {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin: 20px 0 40px 0;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .paging-indicator .dot {
        width: 25px;
        height: 6px;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    .paging-indicator .dot.active {
        background: var(--color-palatinate-blue);
        width: 40px;
    }
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: none;
    background: var(--color-palatinate-blue);
}

.icon-wrapper {
    width: 48px;
    height: 48px;
    margin-bottom: var(--spacing-md);
    color: var(--color-palatinate-blue);
    transition: 0.3s;
}

.card:hover .icon-wrapper,
.card:hover h3,
.card:hover p {
    color: var(--color-pure-white);
}

.card h3 {
    font-size: var(--font-size-h3);
    margin: 10px 0;
    /* Tightened margins for square fit */
    line-height: 1.3;
    transition: 0.3s;
}

.card p {
    color: var(--color-white-blue);
    font-size: var(--font-size-small);
    transition: 0.3s;
    max-width: 100%;
    margin: 0;
    line-height: 1.5;
}

/* --- 11. COMPARISON SECTION --- */
.comparison {
    background: var(--color-pure-black);
}

.comp-desktop-view {
    display: block;
}

.comparison-dashboard {
    background: var(--color-black-blue);
    border-radius: var(--radius-card);
    box-shadow: none;
    overflow: hidden;
}

.comp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.comp-cell {
    padding: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    background: var(--color-black-blue);
}

.comp-header {
    background: rgba(255, 255, 255, 0.05);
    font-weight: 400;
    color: var(--color-pure-white);
    font-size: var(--font-size-large);
    flex-direction: row;
    justify-content: flex-start !important;
    align-items: center;
    text-align: left !important;
    gap: 6px;
}

.comp-label {
    font-weight: 700;
    color: var(--color-pure-white);
    font-size: var(--font-size-large);
}

.highlight-text {
    background: rgba(79, 93, 246, 0.15);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
    color: var(--color-pure-white);
}

.section-icon {
    color: var(--color-palatinate-blue);
    margin-right: 12px;
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

.comp-text-sieber,
.comp-text-sieber strong {
    color: var(--color-white-blue) !important;
}

.comp-text-other {
    color: var(--text-muted) !important;
}

.comp-content strong {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 1.05rem;
}

.comp-content p {
    margin: 0;
    font-size: 0.95rem;
    padding-left: 34px;
    color: var(--color-white-blue);
}

.comp-text-other+p {
    color: var(--text-muted);
}

.comp-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.icon-blue {
    stroke: var(--color-palatinate-blue);
}

.icon-grey {
    stroke: var(--text-disabled);
}

.comp-grid>div:nth-last-child(-n+3) {
    border-bottom: none;
}

.comp-mobile-view {
    display: none;
    flex-direction: column;
    gap: 15px;
}

/* Segmented Control Styling */
.comp-tabs {
    display: flex;
    align-items: stretch;
    background: var(--color-surface-blue);
    padding: 6px;
    box-sizing: border-box;
    border-radius: 14px;
    margin-bottom: 20px;
    border: none;
}

.comp-tab {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px;
    margin: 0;
    box-sizing: border-box;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.comp-tab.active {
    background: var(--color-black-blue) !important;
    color: var(--color-pure-white) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.comp-tab-content {
    width: 100%;
}

.comp-mobile-card {
    display: none;
    background: var(--color-black-blue);
    border-radius: var(--radius-card);
    padding: 24px;
    box-shadow: none;
    flex-direction: column;
    gap: 20px;
    animation: compFadeIn 0.3s ease-out;
}

.comp-mobile-card.active {
    display: flex;
}

@keyframes compFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.comp-card-header {
    font-size: 1.25rem;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.comp-mobile-card.is-sieber .comp-card-header,
.comp-mobile-card.is-sieber .comp-card-header strong,
.comp-mobile-card.is-sieber strong {
    color: var(--color-white-blue);
}

.comp-mobile-card.is-other .comp-card-header,
.comp-mobile-card.is-other strong,
.comp-mobile-card.is-other p {
    color: var(--text-muted);
}

.comp-list-item {
    display: flex;
    flex-direction: column;
}

.comp-list-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-bottom: 4px;
    font-weight: 700;
}

@media (max-width: 900px) {
    .comp-desktop-view {
        display: none;
    }

    .comp-mobile-view {
        display: flex;
    }

    .comp-tab {
        font-size: 0.8rem;
        padding: 10px 4px;
        white-space: nowrap;
    }
}

/* --- 12. ABOUT SECTION --- */
.about {
    background: var(--color-black-blue);
}

.about-wrapper {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-xl);
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: var(--radius-card);
    box-shadow: none;
    height: 550px;
    width: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.about h2 {
    font-size: var(--font-size-h2);
    margin-bottom: var(--spacing-sm);
}

.about-signature {
    font-size: var(--font-size-small);
    color: var(--color-text-gray);
    margin-bottom: var(--spacing-lg);
    font-style: normal;
    font-weight: 400;
}

.about-intro {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
    font-style: italic;
    color: var(--color-white-blue);
}

.about-block {
    margin-bottom: var(--spacing-md);
}

@media (max-width: 900px) {
    .about-wrapper {
        flex-direction: column-reverse;
        gap: var(--spacing-lg);
    }

    .about-image img {
        aspect-ratio: 1 / 1;
        height: auto;
    }
}

/* --- 13. PRICING SECTION --- */
.pricing {
    background: var(--color-pure-black);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    align-items: stretch;
}

.pricing-card {
    background: var(--color-black-blue);
    border-radius: var(--radius-card);
    padding: 40px 30px;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    transition: 0.3s;
}

@keyframes radial-pulse-move {
    0% {
        opacity: 0.5;
        transform: scale(1) translate(0, 0);
    }

    33% {
        opacity: 0.8;
        transform: scale(1.3) translate(20px, -40px);
    }

    66% {
        opacity: 0.9;
        transform: scale(1.5) translate(-15px, -90px);
    }

    100% {
        opacity: 1;
        transform: scale(1.6) translate(10px, -130px);
    }
}

.pricing-card.featured {
    background: var(--color-black-blue);
    color: var(--color-pure-white);
    transform: scale(1.08);
    z-index: 2;
    padding: 50px 30px;
    position: relative;
    overflow: hidden;
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -15%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(79, 93, 246, 0.35) 0%, rgba(79, 93, 246, 0) 75%);
    pointer-events: none;
    animation: radial-pulse-move 6s ease-in-out infinite alternate;
    z-index: 0;
}

.pricing-card.featured>* {
    position: relative;
    z-index: 1;
}

.pricing-card:not(.featured):hover {
    transform: translateY(-5px);
}

.pricing-header {
    margin-bottom: 30px;
    text-align: center;
}

.pricing-title {
    font-size: var(--font-size-h3);
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-sub {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 20px;
    font-style: italic;
    display: block;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 10px;
}

.price span {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.7;
    display: block;
    margin-top: 5px;
}

/* Pricing Tabs Mobile */
.pricing-tabs {
    display: none;
    max-width: 450px;
    margin: 0 auto 30px auto;
}

@media (max-width: 900px) {
    .pricing-tabs {
        display: block;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .pricing-card {
        display: none;
        transform: none !important;
        margin: 0;
    }

    .pricing-card.active {
        display: flex;
        animation: compFadeIn 0.3s ease-out;
    }

    .pricing-card.featured {
        padding: 40px 30px;
        /* Reset padding to uniform for tabs */
    }
}

.featured .pricing-title,
.featured .price,
.featured .price span,
.featured .pricing-sub {
    color: var(--color-pure-white);
}

.pricing-card:not(.featured) .pricing-title {
    color: var(--color-pure-white);
}

.pricing-card:not(.featured) .price {
    color: var(--color-white-blue);
}

.pricing-features {
    margin-bottom: 30px;
    flex-grow: 1;
}

.pricing-features li {
    margin-bottom: 16px;
    font-size: 0.95rem;
    display: flex;
    gap: 12px;
}

.featured .pricing-features li {
    color: var(--color-white-blue);
}

.pricing-card:not(.featured) .pricing-features li {
    color: var(--color-text-gray);
}

.check-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.featured .check-icon {
    stroke: var(--color-palatinate-blue);
}

.pricing-card:not(.featured) .check-icon {
    stroke: var(--color-palatinate-blue);
}

.pricing-btn-wrapper {
    text-align: center;
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
        gap: var(--spacing-lg);
    }

    .pricing-card.featured {
        transform: scale(1);
    }
}

/* --- 14. FAQ SECTION --- */
.faq {
    background: var(--color-black-blue);
}

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

.faq-item {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 0;
    overflow: hidden;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 24px 0;
    font-size: 1.1rem;
    font-weight: 500;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-pure-white);
    transition: 0.3s;
}

.faq-question:hover {
    color: var(--color-white-blue);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-muted);
    transition: 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--color-white-blue);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease-out;
    padding: 0;
}

.faq-answer p {
    padding-bottom: 24px;
    color: var(--color-white-blue);
    line-height: 1.6;
}



/* --- 15. CONTACT SECTION --- */
.contact {
    background: var(--color-pure-black);
}

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

.form-tabs {
    max-width: 450px;
    margin: 0 auto 40px auto;
}

.contact-form-card {
    background: var(--color-black-blue);
    padding: 50px 40px;
    border-radius: var(--radius-card);
    box-shadow: none;
    display: none;
    animation: fadeIn 0.4s ease;
}

.contact-form-card.visible {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-form-card h3 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 12px;
}

.contact-form-card .intro {
    text-align: center;
    margin-bottom: 30px;
    color: var(--color-white-blue);
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--color-pure-white);
}

.form-input,
.form-select {
    width: 100%;
    padding: 14px 16px;
    border: none;
    border-radius: var(--radius-input);
    font-family: inherit;
    font-size: 1rem;
    transition: 0.3s;
    background: var(--color-surface-blue);
    color: var(--color-pure-white);
}

.form-input:focus,
.form-select:focus {
    outline: none;
    background: var(--color-surface-blue);
    box-shadow: none;
}

.form-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232A3EF4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 20px;
    padding-right: 40px;
}

.form-note {
    display: block;
    text-align: center;
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.contact-person {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    background: var(--color-surface-blue);
    padding: 10px 24px 10px 10px;
    border-radius: 50px;
    width: fit-content;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.contact-person:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

.contact-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.contact-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.contact-label {
    font-size: 0.75rem;
    color: var(--color-text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}


/* --- 14b. LEGAL PAGES --- */
.legal-page {
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
}

.legal-wrapper {
    padding: calc(var(--header-height) + var(--spacing-xl)) 0 var(--spacing-section) 0;
}

.legal-wrapper h1 {
    font-size: var(--font-size-h1);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    color: var(--text-primary);
}

.legal-content h2 {
    font-size: var(--font-size-h3);
    font-weight: 700;
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.legal-content h3 {
    font-size: var(--font-size-body);
    font-weight: 600;
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
}

.legal-content p {
    font-size: var(--font-size-body);
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
}

.legal-content a {
    color: var(--color-palatinate-blue);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}


/* --- 15. SUCCESS PAGE --- */
.success-page {
    background: var(--color-pure-black);
    font-family: 'Inter', sans-serif;
    color: var(--color-white-blue);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.success-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: calc(var(--header-height) + var(--spacing-xl)) var(--spacing-md) var(--spacing-xl);
}

.success-card {
    max-width: 600px;
    width: 100%;
    text-align: center;
    margin: 0 auto;
}

/* Checkmark Animation — clean stroke icon, spring scale */
.checkmark-wrapper {
    margin-bottom: var(--spacing-md);
}

.checkmark {
    width: 72px;
    height: 72px;
    display: block;
    margin: 0 auto;
    transform: scale(0);
    animation: checkmarkSpring 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s forwards;
}

.checkmark__circle {
    stroke: var(--color-palatinate-blue);
    stroke-width: 2;
    fill: none;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    animation: successStroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) 0.4s forwards;
}

.checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke: var(--color-palatinate-blue);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    animation: successStroke 0.35s cubic-bezier(0.65, 0, 0.45, 1) 0.85s forwards;
}

@keyframes checkmarkSpring {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes successStroke {
    100% {
        stroke-dashoffset: 0;
    }
}

.success-card h1 {
    font-size: var(--font-size-h2);
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    color: var(--color-pure-white);
    line-height: 1.2;
}

.success-subline {
    font-size: var(--font-size-large);
    color: var(--color-white-blue);
    margin-bottom: var(--spacing-xl);
}

/* Content Card */
.success-content {
    text-align: left;
    background: var(--color-black-blue);
    padding: var(--spacing-lg);
    border-radius: var(--radius-card);
    margin-bottom: var(--spacing-lg);
}

.steps-headline {
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-size-h3);
    font-weight: 600;
    color: var(--color-pure-white);
}

/* Steps List — icon + text */
.steps-list {
    margin-bottom: var(--spacing-lg);
    padding-left: 0;
    list-style: none;
    counter-reset: step;
}

.steps-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    color: var(--color-white-blue);
    font-size: var(--font-size-body);
    line-height: 1.5;
}

.step-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    color: var(--color-palatinate-blue);
    margin-top: 2px;
}

/* Personal Note */
.personal-note {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.sebastian-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-black-blue);
}

.personal-text {
    display: flex;
    flex-direction: column;
}

.personal-text strong {
    color: var(--color-pure-white);
    font-weight: 600;
}

.personal-text span {
    font-size: var(--font-size-small);
    color: var(--color-white-blue);
}

/* Pro-Tip Box */
.pro-tip-box {
    background: var(--color-black-blue);
    border: none;
    padding: var(--spacing-md);
    border-radius: var(--radius-card);
    text-align: left;
    margin-bottom: var(--spacing-lg);
}

.tip-header {
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-primary);
}

.tip-icon {
    width: 20px;
    height: 20px;
    color: var(--color-palatinate-blue);
    flex-shrink: 0;
}

.pro-tip-box p {
    color: var(--text-secondary);
    font-size: var(--font-size-body);
    line-height: 1.6;
}

.tip-action {
    margin-top: var(--spacing-sm);
    padding-top: var(--spacing-sm);
    border-top: 1px solid var(--border-light);
    color: var(--text-secondary);
    font-size: var(--font-size-body);
    line-height: 1.6;
}

/* CTA Button */
.btn-home {
    margin-top: var(--spacing-sm);
}

/* Footer */
.success-footer {
    text-align: center;
    padding: var(--spacing-lg);
    font-size: var(--font-size-small);
    color: var(--text-muted);
    border-top: 1px solid var(--border-light);
}

.success-footer-links {
    margin-top: var(--spacing-xs);
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
}

.success-footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.success-footer-links a:hover {
    color: var(--color-palatinate-blue);
}

/* --- 16. FOOTER (ZEBRA: Dark→Light) --- */
footer {
    background: var(--color-pure-black);
    color: var(--color-white-blue);
    padding: 80px 0 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 24px;
    color: var(--color-pure-white);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    color: var(--color-pure-white);
}

.footer-logo-img {
    height: 26px;
    width: auto;
    /* Invert SVG for dark footer */
    filter: brightness(0) invert(1);
}

.footer-desc {
    color: var(--color-white-blue);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 300px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--color-white-blue);
    font-size: 0.95rem;
    transition: 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    text-align: center;
    color: var(--color-text-gray);
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--color-white-blue);
    margin: 0;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 20px;
    height: 20px;
    fill: var(--color-white-blue);
    opacity: 0.4;
    transition: 0.3s;
}

.social-icon:hover {
    opacity: 1;
}

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}

/* LENIS SCROLL CSS */
html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

/* --- 17. STICKY FLOATING CTA --- */
.sticky-fab {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: var(--color-palatinate-blue);
    color: white;
    border-radius: 50%;
    display: none;
    /* Hidden by default */
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(42, 62, 244, 0.4);
    z-index: 9999;
    text-decoration: none;
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s ease;
}

@media (max-width: 900px) {
    .sticky-fab {
        display: flex;
        /* Show on mobile/tablet */
    }
}

.sticky-fab.visible {
    transform: scale(1);
}

.sticky-fab:active {
    transform: scale(0.9);
}

.sticky-fab svg {
    width: 24px;
    height: 24px;
}

/* --- TEASER BANNER (ZEBRA: Dark→Light) --- */
.teaser-banner {
    background-color: var(--color-white-blue);
    color: var(--color-black-blue);
    padding: 100px 0;
    overflow: hidden;
    position: relative;
}

.teaser-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(42, 62, 244, 0.05), transparent 70%);
    pointer-events: none;
}

.teaser-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.teaser-text {
    flex: 1;
    max-width: 550px;
}

.teaser-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--color-black-blue);
    line-height: 1.2;
}

.teaser-text p {
    font-size: 1.1rem;
    margin-bottom: 35px;
    color: var(--color-text-gray);
    line-height: 1.6;
}

.teaser-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    max-width: 450px;
}

.report-mockup {
    background: var(--color-pure-white);
    width: 100%;
    padding: 25px;
    border-radius: 12px;
    box-shadow: none;
    position: relative;
    transform: rotate(-3deg);
    transition: transform 0.4s ease;
}

.report-mockup:hover {
    transform: rotate(0deg) scale(1.02);
}

.mock-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--mock-border, rgba(14, 15, 40, 0.08));
}

.mock-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.mock-bar {
    height: 10px;
    background: var(--mock-bar-bg, rgba(14, 15, 40, 0.1));
    border-radius: 4px;
}

.mock-bar.blue {
    background: var(--color-palatinate-blue);
}

.mock-bar.red {
    background: #cc6666;
}

.blur-1 {
    filter: blur(1.5px);
    opacity: 0.9;
}

.blur-2 {
    filter: blur(3px);
    opacity: 0.7;
}

.blur-3 {
    filter: blur(5px);
    opacity: 0.5;
}

@media (max-width: 900px) {
    .teaser-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .teaser-text {
        margin: 0 auto;
    }

    .report-mockup {
        max-width: 340px;
        transform: rotate(0deg);
        margin: 0 auto;
    }

    .teaser-banner {
        padding: 60px 0;
    }

    .teaser-text h2 {
        font-size: 2rem;
    }
}

/* --- 19. TABLES --- */
.salary-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 0;
}

.salary-table th {
    text-align: left;
    padding: 16px;
    font-size: var(--font-size-small);
    color: var(--color-white-blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
}

.salary-table td {
    padding: 20px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    vertical-align: middle;
    font-size: var(--font-size-body);
    color: var(--color-white-blue);
}

.salary-table tr:last-child td {
    border-bottom: none;
}

.trigger-value {
    color: #ff4d4d;
    /* Updated to match the red in the report teaser mockup */
    font-weight: 700;
    font-size: var(--font-size-large);
}