:root {
    --bg: #0f1726;
    --bg-soft: #131e33;
    --surface: #f5f8fd;
    --surface-alt: #e9eff8;
    --panel-dark: #1b2942;
    --text-dark: #0f1726;
    --text-light: #e9f2ff;
    --muted-dark: #54647d;
    --muted-light: #a8b7cf;
    --accent-a: #19d9ff;
    --accent-a-hover: #0fb9d9;
    --accent-b: #c57a3c;
    --radius: 16px;
    --btn-height: 52px;
    --shadow: 0 18px 40px rgba(5, 13, 27, 0.22);
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--text-dark);
    background: radial-gradient(circle at 80% 15%, rgba(25, 217, 255, 0.14), transparent 34%),
    radial-gradient(circle at 20% 90%, rgba(197, 122, 60, 0.16), transparent 40%),
    linear-gradient(145deg, #0c1524, #111b2d 45%, #15243d);
    font-size: 18px;
    line-height: 1.68;
    padding-top: 82px;
}

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

a:hover {
    text-decoration: underline;
}

.container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding-inline: 24px;
}

.section {
    padding: 92px 0;
    position: relative;
    overflow: hidden;
}

.section h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.5rem);
    margin-bottom: 14px;
    margin-top: 0;
}

.section-intro {
    max-width: 800px;
    color: inherit;
    opacity: 0.9;
    margin-bottom: 30px;
}

p, li, label, .faq-a, .modal-content, footer {
    font-size: 18px;
    line-height: 1.68;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(16, 32, 58, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.75);
    border-bottom: 1px solid rgba(168, 183, 207, 0.25);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 82px;
}

.brand {
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.2px;
}

nav ul {
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (max-width: 1200px) {
    nav ul li {
        line-height: 1.2;
    }
    nav ul {
        gap: 15px;
    }
}

nav a {
    color: #dce8ff;
    font-weight: 500;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn, .lang-pill {
    height: var(--btn-height);
    padding: 0 20px;
    border-radius: 14px;
    border: 1px solid transparent;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: var(--accent-a);
    color: #04202a;
    box-shadow: 0 8px 24px rgba(25, 217, 255, 0.35);
}

.btn-primary:hover {
    background: var(--accent-a-hover);
    text-decoration: none;
}

.btn-primary:focus-visible, .lang-pill:focus-visible, input:focus-visible, .icon-btn:focus-visible {
    outline: 3px solid rgba(25, 217, 255, 0.5);
    outline-offset: 2px;
}

.lang-wrap {
    position: relative;
}

.lang-pill {
    /*width: 230px;*/
    background: rgba(255, 255, 255, 0.08);
    color: #eef5ff;
    border-color: rgba(168, 183, 207, 0.35);
    min-width: 132px;
    cursor: pointer;
}

.lang-menu {
    position: absolute;
    right: 0;
    width: 230px;
    z-index: 1000;
    -webkit-backdrop-filter: blur(10px);
    padding: 8px;
    opacity: 0;
    pointer-events: none;
    top: 100%;
    transform: translateY(8px) scale(0.98);
    visibility: hidden;
    transition: opacity .2s ease,
    transform .2s ease,
    visibility .2s ease;
    transform-origin: top right;
    backdrop-filter: blur(12px);
    background: rgba(16, 32, 58, 0.85);
    border: 1px solid rgba(168, 183, 207, 0.25);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
}

.lang-menu a {
    display: flex;
    align-items: center;
    color: #e8f1ff;
    padding: 10px 12px;
    border-radius: 10px;
    gap: 8px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .2s ease,
    transform .2s ease;
}

.lang-menu a:hover {
    background: rgba(25, 217, 255, 0.12);
    text-decoration: none;
}

.lang-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    visibility: visible;
}

.lang-menu.open a {
    opacity: 1;
    transform: translateY(0);
}

.lang-menu.open a:nth-child(1) {
    transition-delay: .03s;
}

.lang-menu.open a:nth-child(2) {
    transition-delay: .06s;
}

.lang-menu.open a:nth-child(3) {
    transition-delay: .09s;
}

.lang-menu.open a:nth-child(4) {
    transition-delay: .12s;
}

.lang-menu.open a:nth-child(5) {
    transition-delay: .15s;
}

.lang-menu.open a:nth-child(6) {
    transition-delay: .18s;
}

.lang-menu.open a:nth-child(7) {
    transition-delay: .21s;
}

.lang-menu.open a:nth-child(8) {
    transition-delay: .24s;
}

.lang-menu.open a:nth-child(9) {
    transition-delay: .27s;
}

.lang-menu.open a:nth-child(10) {
    transition-delay: .30s;
}

.flag {
    width: 22px;
    height: 16px;
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    flex: 0 0 auto;
}

.hero {
    color: var(--text-light);
    padding-top: 74px;
}

.hero-grid {
    display: grid;
    gap: 28px;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.9rem);
    line-height: 1.05;
    margin: 0 0 14px;
}

.hero p {
    margin: 0 0 12px;
    color: #d7e4fb;
}

.glass-panel {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
    border: 1px solid rgba(185, 203, 232, 0.4);
    border-radius: 18px;
    padding: 20px;
    box-shadow: var(--shadow);
}

.performance {
    margin-top: 20px;
    background: rgba(12, 24, 41, 0.88);
}

.perf-head {
    font-size: 1rem;
    margin-bottom: 14px;
    color: #f2f7ff;
}

.perf-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.perf-item {
    background: linear-gradient(180deg, rgba(25, 217, 255, 0.1), rgba(197, 122, 60, 0.08));
    border-radius: 14px;
    padding: 16px;
    border: 1px solid rgba(168, 183, 207, 0.35);
}

.perf-num {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #fff;
}

.perf-label {
    color: #cfdbef;
    font-size: 0.9rem;
}

.perf-note {
    margin-top: 10px;
    font-size: 0.82rem;
    opacity: 0.78;
}

.form-card {
    background: #f5f8fd;
    color: var(--text-dark);
    border-radius: 18px;
    padding: 24px;
    box-shadow: var(--shadow);
}

.form-card h3 {
    margin-top: 0;
    margin-bottom: 8px;
}

.form-note {
    color: #45566f;
    margin-bottom: 14px;
}

.stack {
    display: grid;
    gap: 12px;
}

label {
    display: grid;
    gap: 6px;
    font-weight: 600;
    color: #21324e;
}

input {
    width: 100%;
    height: 48px;
    border: 1px solid #b8c8df;
    border-radius: 10px;
    padding: 0 12px;
    font-size: 16px;
}

.trust {
    margin-top: 10px;
    color: #52637e;
    font-size: 0.9rem;
}

.light {
    background: linear-gradient(180deg, var(--surface), var(--surface-alt));
    color: var(--text-dark);
}

.dark {
    background: linear-gradient(150deg, #0f1b31, #172845);
    color: var(--text-light);
}

.neutral {
    background: #edf2fa;
    color: var(--text-dark);
}

.kpi-grid, .card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.kpi, .card, .visual-card {
    min-width: 0;
    max-width: 100%;
    border-radius: 14px;
    padding: 18px;
    border: 1px solid rgba(77, 95, 124, 0.25);
}

.kpi {
    background: #fff;
    box-shadow: 0 10px 20px rgba(20, 30, 44, 0.08);
}

.kpi strong {
    display: block;
    font-size: 2rem;
    color: #0d274a;
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    align-items: start;
}

.visual-card {
    background: #fdfefe;
    box-shadow: 0 10px 20px rgba(20, 30, 44, 0.08);
}

.segment-bar {
    display: flex;
    border-radius: 12px;
    overflow: hidden;
    min-height: 22px;
    margin-bottom: 8px;
}

.seg-a {
    background: #19d9ff;
    width: 36%
}

.seg-b {
    background: #7ed957;
    width: 24%
}

.seg-c {
    background: #c57a3c;
    width: 22%
}

.seg-d {
    background: #425b80;
    width: 18%
}

.legend {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    font-size: 0.95rem;
}

.compare .row {
    margin-bottom: 10px;
}

.track {
    background: #dce6f5;
    border-radius: 999px;
    height: 14px;
    overflow: hidden;
    position: relative;
}

.fill-a {
    width: 72%;
    background: #19d9ff;
    height: 100%;
}

.fill-b {
    width: 49%;
    background: #8da4c4;
    height: 100%;
}

.marker {
    position: absolute;
    left: 58%;
    top: -3px;
    bottom: -3px;
    width: 2px;
    background: #c57a3c;
}

.timeline {
    border-left: 3px solid rgba(25, 217, 255, 0.45);
    padding-left: 18px;
    display: grid;
    gap: 14px;
}

.timeline .step {
    position: relative;
    min-width: 0;
}

.timeline .step::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent-a);
}

.rings {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.ring {
    background: #fff;
    border-radius: 14px;
    padding: 16px;
    text-align: center;
}

.ring svg {
    width: 90px;
    height: 90px;
}

.waterfall {
    display: grid;
    gap: 10px;
}

.water {
    display: grid;
    grid-template-columns: 150px 1fr 70px;
    gap: 10px;
    align-items: center;
}

.bar {
    background: linear-gradient(90deg, #e0e8f5, #d0dbee);
    border-radius: 8px;
    height: 14px;
    position: relative;
}

.bar span {
    position: absolute;
    inset: 0 auto 0 0;
    background: linear-gradient(90deg, #19d9ff, #0ea7ca);
    border-radius: 8px;
}

.matrix {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.matrix div {
    border-radius: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(185, 203, 232, 0.2);
}

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

.review {
    background: #fff;
    border-radius: 14px;
    padding: 18px;
    border: 1px solid #c9d6ea;
    box-shadow: 0 10px 20px rgba(20, 30, 44, 0.08);
}

.review-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #d7e8ff;
    color: #1b2f54;
    display: grid;
    place-items: center;
    font-weight: 700;
}

.verified {
    margin-left: auto;
    font-size: 0.78rem;
    font-weight: 700;
    color: #1a7d46;
}

.faq-item {
    border-bottom: 1px solid rgba(133, 151, 177, 0.45);
}

.faq-q {
    width: 100%;
    text-align: left;
    border: 0;
    background: transparent;
    padding: 18px 0;
    color: inherit;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, opacity .25s ease;
    opacity: 0;
}

.faq-item.open .faq-a {
    max-height: 300px;
    opacity: 1;
    padding-bottom: 14px;
}

.footer {
    background: #0c1523;
    color: #c8d5e9;
    padding: 32px 0;
}

.footer a {
    color: #9fdffc;
}

.mobile-toggle, .drawer {
    display: none;
}

.icon-btn {
    height: var(--btn-height);
    width: var(--btn-height);
    border-radius: 14px;
    border: 1px solid rgba(168, 183, 207, 0.35);
    background: rgba(255, 255, 255, 0.08);
    color: #e9f2ff;
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(5, 10, 18, 0.65);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1200;
}

.modal-backdrop.open {
    display: flex;
}

.modal {
    width: min(900px, 92vw);
    max-height: 88vh;
    overflow: auto;
    background: #f6f9ff;
    color: #0f1726;
    border-radius: 16px;
}

.modal-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid #c7d6eb;
    position: sticky;
    top: 0;
    z-index: 5000;
    background-color: #ffffff;
    background: rgba(250, 250, 250, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: -15px 0 15px rgba(0, 0, 0, 0.2);
}

.modal-content {
    padding: 20px;
}

.modal-foot {
    display: flex;
    justify-content: flex-start;
    position: sticky;
    bottom: 0;
    z-index: 5000;
    padding: 18px 20px;
    background-color: #ffffff;
    background: rgba(250, 250, 250, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 15px 0 15px rgba(0, 0, 0, 0.2);
}

body.lock {
    overflow: hidden;
}

@media (max-width: 1090px) {
    nav {
        display: none;
    }

    .mobile-toggle {
        display: flow;
        font-size: 30px;
    }

    .header-actions .lang-wrap, .header-actions > .btn-primary {
        /*display: none;*/
    }

    .hero-grid, .split {
        grid-template-columns: 1fr;
    }

    .drawer {
        display: block;
        position: fixed;
        inset: 0;
        pointer-events: none;
        z-index: 1100;
    }

    .drawer-bg {
        position: absolute;
        inset: 0;
        background: rgba(5, 11, 21, 0.7);
        opacity: 0;
        transition: opacity .3s;
    }

    .drawer-panel {
        position: absolute;
        right: 0;
        top: 0;
        width: min(270px, 88vw);
        height: 100%;
        background: rgba(16, 32, 58, 0.6);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        color: #e9f2ff;
        padding: 20px;
        transform: translateX(100%);
        transition: transform .35s ease;
        overflow: auto;
    }

    .drawer.open .drawer-panel {
        transform: translateX(0);
    }

    [data-drawer-bg] {
        opacity: 0;
        transition: opacity .25s ease;
    }

    .drawer.open [data-drawer-bg] {
        opacity: 1;
    }

    .drawer.open {
        pointer-events: auto;
    }

    .drawer.open .drawer-bg {
        opacity: 1;
    }

    .drawer.open .drawer-panel {
        transform: translateX(0);
    }

    .drawer nav {
        display: block;
    }

    .drawer nav ul {
        display: grid;
        gap: 12px;
        text-align: center;
    }

    .drawer .lang-wrap {
        margin: 16px 0;
    }

    .drawer .lang-menu {
        position: static;
        margin-top: 8px;
    }
}


.form-card {
    color: var(--text-dark);
}

.form-card p {
    color: #45566f;
}

.form-card label {
    color: #21324e;
}

.form-card .trust {
    color: #52637e;
}

.modal {
    -ms-overflow-style: none;
    scrollbar-width: none;
    overflow-y: scroll;
}

.modal::-webkit-scrollbar {
    display: none;
}

@media (max-width: 425px) {
    .matrix {
        display: grid;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 450px) {
    .perf-split {
        display: grid;
        grid-template-columns: 1fr;
    }
    .performance {
        text-align: center;
    }
}

.rings {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.ring {
    text-align: center;
    width: 220px;
    box-shadow: 0 10px 20px rgba(20, 30, 44, 0.08);
}

.ring small {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.3;
}

.progress-ring {
    width: 140px;
    height: 140px;
    margin: 0 auto 12px;
}

.progress-ring .progress {
    fill: none;
    stroke-linecap: round;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
    transition: stroke-dasharray 1.2s ease-out;
}

.ring strong {
    font-size: 2.2rem;
    font-weight: 700;
    color: #000;
}

.ring p {
    font-size: 0.95rem;
    color: #555;
    margin-top: 8px;
}

@media (max-width: 374px) {
    .h1-de-mb {
        font-size: 28px !important;
    }
    .h1-be-mb {
        font-size: 28px !important;
    }
    .h3-de-mb {
        font-size: 18px !important;
    }
}

@media (max-width: 425px) {
    .de-mb-water {
        display: grid;
        grid-template-columns: 110px 1fr 40px;
        gap: 10px;
        align-items: center;
        font-size: 14px;
        margin-top: 5px;
    }
    .water-fr-mb {
        display: grid;
        grid-template-columns: 110px 1fr 40px;
        gap: 10px;
        align-items: center;
        font-size: 14px;
        margin-top: 5px;
    }
    .water-es-mb {
        display: grid;
        grid-template-columns: 110px 1fr 40px;
        gap: 10px;
        align-items: center;
        font-size: 14px;
        margin-top: 5px;
    }
    .water-it-mb {
        display: grid;
        grid-template-columns: 110px 1fr 40px;
        gap: 10px;
        align-items: center;
        font-size: 14px;
        margin-top: 5px;
    }
    .water-tr-mb {
        display: grid;
        grid-template-columns: 110px 1fr 40px;
        gap: 10px;
        align-items: center;
        font-size: 14px;
        margin-top: 5px;
    }
    .water-pt-mb {
        display: grid;
        grid-template-columns: 110px 1fr 40px;
        gap: 10px;
        align-items: center;
        font-size: 14px;
        margin-top: 5px;
    }
    .water-jp-mb {
        display: grid;
        grid-template-columns: 110px 1fr 40px;
        gap: 10px;
        align-items: center;
        font-size: 14px;
        margin-top: 5px;
    }
    .water-ck-mb {
        display: grid;
        grid-template-columns: 110px 1fr 40px;
        gap: 10px;
        align-items: center;
        font-size: 14px;
        margin-top: 5px;
    }
    .water-be-mb {
        display: grid;
        grid-template-columns: 110px 1fr 40px;
        gap: 10px;
        align-items: center;
        font-size: 14px;
        margin-top: 5px;
    }
    .waterfall-de-mb {
        margin-top: 15px;
    }
}

.logo-header {
    width: 145px;
}

@media  (max-width: 1023px) {
    .logo-header {
        width: 195px;
    }
}

.custom_btn {
    margin-top: 18px;
}


.input-box {
    position: relative;
}


.button-box {
    position: relative;
}

.input-box label {
    display: block;
    margin-bottom: 6px;
}

.brand {
    display: flex;
    align-items: center;
}

.logo-desktop {
    display: block;
    height: 28px;
    width: auto;
}

.logo-mobile {
    display: none;
    height: 38px;
    width: auto;
}

@media (max-width: 768px) {
    .logo-desktop {
        display: none;
    }
    .logo-mobile {
        display: block;
    }
}

@media (max-width: 585px) {
    .logo-mobile {
        height: 32px;
    }
}

@media (max-width: 425px) {
    .lang-pill-de {
        font-size: 11px !important;
    }
    .lang-pill {
        font-size: 13px;
    }
    .btn-header-mb {
        font-size: 13px;
    }
    .btn-header-mb-de {
        font-size: 11px;
    }
    .btn-header-mb-sk {
        font-size: 11px;
    }
    .lang-pill-sk {
        font-size: 11px;
    }
    .btn-header-mb-nl {
        font-size: 11px;
    }
    .lang-pill-nl {
        font-size: 11px;
    }
}

@media (max-width: 375px) {
    .btn-header-mb-ja {
        font-size: 9px !important;
    }
    .logo-mobile {
        display: none;
    }
    .lang-pill {
        min-width: 107px;
    }
}

