@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@400;500;600;700&display=swap');

:root {
    --font-heading: "Figtree", Arial, sans-serif;
    --font-body: "Figtree", Arial, sans-serif;

    --bg: #0b0b0b;
    --bg-deep: #050505;
    --bg-soft: #121212;
    --bg-elevated: #151515;
    --text: #ffffff;
    --muted: rgba(255, 255, 255, 0.68);
    --line: rgba(255, 255, 255, 0.08);
    --white: #ffffff;
    --black: #000000;
    --light-text: #ffffff;
    --accent-soft: #d9c6a0;
    --radius: 24px;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
    --shadow-soft: 0 14px 34px rgba(0, 0, 0, 0.22);
    --shadow-hover: 0 24px 50px rgba(0, 0, 0, 0.28);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
}

p,
li,
input,
textarea,
select,
label {
    font-family: var(--font-body);
    font-weight: 400;
}

h1 {
    font-family: var(--font-heading);
    font-weight: 500;
    letter-spacing: -0.045em;
}

h2 {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: -0.035em;
}

h3,
h4,
h5,
h6,
.logo,
.menu a,
.btn,
.mini-label {
    font-family: var(--font-heading);
    font-weight: 500;
}

.container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        backdrop-filter 0.25s ease,
        -webkit-backdrop-filter 0.25s ease;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.50);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.nav {
    min-height: 82px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
}

.logo {
    display: inline-flex;
    align-items: center;
}

.logo img {
    display: block;
    height: 32px;
    width: auto;
    max-width: 240px;
}

.main-nav {
    display: flex;
    justify-content: center;
}

.menu {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 34px;
}

.menu a {
    color: rgba(17, 17, 17, 0.82);
    font-size: 0.96rem;
    letter-spacing: 0.005em;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.menu a:hover,
.menu a.active {
    color: #111;
}

.nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
}

.nav-phone {
    color: #111;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.nav-phone:hover {
    opacity: 0.7;
}

/* BUTTONS */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 600;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        opacity 0.2s ease,
        background 0.2s ease,
        color 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-dark {
    background: linear-gradient(180deg, #ffffff 0%, #f0f0f0 100%);
    color: #000000;
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.08);
}

.btn-dark:hover {
    box-shadow: 0 10px 24px rgba(255, 255, 255, 0.12);
}

.btn-light {
    background: linear-gradient(180deg, #ffffff 0%, #f0f0f0 100%);
    color: #000000;
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.08);
}

.btn-light:hover {
    box-shadow: 0 10px 24px rgba(255, 255, 255, 0.12);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: var(--white);
}

.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.38);
}

.btn-nav {
    min-height: 44px;
    padding: 0 20px;
    font-size: 0.92rem;
}

/* HERO */

.hero,
.hero-home {
    background:
        linear-gradient(180deg, rgba(0,0,0,0.74), rgba(0,0,0,0.84)),
        radial-gradient(circle at center, rgba(255,255,255,0.03), transparent 40%),
        var(--bg-deep);
    color: var(--text);
    padding: 130px 0 100px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    max-width: 760px;
}

.hero-centered {
    display: flex;
    justify-content: center;
    text-align: center;
}

.hero-content-centered {
    max-width: 860px;
}

.hero-actions-centered {
    justify-content: center;
}

.hero h1,
.page-hero h1 {
    font-size: clamp(2.2rem, 4.6vw, 4.2rem);
    line-height: 1.03;
    margin: 0 0 20px;
}

.lead {
    font-size: 1.08rem;
    max-width: 720px;
    color: rgba(255, 255, 255, 0.80);
    margin: 0 auto;
    font-weight: 400;
}

.dark-text {
    color: rgba(255, 255, 255, 0.74);
}

.eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    color: rgba(217, 198, 160, 0.84);
    font-weight: 500;
}

.eyebrow.dark {
    color: rgba(217, 198, 160, 0.78);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero-side-card {
    display: flex;
    align-items: stretch;
}

.hero-side-inner,
.hero-card {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 34px;
    box-shadow: var(--shadow);
}

.mini-label {
    margin: 0 0 14px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.84);
}

.hero-points {
    margin: 0;
    padding-left: 18px;
    color: rgba(255, 255, 255, 0.76);
}

.hero-points li + li {
    margin-top: 10px;
}

/* SECTIONS */

/* SECTIONS - sjednocene pozadi napric webem */
.section {
    padding: 90px 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.74), rgba(0,0,0,0.84)),
        radial-gradient(circle at center, rgba(255,255,255,0.03), transparent 40%),
        var(--bg-deep);
    color: var(--light-text);
}

.section-light {
    background:
        linear-gradient(180deg, rgba(0,0,0,0.74), rgba(0,0,0,0.84)),
        radial-gradient(circle at center, rgba(255,255,255,0.03), transparent 40%),
        var(--bg-deep);
    color: var(--light-text);
}

.section-dark {
    background:
        linear-gradient(180deg, rgba(0,0,0,0.74), rgba(0,0,0,0.84)),
        radial-gradient(circle at center, rgba(255,255,255,0.03), transparent 40%),
        var(--bg-deep);
    color: var(--white);
}

.section-cta {
    padding-top: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.74), rgba(0,0,0,0.84)),
        radial-gradient(circle at center, rgba(255,255,255,0.03), transparent 40%),
        var(--bg-deep);
    color: var(--white);
}

/* PAGE HERO - nove sjednocene pozadi jako hero/footer */
.page-hero {
    padding: 90px 0 20px;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.74), rgba(0,0,0,0.84)),
        radial-gradient(circle at center, rgba(255,255,255,0.03), transparent 40%),
        var(--bg-deep);
    color: var(--light-text);
}

.section-head {
    margin-bottom: 46px;
}

.section-head h2 {
    margin: 0;
    font-size: clamp(1.8rem, 2.8vw, 3rem);
    line-height: 1.12;
}

.centered {
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 1.02rem;
    font-weight: 400;
}

/* CARDS / GRIDS */

.cards-3,
.cards-2,
.benefits,
.pricing-grid,
.footer-grid,
.form-grid {
    display: grid;
    gap: 24px;
}

.cards-3 {
    grid-template-columns: repeat(3, 1fr);
}

.cards-2 {
    grid-template-columns: repeat(2, 1fr);
}

.benefits {
    grid-template-columns: repeat(3, 1fr);
}

.pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
}

.card,
.benefit,
.faq-item,
.form-wrap,
.cta-box,
.price-card {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.card,
.benefit,
.faq-item,
.form-wrap,
.cta-box {
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.08);
    padding: 28px;
}

.soft-card {
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
    border: 1px solid rgba(255,255,255,0.09);
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.soft-card:hover,
.price-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.16);
    box-shadow: var(--shadow-hover);
}

.reason-grid {
    margin-top: 20px;
}

.benefit p,
.card p,
.price-card p,
.faq-item p {
    color: rgba(255, 255, 255, 0.72);
}

.section-dark .benefit {
    background: #171717;
    border: 1px solid #242424;
}

.section-dark .benefit p {
    color: rgba(255, 255, 255, 0.72);
}

/* JAK MUZU ZACIT - stejny tmavy zaklad jako hero/footer */

#wie-koennen-sie-starten {
    background:
        linear-gradient(180deg, rgba(0,0,0,0.74), rgba(0,0,0,0.84)),
        radial-gradient(circle at center, rgba(255,255,255,0.03), transparent 40%),
        var(--bg-deep);
    color: #ffffff;
}

#wie-koennen-sie-starten .section-subtitle {
    color: rgba(255,255,255,0.68);
}

#wie-koennen-sie-starten .price-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
    border: 1px solid rgba(255,255,255,0.09);
}

/* STEP CARDS */

.steps-cards .step-card {
    background: #171717;
    border: 1px solid #242424;
    color: #fff;
    box-shadow: none;
    padding: 34px;
    min-height: 100%;
}

.steps-cards .step-card p {
    color: rgba(255,255,255,0.74);
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    color: #fff;
}

.dark-step-number {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
}

/* LISTS */

.clean-list {
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
}

.clean-list li {
    position: relative;
    padding-left: 18px;
    color: rgba(255, 255, 255, 0.72);
}

.clean-list li + li {
    margin-top: 12px;
}

.clean-list li::before {
    content: "–";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-soft);
}

/* LEGACY STEPS */

.steps-flow {
    display: grid;
    gap: 28px;
    margin-top: 20px;
}

.step-item {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 22px;
    align-items: flex-start;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.step-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.step-content h3 {
    margin-top: 0;
    margin-bottom: 8px;
}

.step-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    max-width: 820px;
}

/* PRICING */

.price-card {
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
    border: 1px solid rgba(255,255,255,0.09);
    padding: 38px 34px;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.price-card h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.28rem;
    color: #fff;
    font-weight: 600;
}

.price-card p,
.price-card li {
    color: rgba(255, 255, 255, 0.72);
}

.price-card ul {
    padding-left: 18px;
    margin: 20px 0 26px;
}

/* FEATURED BALICEK - zaklad pro vsechny balicky */

.price-card.featured {
    background: linear-gradient(180deg, #f8f8f8 0%, #efefef 100%);
    color: #111;
    border-color: #f8f8f8;
    transform: scale(1.015);
}

.price-card.featured h3,
.price-card.featured .price-subtitle {
    color: #111;
}

.price-card.featured p,
.price-card.featured li {
    color: rgba(17, 17, 17, 0.76);
}

/* FEATURED BALICEK - lokalni fix pouze pro sekci Jak muzu zacit */

#wie-koennen-sie-starten .price-card.featured {
    background: linear-gradient(180deg, #f8f8f8 0%, #efefef 100%);
    color: #111111;
    border: 1px solid #f8f8f8;
    transform: scale(1.015);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

#wie-koennen-sie-starten .price-card.featured h3,
#wie-koennen-sie-starten .price-card.featured .price-subtitle,
#wie-koennen-sie-starten .price-card.featured p,
#wie-koennen-sie-starten .price-card.featured li {
    color: #111111;
}

#wie-koennen-sie-starten .price-card.featured .btn-light,
#wie-koennen-sie-starten .price-card.featured .btn-dark {
    background: #ffffff;
    color: #111111;
    border: 1px solid rgba(17,17,17,0.08);
    box-shadow: none;
}

#wie-koennen-sie-starten .price-card.featured .badge {
    background: var(--accent-soft);
    color: #111111;
}

.badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--accent-soft);
    color: #111;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* CTA */

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cta-box-dark {
    background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
    color: #111111;
    border: 1px solid #ffffff;
}

.cta-box-dark .eyebrow {
    color: rgba(17, 17, 17, 0.56);
}

.cta-box-dark p {
    color: rgba(17, 17, 17, 0.72);
}

/* FORM */

.form-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    align-items: start;
}

.form-intro h2 {
    margin-top: 0;
    margin-bottom: 14px;
}

.form-intro p {
    color: rgba(255, 255, 255, 0.72);
    max-width: 520px;
}

.form-points {
    margin-top: 24px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #fff;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 14px 16px;
    font: inherit;
    background: #0f0f0f;
    color: #fff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #fff;
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

.form-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 20px;
}

.form-note {
    margin: 18px 0 20px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.62);
}

.form-alert {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 0.96rem;
    line-height: 1.5;
}

.form-alert-error {
    background: #2a1111;
    border: 1px solid #6a2c2c;
    color: #ffb4b4;
}

.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* FAQ */

.faq-list {
    display: grid;
    gap: 18px;
}

/* FOOTER */

.footer-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
}

.footer-logo img {
    display: block;
    height: 30px;
    width: auto;
    max-width: 220px;
}

.site-footer {
    background:
        linear-gradient(180deg, rgba(0,0,0,0.74), rgba(0,0,0,0.84)),
        radial-gradient(circle at center, rgba(255,255,255,0.03), transparent 40%),
        var(--bg-deep);
    color: rgba(255, 255, 255, 0.84);
    padding-top: 56px;
}

.footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 28px;
}

.footer-brand h3,
.footer-links h4,
.footer-contact h4 {
    margin-top: 0;
    margin-bottom: 14px;
    font-family: var(--font-heading);
    color: #fff;
    font-weight: 500;
}

.footer-brand p,
.footer-contact p,
.footer-links a {
    color: rgba(255, 255, 255, 0.62);
}

.footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li + li {
    margin-top: 10px;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: #fff;
}

.footer-btn {
    margin-top: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.58);
}

.footer-legal {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.58);
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.68);
    transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-social a:hover {
    color: #fff;
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    flex: 0 0 18px;
}

.footer-contact-line {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.68);
}

.footer-contact-line a {
    color: inherit;
    transition: color 0.2s ease;
}

.footer-contact-line a:hover {
    color: #fff;
}

.footer-contact-line svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    flex: 0 0 18px;
}

/* RESPONSIVE */

@media (max-width: 980px) {
    .hero-grid,
    .cards-3,
    .cards-2,
    .benefits,
    .pricing-grid,
    .footer-grid,
    .form-grid,
    .cta-box,
    .form-layout {
        grid-template-columns: 1fr;
    }

    .nav {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 14px 0;
    }

    .main-nav {
        justify-content: flex-start;
    }

    .menu {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 10px 18px;
    }

    .menu a {
        font-size: 0.92rem;
    }

    .nav-right {
        display: none;
    }

    .logo img {
        height: 28px;
        max-width: 200px;
    }

    .step-item {
        grid-template-columns: 56px 1fr;
        gap: 16px;
    }

    .cta-box {
        align-items: flex-start;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 720px) {
    .hero,
    .hero-home,
    .section,
    .page-hero {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .menu {
        gap: 8px 14px;
    }

    .menu a {
        font-size: 0.9rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .step-item {
        grid-template-columns: 1fr;
    }

    .step-number {
        margin-bottom: 8px;
    }
}

/* PROC TO DAVA SMYSL - BACKGROUND IMAGE */

#warum-es-sich-lohnt {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.74), rgba(0,0,0,0.84)),
        radial-gradient(circle at center, rgba(255,255,255,0.03), transparent 40%),
        var(--bg-deep);
    color: #ffffff;
}

#warum-es-sich-lohnt::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('hero-cars.png') center center / cover no-repeat;
    filter: blur(1px);
    transform: scale(1.04);
    opacity: 0.92;
    pointer-events: none;
}

#warum-es-sich-lohnt::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.42), rgba(0,0,0,0.58)),
        radial-gradient(circle at center, rgba(255,255,255,0.05), transparent 42%);
    pointer-events: none;
}

#warum-es-sich-lohnt .container {
    position: relative;
    z-index: 1;
}

#warum-es-sich-lohnt .soft-card {
    background: linear-gradient(180deg, rgba(20,20,20,0.82), rgba(12,12,12,0.88));
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 14px 34px rgba(0,0,0,0.22);
}

/*GDPR dokument*/

.legal-document {
    max-width: 860px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.68);
}

.legal-document h2 {
    margin-top: 42px;
    margin-bottom: 14px;
    font-size: 1.32rem;
    color: rgba(255, 255, 255, 0.88);
}

.legal-document p {
    margin: 0 0 16px;
    line-height: 1.75;
}

.legal-document ul {
    margin: 0 0 18px 20px;
    padding: 0;
}

.legal-document li {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.72);
}

.legal-document strong {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.legal-document a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-document a:hover {
    color: #fff;
}

.legal-updated {
    margin-top: 36px;
    color: rgba(255, 255, 255, 0.5);
}