* {
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    margin: 0;
    background: #ffffff;
}

/* TOPBAR */
.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

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

.logo-text {
    font-weight: bold;
    font-size: 20px;
    color: #333;
}

.breadcrumb {
    font-weight: normal;
    color: #777;
}

.menu button {
    margin-left: 10px;
    padding: 8px 16px;
    border-radius: 30px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s;
    color: #333;
}

.menu button:hover {
    color: #3498db;
}

/* CONTENT */
.container {
    min-height: calc(100vh - 80px);
    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    flex-direction: column;

    align-items: center;   /* horizontální centrování */
    text-align: center;

    gap: 0px;
    padding: 40px;
}

/* OBRÁZEK */
.brand-visual {
    width: 300px;
    max-width: 100%;
    height: auto;
}

/* PRAVÁ ČÁST – TEXT */
.split-right {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content-text {
    max-width: 500px;
    text-align: center;
}

.content-text h1 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #333;
}

.content-text p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

/* BENEFITY */
.benefits-list-container {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 500px;
    text-align: left;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    font-size: 18px;
    color: #444;
}

.benefits-list i {
    color: #3498db;
    font-size: 20px;
}

/* CTA */
.cta-container {
    margin-top: 40px;
}

/* BUTTON */
.pricing-button-container {
    margin-top: 25px;
}

.cta-button {
    background: #3498db;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.2s;
    display: inline-block;
}

.cta-button:hover {
    background: #2980b9;
}

/* FOOTER */
.footer {
    padding: 10px 20px;
    background: #f9f9f9;
    text-align: center;
    font-size: 14px;
    color: #777;
    border-top: 1px solid #eee;
}

/* MENU */
.menu-desktop {
    display: flex;
    gap: 5px;
}

.menu-toggle {
    display: none;
    background: white;
    width: 48px;
    height: 48px;
    font-size: 20px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    color: #333;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .menu-desktop {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .split-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .brand-visual {
        width: 200px;
    }

    .logo-text {
        font-size: 18px;
    }
}

@media (max-width: 600px) {
    .topbar {
        padding: 10px 15px;
    }

    .logo-img {
        height: 30px;
    }
}

