﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --kt-primary: #6083b7;
    --kt-primaryHover: #406195;
    --kt-secondary: #fffef7;
    --kt-bg: #fff;
    --kt-white: #ffffff;
    --kt-black: #000;
    --kt-dark: #212529;
    --kt-border: #5e5e6a;
    --kt-accent: #a4d5eb;
    --kt-textAccent: #708ebc;
    --light: #f8f9fa;
    --kt-font-xl: 3.75rem;
    --kt-font-lg: 2.8rem;
    --kt-font-rg: 1.75rem;
    --kt-font-md: 1.2rem;
    --kt-font-sm: 1rem;
}

html,
body {
    font-family: 'Mulish', Helvetica, Arial, sans-serif;
    background: var(--kt-bg);
}

.text-primary {
    color: var(--kt-primary) !important;
}

.ktDarkText {
    color: var(--kt-dark);
}

.ktBigText {
    font-size: var(--kt-font-lg);
}

.ktRegularText {
    font-size: var(--kt-font-rg);
}

.ktMediumText {
    font-size: var(--kt-font-md);
}

.ktSmallText {
    font-size: var(--kt-font-sm);
}

.btn {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

.card {
    --bs-card-border-color: var(--kt-textAccent);
}

.card-header {
    background-color: var(--light);
    border-bottom: var(--bs-card-border-width) solid var(--kt-textAccent);
}

.card-body-contents {
    padding: 0;
    color: var(--bs-card-color);
}

.link-primary {
    color: var(--kt-textAccent) !important;
}

.ktMainBox {
    background-color: var(--kt-white);
    border-radius: 15px;
    box-shadow: 0 4px 14.5px 0 rgba(0, 0, 0, 0.15);
    padding: 48px;
}

.ktListBox {
    background-color: var(--kt-white);
    border-radius: 15px;
    box-shadow: 0 4px 14.5px 0 rgba(0, 0, 0, 0.15);
    padding: 24px;
}

.ktTocBtn {
    border-radius: 0 !important;
    border-bottom: 1px solid var(--kt-textAccent);
}

.btn-outline-info {
    border-top: 1px solid var(--kt-textAccent) !important;
    border-right: 1px solid var(--kt-textAccent) !important;
    border-left: 1px solid var(--kt-textAccent) !important;
    border-bottom: 1px solid var(--kt-textAccent) !important;
}

.btn-outline-info {
    background-color: var(--kt-primaryHover);
    color: var(--kt-white);
}

    .btn-outline-info:hover {
        background-color: var(--kt-primary);
        color: var(--kt-white);
        border: 1px solid var(--kt-white) !important;
    }

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0 var(--kt-white), 0 0 0 0 var(--kt-primary) !important;
}

.card-body-contents {
    scrollbar-width: thin;
    scrollbar-color: var(--kt-primaryHover, #b9bfc7) transparent;
}

.ktStickyToc {
    position: sticky;
    top: 1rem;
    align-self: flex-start;
}

a,
.btn-link {
    color: #006bb7;
}

.btn-primary {
    color: var(--kt-white);
    background-color: var(--kt-primary);
    border-color: var(--kt-primary);
    font-weight: bold;
    font-size: 1rem;
    border-radius: 15px;
}

    .btn-primary:hover {
        background-color: var(--kt-primaryHover);
    }

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.1rem var(--kt-white), 0 0 0 0.25rem var(--kt-primary);
}

.btn-outline-secondary {
    background-color: var(--kt-white);
    border: 2px solid var(--kt-border);
    color: var(--kt-border);
    font-weight: bold;
    font-size: 1rem;
    border-radius: 15px;
}

    .btn-outline-secondary:hover {
        background-color: var(--kt-border);
    }

h1:focus {
    outline: none;
}

.ktImg {
    width: 100%;
    height: 100%;
    max-width: 400px;
    max-height: 400px;
    min-width: 400px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- HERO (top) --- */
.ktTop {
    margin-top: 5rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    background-image: url('images/tlo.png');
    background-size: cover;
    background-position: left;
    min-height: 530px;
    overflow: hidden;
}

    .ktTop::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100px;
        height: 100%;
        background: linear-gradient( to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.7) 40%, rgba(255, 255, 255, 0) 100% );
        pointer-events: none;
    }

    .ktTop::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 20px;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
        pointer-events: none;
    }

.ktContainerBtns {
    width: 100%;
    max-width: 260px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: stretch;
    justify-content: center;
}

.ktLogoWrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ktLogoWrapperFooter {
    display: flex;
    align-items: start;
    gap: 20px;
}

.ktLogoImg {
    width: 100%;
    max-width: 72px;
}

.ktLogoText {
    font-weight: bold;
    font-size: var(--kt-font-xl);
    margin: 0;
}

.ktHighlight {
    color: var(--kt-textAccent);
}

.ktSubtitle {
    margin-bottom: 1.5rem;
}

    .ktSubtitle p {
        color: var(--kt-gray);
        margin-top: 10px;
        line-height: 1.4;
    }

.ktText {
    width: 100%;
    max-width: 600px;
    padding: 0 40px;
}

/* --- BAR (banner) --- */
.ktBar {
    background-image: url('images/pasek.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 200px;
    display: flex;
    align-items: center;
    border-radius: 20px;
    padding: 48px;
    overflow: hidden;
}

.ktBottomKsef {
    max-height: 120px;
    width: 100%;
    max-width: 220px;
    height: auto;
}

/* --- LIST (+ bullets) --- */
.ktPlusList {
    list-style: none;
    padding-left: 20px;
}

    .ktPlusList li {
        position: relative;
        padding-left: 1.2rem;
        color: var(--kt-primary);
        font-size: var(--kt-font-md);
    }

        .ktPlusList li::before {
            content: '+';
            position: absolute;
            left: 0;
            top: 3px;
            color: var(--kt-primary);
            font-weight: 900;
            line-height: 1;
        }

/* shadow under list */
.ktShadowUnder {
    position: relative;
    padding-bottom: 50px;
    isolation: isolate;
}

    .ktShadowUnder::after {
        content: '';
        position: absolute;
        bottom: -32px;
        left: 50%;
        transform: translateX(-50%);
        width: 60%;
        max-width: 520px;
        height: 28px;
        background: radial-gradient( ellipse at center, rgba(96, 131, 183, 0.16) 0%, rgba(96, 131, 183, 0.1) 45%, rgba(96, 131, 183, 0.05) 65%, rgba(96, 131, 183, 0) 80% );
        filter: blur(8px);
        pointer-events: none;
    }

/* --- LIGHT PANEL --- */
.ktBoxLight,
.ktPriceCard {
    background-color: var(--kt-secondary);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.06);
    margin-bottom: 6rem;
}

.ktBoxLight {
    border-radius: 16px;
}

.ktPaddingBig {
    padding: 0.1rem 10rem;
}

.ktFooterPadding {
    overflow: visible !important;
}

.ktTop,
.ktBottomInner {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--bs-gutter-x, 0.75rem);
    padding-right: var(--bs-gutter-x, 0.75rem);
}

.ktDarkLink {
    color: var(--kt-black);
    text-decoration: underline;
    transition: color 0.3s;
}

    .ktDarkLink:hover {
        color: var(--kt-primary);
        text-decoration: underline;
    }

/* --- PRICE CARD (jak na PNG) --- */
.ktPriceCard {
    position: relative;
    border-end-end-radius: 16px;
    border-end-start-radius: 16px;
    padding: 2.75rem 3.25rem;
    overflow: visible;
    border-top: 4px solid rgba(0, 0, 0, 0.06);
}

.ktPriceCardMain {
    position: relative;
    border-radius: 16px;
    padding: 1rem 6rem;
    overflow: visible;
    background-color: var(--kt-secondary);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.06);
    margin-bottom: 6rem;
}

.ktPriceCardSecond {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #6B8DD6 0%, #8E9CCC 100%);
    color: white;
    border-radius: 16px;
    overflow: visible;
}

.ktPriceBadge {
    position: absolute;
    top: -25px;
    left: 6rem;
    background: var(--kt-primary);
    color: var(--kt-white);
    font-weight: 700;
    font-size: var(--kt-font-sm);
    line-height: 1;
    padding: 1rem 5rem;
    border-radius: 8px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.ktPriceText {
    margin: 0 0 0.75rem 0;
    line-height: 1.55;
    color: #111;
    padding-right: 50px;
}

.ktPriceValue {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ktPriceAmount {
    font-weight: 500;
    color: #111;
}

.ktPriceUnit {
    color: rgba(0, 0, 0, 0.65);
    line-height: 1.35;
}

@media (max-width: 992px) {
    .ktTop {
        background-image: url('images/tloMobile.png');
        background-position: center;
        min-height: 420px;
        justify-content: center;
        margin: 0;
    }

    .ktTopValue {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .ktImg {
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
        min-width: 100%;
        min-height: 100%;
    }
}

@media (max-width: 768px) {
    :root {
        --kt-font-xl: 2.4rem;
        --kt-font-lg: 1.8rem;
        --kt-font-rg: 1.2rem;
        --kt-font-md: 1rem;
        --kt-font-sm: 0.9rem;
    }

    .ktTop::before,
    .ktTop::after {
        display: none;
    }

    .btn {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }

    .ktBar {
        border-radius: 0;
        border-end-end-radius: 20px;
        border-end-start-radius: 20px;
    }

    .ktText {
        padding: 0 1rem;
        text-align: center;
        max-width: 100%;
    }

    .ktLogoWrapper {
        justify-content: center;
    }

    .ktPaddingBig {
        padding: 1rem;
    }

    .ktBoxLight {
        margin-bottom: 3rem;
    }

    .ktBottomBar,
    .ktBar {
        padding: 1.25rem;
        min-height: 140px;
    }

    .ktBottomKsef {
        max-height: 80px;
        max-width: 160px;
    }

    .ktPlusList {
        display: inline-block;
        text-align: left;
    }

        .ktPlusList li {
            font-size: var(--kt-font-sm);
        }

    .ktShadowUnder {
        padding-bottom: 36px;
    }

        .ktShadowUnder::after {
            bottom: -18px;
            width: 70%;
            height: 22px;
            filter: blur(6px);
        }

    .ktFooterPadding {
        margin-top: 2rem;
    }

    .ktPriceText {
        padding-right: 0;
    }

    .ktPriceCard {
        border-radius: 22px;
    }

    .ktPriceBadge {
        left: 50%;
        transform: translateX(-50%);
    }

    .ktPriceAmount {
        font-size: 1.9rem;
    }

    .ktMainBox {
        padding: 24px;
    }

    .ktPriceCardMain, .ktPriceCardSecond {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .ktBar {
        padding: 1rem;
    }

    .ktPaddingBig {
        padding: 0.75rem;
    }

    .ktLogoImg {
        max-width: 42px;
    }
}
