:root {
    /* Color Palette - niogod™ Desaturated (Professional & Clean) */
    --bg-color: #ffffff;
    --bg-light: #f3f4f6;
    /* Cool Gray 100 */
    --bg-card: #ffffff;

    --text-primary: #2d283e;
    /* Deep Desaturated Purple */
    --text-secondary: #564f6f;
    /* Muted Purple Gray */
    --text-light: #7e6e9c;
    /* Lighter Purple-Gray */
    --text-dark: #1e1b29;
    /* Very Dark Purple */
    --text-accent: #4f5d75;
    /* Desaturated Slate Blue */
    --text-white: #ffffff;

    --primary-color: #4f5d75;
    /* Desaturated Slate Blue */
    --primary-light: #77859d;
    --primary-dark: #2d3748;
    --primary-gradient: linear-gradient(135deg, #4f5d75 0%, #7e6e9c 100%);
    --primary-gradient-hover: linear-gradient(135deg, #3e4a5e 0%, #63567a 100%);

    --border-color: #e5e7eb;
    /* Gray 200 */

    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

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

body {
    font-family: var(--font-sans);
    color: var(--text-primary);
    line-height: 1.6;
    background-color: var(--bg-color);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: var(--shadow-md);
}

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

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

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

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

.btn-white:hover {
    background: #f0f0f0;
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    /* Subtle border look */
}

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

.mobile-menu-toggle {
    display: none;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    letter-spacing: -1px;
    z-index: 1001;
    white-space: nowrap;
    /* Above mobile menu */
}

.nav-center {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    padding-right: 40px;
}

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

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

/* Hide mobile-only nav items on Desktop */
.mobile-only-li {
    display: none;
}

/* --- Language Switcher --- */
.lang-switcher {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    padding: 8px 16px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: default;
    box-shadow: var(--shadow-sm);
    /* Adjust height to match Let's Talk button */
    height: 42px;
}

.lang-switcher a {
    color: white;
    text-decoration: none;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.lang-switcher a.active {
    font-weight: 700;
    opacity: 1;
}

.lang-switcher span {
    margin: 0 6px;
    opacity: 0.6;
    font-weight: 300;
}

.lang-switcher a:hover {
    opacity: 0.9;
}

/* --- Hero Section Refactored --- */
.hero {
    padding-top: 100px;
    padding-bottom: 60px;
    /* Reduced bottom padding */
    background: #f8f9fa;
    overflow: hidden;
}

.hero-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Desktop: 2 columns */
    gap: 40px;
    background: linear-gradient(135deg, #f1f5ff 0%, #fefeff 100%);
    border-radius: 40px;
    padding: 2rem 3rem 0 3rem;
    /* Reduced top/side padding, kept bottom 0 */
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef2f6;
    align-items: end;
    /* Align everything to the bottom of the grid */
    max-height: 550px;
    /* Force a max-height on the container to keep it compact */
    overflow: hidden;
    /* Ensure nothing spills out if we force height */
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Vertically center text in its space */
    padding-bottom: 3rem;
    /* Text needs bottom padding to not hit edge */
    padding-top: 2rem;
    /* Reduced top padding */
    z-index: 2;
    height: 100%;
    /* Fill column height */
}

.hero-image {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Align content to bottom */
    align-items: flex-end;
    /* Align image to right */
    position: relative;
    height: 100%;
    /* Fill column height */
}

.hero-man-img {
    width: auto;
    max-width: 130%;
    height: auto;
    max-height: 580px;
    /* Increased limit */
    object-fit: contain;
    object-position: bottom right;
    display: block;
    /* Absolute positioning for Desktop to prevent floating */
    position: absolute;
    bottom: -70px;
    right: -20px;
}

/* Verified/Social Badge */
.verified-badge {
    display: inline-flex;
    align-items: center;
    background: #fff;
    padding: 6px 20px 6px 6px;
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    margin-bottom: 20px;
    /* Reduced margin */
    align-self: flex-start;
}

.avatar-stack {
    display: flex;
    margin-right: 12px;
}

.avatar-stack span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #fff;
    background-size: cover;
    background-position: center;
    margin-left: -8px;
}

.avatar-stack span:first-child {
    margin-left: 0;
}

.badge-text {
    font-size: 0.85rem;
    color: var(--text-dark);
    font-weight: 500;
}

.hero-title {
    font-size: 3.5rem;
    /* Larger, bolder title */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-dark);
    text-transform: uppercase;
}

.text-highlight {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 25px;
    /* Reduced from 40px to fit helper text */
    max-width: 90%;
}

.hero-helper-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    background: var(--bg-light);
    /* Very subtle primary tint */
    border: 1px solid var(--border-color);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
    font-weight: 500;
    display: inline-block;
    /* Restore natural text flow */
    width: fit-content;
    max-width: 100%;
}

.sample-link {
    font-weight: bold;
    text-decoration: underline;
    color: #000;
    cursor: pointer;
}

.hero-cta-group {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    width: 100%;
    margin-top: 10px;
    /* Reduced from 30px to sit closer to helper text */
}

/* Subscribe Bar Styles */
.hero-subscribe-bar {
    display: flex;
    align-items: center;
    background: #fff;
    /* White background */
    border: 1px solid #eee;
    border-radius: 50px;
    /* Pill shape */
    padding: 3px 3px 3px 20px;
    /* Reduced padding */
    width: 100%;
    max-width: 380px;
    /* Compact width */
    transition: box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.hero-subscribe-bar:focus-within {
    box-shadow: 0 4px 20px rgba(106, 13, 173, 0.15);
    border-color: var(--primary-color);
}

.hero-subscribe-bar input {
    background: transparent;
    border: none;
    outline: none;
    color: #333;
    /* Dark text */
    flex-grow: 1;
    font-size: 0.95rem;
    font-family: inherit;
    min-width: 0;
    /* Prevent overflow */
}

.hero-subscribe-bar input::placeholder {
    color: var(--text-light);
}

.hero-subscribe-bar button {
    background: var(--primary-gradient);
    /* Purple gradient */
    color: white;
    border: none;
    border-radius: 30px;
    padding: 8px 20px;
    /* Smaller button */
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.hero-subscribe-bar button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(127, 86, 217, 0.3);
}

.btn-pill {
    width: auto;
    /* Desktop: Intrinsic width */
    min-width: 0;
    /* Remove chunky width */
    justify-content: center;
    border-radius: 50px;
    padding: 10px 24px;
    /* Compact padding */
    font-size: 0.95rem;
    /* Compatible text size */
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    /* Prevent text wrapping */
    height: 44px;
    /* Fix height to match subscribe bar approx */
    /* background: removed to inherit from btn-primary */
    color: white;
    border: none;
}

.arrow-icon {
    font-weight: bold;
    transition: transform 0.2s;
}

.btn-pill:hover .arrow-icon {
    transform: translateX(4px);
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(106, 13, 173, 0.1);
    padding-top: 20px;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.hero-image {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    position: relative;
    /* No overflow styling to let image breathe if needed */
}

/* Hero Visual Updates */
.hero-visual {
    position: relative;
    display: flex;
    align-items: flex-end;
    width: 100%;
    justify-content: center;
}

.hero-man-img {
    max-width: 100%;
    margin-bottom: 25px;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.avatar-group {
    display: flex;
    margin-right: 12px;
}

.pill-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #fff;
    background-size: cover;
    background-position: center;
    margin-left: -10px;
}

.pill-avatar:first-child {
    margin-left: 0;
}

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

/* Mobile Responsiveness for Hero */
/* Tablet Responsiveness (Keep 2 columns, but optimize for compact row layout) */
@media (max-width: 992px) {
    .hero-box {
        padding: 3rem 1.5rem 0 1.5rem;
        display: block;
        /* Single column for cleaner mobile/tablet view */
        align-items: center;
        gap: 0;
        /* Re-introduce max-height to keep it "inside the tab" */
        max-height: 600px;
        height: auto;
        overflow: hidden;
    }

    .hero-image {
        display: none;
    }

    .hero-title {
        font-size: 2rem;
        /* Reduce to prevent excessive wrapping */
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    /* Force Row Layout even on Tablet */
    .hero-cta-group {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        /* Ensure left align for all tablets */
        padding-left: 0;
        /* Removing potential padding */
        width: 100%;
        gap: 10px;
        flex-wrap: wrap;
    }

    .hero-subscribe-bar {
        max-width: 280px;
        /* Shrink width */
        padding: 2px 2px 2px 15px;
        height: 40px;
        flex-shrink: 1;
        /* Allow it to shrink */
    }

    .hero-subscribe-bar input {
        font-size: 0.85rem;
        width: 100px;
        /* Ensure input doesn't force width */
    }

    .hero-subscribe-bar button {
        padding: 6px 15px;
        font-size: 0.8rem;
    }

    .btn-pill {
        width: auto;
        min-width: 0 !important;
        /* Force override for all tablets */
        padding: 8px 16px;
        /* Compact padding */
        font-size: 0.85rem;
        height: 40px;
        /* Match subscribe bar height */
        flex-shrink: 0;
        margin-left: 0 !important;
        /* Prevent any auto-centering */
    }

    .hero-image {
        align-items: flex-end;
        justify-content: flex-end;
        align-self: end;
        height: 100%;
    }

    .hero-man-img {
        position: static;
        max-height: 480px;
        width: 160%;
        /* Increased to fit new narrow col */
        max-width: 160%;
        margin-right: -40px;
        margin-bottom: 0px;
    }
}

/* Mini Tablet / Narrow Window (Keep 2 columns but squeeze tightly) */
@media (max-width: 768px) and (min-width: 481px) {
    .hero-box {
        padding: 2.5rem 1.5rem 0 2rem;
        grid-template-columns: 55% 45%;
        /* Slightly more space for image overlap */
        gap: 0px;
        max-height: 580px;
        align-items: center;
    }

    .hero-title {
        font-size: 2rem;
        /* Larger for impact */
        line-height: 1.1;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 20px;
        line-height: 1.4;
    }

    /* Helper styling from mobile */
    .hero-helper-text {
        font-size: 0.8rem;
        padding: 6px 14px;
        margin-bottom: 15px;
        background: var(--bg-light);
        border: none;
        display: inline-block;
        width: auto;
        border-radius: 20px;
    }

    /* Stack the CTAs */
    .hero-cta-group {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding-left: 0;
        margin-left: 0;
        gap: 15px;
        width: 100%;
        margin-top: 5px;
    }

    .hero-subscribe-bar {
        max-width: 100%;
        width: 100%;
        /* Take available width */
        padding: 4px 4px 4px 15px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }

    .hero-subscribe-bar input {
        width: auto;
        flex-grow: 1;
        font-size: 0.9rem;
    }

    .hero-subscribe-bar button {
        padding: 8px 20px;
    }

    .btn-pill {
        min-width: 0 !important;
        width: auto;
        padding: 10px 24px;
        font-size: 0.9rem;
        height: 40px;
        margin-left: 0 !important;
        /* Match mobile vibrant style */
        background: var(--primary-gradient);
        box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.2);
        color: white;
    }



    .hero-image {
        align-items: flex-end;
        justify-content: flex-end;
        height: 100%;
        margin-bottom: 0;
    }

    .hero-man-img {
        width: 180%;
        max-width: 180%;
        max-height: 540px;
        margin-right: -50px;
        margin-bottom: 0;
    }
}

/* Mobile Responsiveness (Fluid Scaling below 480px) */
/* Mobile Responsiveness (Fluid Scaling below 480px) */
@media (max-width: 480px) {
    .hero {
        padding-top: 25vw;
        padding-bottom: 5vw;
    }

    .hero-box {
        display: block;
        position: relative;
        padding: 8vw 6vw 0 6vw;
        text-align: left;
        height: auto;
        min-height: 140vw;
        overflow: hidden;
        border-radius: 8vw;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        width: 100%;
        padding-bottom: 5vw;
        padding-top: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-title {
        font-size: 10vw;
        line-height: 1.0;
        /* Tightened */
        margin-bottom: 4vw;
        max-width: 100%;
        word-wrap: normal;
        word-break: normal;
        -webkit-hyphens: none;
        -ms-hyphens: none;
        hyphens: none;
    }

    .hero-subtitle {
        font-size: 3.8vw;
        margin-bottom: 6vw;
        max-width: 100%;
        color: #555;
        line-height: 1.5;
    }

    .hero-helper-text {
        font-size: 3.2vw;
        padding: 2.5vw 4vw;
        margin-bottom: 5vw;
        margin-top: 2vw;
        /* Added separation from subtitle */
        background: #f3e8ff;
        border: none;
        width: auto;
        max-width: 100%;
        text-align: left;
        display: inline-block;
        border-radius: 5vw;
        box-shadow: 0 1vw 2vw rgba(0, 0, 0, 0.05);
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        max-width: 100%;
        gap: 0;
        /* Gap handled by margins now */
        margin-top: 0;
    }

    .hero-subscribe-bar {
        width: 100%;
        max-width: 100%;
        padding: 1vw 1vw 1vw 4vw;
        box-shadow: 0 1vw 3vw rgba(0, 0, 0, 0.08);
        background: #fff;
        backdrop-filter: none;
        border-radius: 10vw;
        height: 11vw;
        margin-bottom: 5vw;
        /* Spacing from main CTA */
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .hero-subscribe-bar input {
        font-size: 3.5vw;
        min-width: 0;
        flex-grow: 1;
    }

    .hero-subscribe-bar button {
        padding: 0 5vw;
        font-size: 3.5vw;
        height: 100%;
        border-radius: 10vw;
    }

    .btn-pill {
        width: 100%;
        justify-content: center;
        margin-top: 0;
        /* Margin handled by subscribe bar */
        background: var(--primary-gradient);
        font-size: 3.5vw;
        padding: 3.5vw 5vw;
        height: auto;
        border-radius: 10vw;
    }

    .hero-image {
        display: none;
    }

    .hero-man-img {
        max-height: none;
        height: auto;
        width: 100%;
        margin: 0;
        position: static;
        display: block;
    }

    #video-widget {
        bottom: 20px !important;
        right: 20px !important;
        transform: scale(0.8) !important;
        transform-origin: bottom right;
    }
}


@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.glass-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 20px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 15px;
    width: 280px;
    animation: popIn 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes popIn {
    0% {
        transform: translate(-50%, -40%) scale(0.9);
        opacity: 0;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

.card-icon {
    font-size: 2rem;
    background: #f0f0f0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.card-text strong {
    display: block;
    color: var(--primary-dark);
}

.card-text span {
    font-size: 0.8rem;
    color: var(--text-light);
}

.wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.wave-bottom .shape-fill {
    fill: #FFFFFF;
}

/* --- Intro Section --- */
.intro-section {
    text-align: center;
    padding: 80px 0;
}

.section-tag {
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.section-heading-sm {
    font-size: 2rem;
    margin-bottom: 20px;
}

.section-desc {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-light);
}

/* --- Process Section (Cards) --- */
.process-section {
    background: var(--bg-light);
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-subtitle {
    color: var(--text-light);
    margin-bottom: 60px;
}

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

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.process-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 6rem;
    font-weight: 900;
    color: rgba(106, 13, 173, 0.05);
    z-index: 0;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(157, 70, 255, 0.1);
    color: var(--primary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.icon-box svg {
    width: 30px;
    height: 30px;
}

.process-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.process-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* --- Security Section --- */
.security-section {
    padding: 100px 0;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px;
    border-radius: var(--radius-md);
    background: #fff;
    border: 1px solid #eee;
    transition: 0.3s;
}

.feature-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-sm);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* --- CTA Section --- */
.cta-section {
    padding: 80px 0;
    background: var(--primary-gradient);
    color: var(--text-white);
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* --- Footer --- */
/* --- Footer --- */
.footer {
    background: var(--bg-light);
    color: var(--text-light);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 40px;
}

.footer-logo {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 15px;
    white-space: nowrap;
}

.footer-col h4 {
    color: var(--text-dark);
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-light);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

/* --- Mobile Responsiveness --- */
/* --- Mobile Responsiveness --- */
@media (max-width: 992px) {

    /* Tablet/Smaller Laptops */
    /* Hero styles moved to upper block */

    .nav-center {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        /* Align top instead of center */
        padding-top: 120px;
        /* Space from top */
        align-items: center;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
    }

    /* Active Link Mobile Style */
    .nav-link.active {
        color: var(--primary-color);
        background: rgba(106, 13, 173, 0.05);
        padding: 10px 25px;
        border-radius: 50px;
        font-weight: 700;
    }

    .nav-center.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 30px;
    }

    .header-right {
        gap: 10px;
        /* Reduce gap on mobile */
    }

    .lang-switcher {
        padding: 0 16px;
        /* Compact padding */
        font-size: 0.9rem;
        height: 48px;
        /* Minimum touch target */
        display: flex;
        align-items: center;
    }

    .mobile-only-li {
        display: block;
    }

    .header-right .nav-cta {
        display: none;
        /* Hide top CTA on mobile, maybe add inside menu? User didn't specify, but often this is done. OR keep it visible.*/
        /* Let's Keep Mobile Toggle Visible */
    }

    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 48px;
        /* Touch target size */
        height: 48px;
        /* Touch target size */
        display: flex;
        align-items: center;
        /* Center lines */
        padding: 12px;
        /* Pad content */
        box-sizing: border-box;
        cursor: pointer;
        z-index: 1100;
        margin-right: -10px;
        /* Offset padding visual */
    }

    .mobile-menu-toggle span {
        display: block;
        width: 100%;
        height: 3px;
        background: var(--text-dark);
        border-radius: 2px;
        transition: all 0.3s ease;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .btn-pill {
        width: 100%;
        justify-content: center;
    }
}

/* Hamburger Animation */
.mobile-menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* --- Sub-Page Styles --- */
.page-header {
    padding: 120px 0 80px;
    background: linear-gradient(180deg, #fdfbfd 0%, #f4eaff 100%);
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

/* Text Content Pages (Legal, Security detailed) */
.text-content-section {
    padding: 60px 0;
}

.text-content h2 {
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.text-content h3 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #333;
}

.text-content h4 {
    font-size: 1.2rem;
    margin-top: 25px;
    margin-bottom: 10px;
    font-weight: 600;
}

.text-content p {
    margin-bottom: 15px;
    color: #444;
}

.text-content ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #444;
}

/* Team Grid (Philosophy) */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.team-card {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid #f0f0f0;
    transition: 0.3s;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #eee;
    margin: 0 auto 20px;
    object-fit: cover;
}

.team-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

/* Blog Grid & Slider */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Slider Implementation */
.blog-slider {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding-bottom: 30px;
    /* Space for scrollbar */
    scroll-snap-type: x mandatory;
    margin-top: 50px;
    -webkit-overflow-scrolling: touch;
    /* Smooth scroll on iOS */
    scrollbar-width: thin;
    /* Firefox */
    scrollbar-color: var(--primary-color) #eee;
}

.blog-slider::-webkit-scrollbar {
    height: 8px;
}

.blog-slider::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.blog-slider::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.blog-slider .blog-card {
    min-width: 300px;
    max-width: 350px;
    flex: 0 0 auto;
    scroll-snap-align: start;
}

.blog-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: 0.3s;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.blog-image {
    width: 100%;
    height: 200px;
    background: #e0e0e0;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.blog-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-link {
    margin-top: auto;
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.blog-link:hover {
    gap: 8px;
}

/* Contact Form */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info-box {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.info-item {
    margin-bottom: 25px;
}

.info-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 5px;
    font-weight: 500;
}

@media (max-width: 768px) {

    .page-header,
    .section-header,
    .text-center {
        text-align: left !important;
    }

    .page-subtitle {
        margin-left: 0;
        margin-right: 0;
    }

    .guarantee-box {
        text-align: left;
        padding: 30px 20px;
    }
}



.info-label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--primary-dark);
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(106, 13, 173, 0.1);
}

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

/* --- Video Widget --- */
/* --- Video Widget --- */
.video-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    /* Moved to Right */
    width: 240px;
    /* Slightly wider */
    height: 380px;
    /* Taller for portrait video */
    border-radius: 12px;
    /* Slightly sharper corners */
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    background: #000;
    /* Black background for letterboxing if needed */
    transition: transform 0.3s ease, opacity 0.3s ease;
    cursor: default;
    /* Default cursor, pointer on controls */
    animation: slideUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }

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

.video-widget video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Cover usually looks better, but user said 'full dimension'. If cover cuts off too much, we use contain. But for 'aesthetic', cover is better. I will stick to cover but optimize dimensions for likely portrait. */
    display: block;
}

.close-video-btn {
    position: absolute;
    top: 10px;
    left: 10px;
    /* Left side for close, usually convenient if controls are right */
    width: 28px;
    height: 28px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    backdrop-filter: blur(4px);
    transition: background 0.2s;
}

.close-video-btn:hover {
    background: rgba(200, 0, 0, 0.8);
}

.sound-toggle-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: background 0.3s;
    color: white;
    z-index: 10;
}

.sound-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.sound-toggle-btn svg {
    width: 20px;
    height: 20px;
}

/* Mobile: Hide or make smaller? Usually widget is annoying on mobile. */
@media (max-width: 768px) {
    .video-widget {
        width: 140px;
        height: 220px;
        bottom: 20px;
        /* Move closer to bottom */
        right: 20px;
    }

    .close-video-btn {
        width: 48px;
        height: 48px;
        font-size: 18px;
        background: rgba(0, 0, 0, 0.7);
        /* Slightly darker for visibility */
    }

    .sound-toggle-btn {
        width: 48px;
        height: 48px;
        transform: translateY(0);
    }
}

/* --- Cookie Banner --- */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 320px;
    background: #111;
    color: #fff;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    font-size: 0.9rem;
    border: 1px solid #333;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.5s ease 1s forwards;
}

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

.cookie-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-align: center;
}

.cookie-text {
    font-size: 0.85rem;
    color: #ccc;
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: center;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.btn-cookie {
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    flex: 1;
    text-align: center;
    display: inline-block;
}

.btn-cookie-outline {
    background: transparent;
    border: 1px solid #444;
    color: #eee;
}

.btn-cookie-outline:hover {
    border-color: #666;
    background: #222;
}

.btn-cookie-primary {
    background: #7F56D9;
    /* Matching the purple in image */
    border: none;
    color: white;
}

.btn-cookie-primary:hover {
    background: #6a0dad;
}

@media (max-width: 480px) {
    .cookie-banner {
        left: 5%;
        width: 90%;
        bottom: 20px;
        padding: 20px;
    }
}

/* --- Trademark Symbol --- */
.tm-symbol {
    font-size: 0.4em;
    vertical-align: top;
    position: relative;
    top: -0.2em;
    /* Fine tune position */
    color: #000 !important;
    -webkit-text-fill-color: #000 !important;
    margin-left: 1px;
    font-weight: 700;
    /* Match Boldness in image */
    text-transform: uppercase;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
}

/* =========================================
   FIX: Localization & Mobile Alignment
   Apply to style.css to sync EN/DE Layouts
   ========================================= */

/* 1. Global Typography for Long Words */
html {
    overflow-x: hidden;
    /* Prevent horiz. scroll from long words */
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
button {
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    /* Break long German words automatically */
    overflow-wrap: break-word;
    /* Ensure text doesn't flow out of containers */
}

/* 2. Header Container Logic */
.header-container {
    /* Use gap instead of margins for better flow */
    gap: 1rem;
    flex-wrap: nowrap;
    /* Prevent wrapping on desktop, force shrink/collapse */
}

/* 3. Navigation Layout - Robust for Variable Lengths */
.nav-list {
    gap: clamp(15px, 3vw, 40px);
    /* Fluid gap: shrinks on narrower screens (tablets) */
    margin-inline-end: auto;
    /* Logical property for right margin */
    margin-inline-start: auto;
    /* Center the nav block logically */
    white-space: nowrap;
    /* Prevent nav links from breaking onto new lines */
}

/* 4. Mobile Menu Alignment (< 992px - Tablet/Mobile) */
@media (max-width: 991px) {
    .header-container {
        padding-inline: 15px;
        /* Consistent padding */
    }

    .nav-center {
        /* On mobile, this usually hides or moves to hamburger menu */
        /* Ensure it doesn't take up layout space if visible but collapsed */
        order: 3;
        /* Move visual order if using flex-wrap */
    }

    .logo {
        font-size: clamp(1.4rem, 4vw, 1.8rem);
        /* Shrink logo slightly on tiny phones */
        z-index: 1100;
        /* Ensure above overlay */
    }

    /* Fix Right Side Grouping */
    .header-right {
        gap: 10px;
        /* Tighter gap for mobile */
    }

    .nav-cta.btn-primary {
        /* Hide text on very small screens if needed, or adjust padding */
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

/* 5. Extreme Mobile (< 480px) */
@media (max-width: 480px) {
    .lang-switcher {
        /* Compact Switcher for small screens */
        padding: 6px 10px;
        font-size: 0.75rem;
        height: 36px;
    }

    .lang-switcher span {
        margin: 0 4px;
        /* Tighter separator */
    }

    .nav-cta {
        display: none;
        /* Often better to hide the big CTA button on tiny screens in favor of the menu link */
    }
}

/* --- Bento Grid Layout --- */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(180px, auto);
    gap: 20px;
    margin-top: 40px;
}

.bento-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.bento-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(112, 0, 255, 0.15);
    transform: translateY(-4px);
}

.bento-card h3 {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.bento-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.bento-card .icon-header {
    font-size: 1.5rem;
    color: var(--text-accent);
    margin-bottom: 15px;
}

/* Card Sizes */
.span-4 {
    grid-column: span 4;
}

.span-6 {
    grid-column: span 6;
}

.span-8 {
    grid-column: span 8;
}

.span-12 {
    grid-column: span 12;
}

.row-span-2 {
    grid-row: span 2;
}

@media (max-width: 992px) {

    .span-4,
    .span-6,
    .span-8 {
        grid-column: span 6;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        display: flex;
        flex-direction: column;
    }

    .span-4,
    .span-6,
    .span-8,
    .span-12 {
        width: 100%;
    }
}


/* --- Typography Updates --- */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.section-title {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.section-subtitle {
    font-family: var(--font-mono);
    color: var(--text-accent);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}


/* --- Light Mode Component Overrides for New Sections --- */

/* Header */
.header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #f0f0f0;
}

.nav-link {
    color: var(--text-secondary);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.logo {
    color: var(--text-primary);
    background: none;
    -webkit-text-fill-color: initial;
}

.tm-symbol {
    font-family: var(--font-mono);
    color: var(--primary-color);
    opacity: 0.7;
}

/* Hero */
.hero {
    background: var(--bg-color);
}

.hero-box {
    background: #ffffff;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

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

.hero-subtitle {
    color: var(--text-secondary);
}

.hero-helper-text {
    background: #f5f5f7;
    border: 1px solid #e5e5ea;
    color: var(--text-secondary);
}

.hero-subscribe-bar {
    background: #ffffff;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.hero-subscribe-bar input {
    color: var(--text-primary);
}

.hero-subscribe-bar input::placeholder {
    color: #999;
}

/* Buttons */
.btn-primary {
    background: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(112, 0, 255, 0.2);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(112, 0, 255, 0.3);
}

.btn-white {
    background: #ffffff;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.btn-white:hover {
    background: #f9f9f9;
    border-color: var(--text-primary);
}

/* Bento Cards */
.bento-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.bento-card:hover {
    border-color: var(--primary-light);
    box-shadow: 0 10px 30px rgba(112, 0, 255, 0.1);
}

.bento-card h3 {
    color: var(--text-primary);
}

.bento-card .icon-header {
    color: var(--primary-color);
}

/* Section Titles */
.section-title {
    background: none;
    -webkit-text-fill-color: initial;
    color: var(--text-primary);
}

/* Footer */
.footer {
    background: #f9f9fb;
    border-top: 1px solid var(--border-color);
}

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

.footer ul li a {
    color: var(--text-secondary);
}

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

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

/* --- ROI Calculator Styles --- */
.roi-calculator-container {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin-top: 40px;
}

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

.roi-header h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.roi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

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

/* Inputs */
.roi-inputs {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.input-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--text-primary);
}

.slider-container {
    position: relative;
    width: 100%;
}

.roi-range {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: #e0e0e0;
    border-radius: 5px;
    outline: none;
    transition: background 0.3s;
}

.roi-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(112, 0, 255, 0.4);
    transition: transform 0.1s;
}

.roi-range::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.range-value {
    margin-top: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-family: var(--font-mono);
}

/* Results / Chart */
.roi-results {
    background: var(--bg-light);
    padding: 25px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.chart-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.chart-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.chart-label {
    width: 100px;
    font-size: 0.9rem;
    font-weight: 600;
}

.chart-bar-container {
    flex-grow: 1;
    background: #e0e0e0;
    height: 12px;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.chart-bar {
    height: 100%;
    border-radius: 6px;
    width: 0%;
    transition: width 1s cubic-bezier(0.22, 1, 0.36, 1);
    /* Framer Motion-like easing */
}

.bar-local {
    background: #999;
}

.bar-niogod {
    background: var(--primary-color);
}

.chart-value {
    width: 80px;
    text-align: right;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    font-weight: 600;
}

.savings-display {
    text-align: center;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.savings-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    margin-bottom: 5px;
}

.savings-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-mono);
    display: block;
}

.savings-sub {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Feature Toggles */
.hidden-costs-toggle {
    margin-top: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    color: var(--primary-color);
    text-decoration: underline;
}

.compliance-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e6fcf5;
    color: #0ca678;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 10px;
}