:root {
    /* Brand Colors */
    --primary-bg: #dddfdf;
    /* Very light gray */
    --secondary-color: #ffbf00;
    /* Yellow */
    --btn-bg: #fff4e6;
    /* Pale peach / beige */
    --text-color: #333333;
    /* Dark gray */

    /* Layout Variables */
    --max-body-width: 85vw;
    --max-text-width: 70vw;
    --section-padding: 5rem 0;
    --container-max: 1400px;

    /* Fonts */
    --font-main: 'Outfit', sans-serif;
    --font-brand: 'Special Elite', cursive, monospace;

    /* Transitions */
    --transition-fast: 0.2s ease-in-out;
    --transition-smooth: 0.3s ease;

    /* Sizes */
    --border-radius: 16px;
    --border-radius-lg: 24px;
    --box-shadow-soft: 0 8px 20px rgba(0, 0, 0, 0.08);
    --brutal-shadow: 4px 4px 0 var(--text-color);
    --brutal-border: 2px solid var(--text-color);
}

/* ==================================
   Base Styles & Reset
   ================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* Typografie */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-brand);
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

/* Clamp sizing pro nadpisy - modern responsive */
h1 {
    font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
    letter-spacing: -1px;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 600;
}

p {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    line-height: 1.7;
    max-width: var(--max-text-width);
}

p.hero-text {
    font-size: 1.125rem;
}

ul {
    list-style: none;
}

/* ==================================
   Layout & Containers
   ================================== */
.container {
    width: var(--max-body-width);
    max-width: var(--container-max);
    margin: 0 auto;
}

.container-sm {
    max-width: 900px;
}

.section {
    padding: var(--section-padding);
}

.bg-light {
    background-color: var(--primary-bg);
}

.bg-texture {
    background-image: url('Obrazky/papir_pozadi.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bg-texture-dark {
    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url('Obrazky/papir_pozadi.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bg-beige {
    background-color: var(--btn-bg);
}

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

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

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-footer-text {
    text-align: center;
    margin-top: 3rem;
}

.section-divider {
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
    border: none;
    width: var(--max-body-width);
    max-width: var(--container-max);
    margin: 0 auto;
}

.h3-style {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-family: var(--font-brand);
    font-weight: 600;
    margin-left: auto;
    margin-right: auto;
}

.section-title-sm {
    text-align: center;
    font-family: var(--font-main);
    font-size: 1.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.subsection-centered {
    text-align: center;
    font-size: 1.8rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.large-num-title {
    text-align: center;
    font-family: var(--font-brand);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 600;
    margin-bottom: 2rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mt-6 {
    margin-top: 8rem;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.py-5 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.py-6 {
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.brand-text-large {
    font-family: var(--font-brand);
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    max-width: 100%;
}

.text-highlight {
    background-color: transparent;
    padding: 0;
    display: block;
}

.section-intro-split {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    background: var(--btn-bg);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-soft);
    margin-bottom: 3rem;
    text-align: center;
}

.section-intro-split .btn {
    font-size: 1.25rem;
    padding: 1rem 2.5rem;
}

.intro-image img {
    border-radius: var(--border-radius);
    box-shadow: none;
    border: none;
    max-width: 100%;
    background-color: transparent;
}

@media(min-width: 900px) {
    .section-intro-split {
        flex-direction: row;
        text-align: left;
    }

    .intro-content {
        flex: 1.2;
    }

    .intro-image {
        flex: 0.8;
    }
}

.ml-2 {
    margin-left: 1rem;
}

.mr-1 {
    margin-right: 0.5rem;
}

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

.flex-justify-center {
    justify-content: center;
}

/* Grid systems */
.cards-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

@media(min-width: 768px) {
    .cards-grid.cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .cards-grid.cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(min-width: 1024px) {
    .cards-grid.cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Oprava zadání: "Pokud mám v sekci 4 karty/boxy – dej je po dvou na řádek." Sice tu jsou 3, tak necháme 2 a 1, resp fallback na grid. Ale instrukce "dej po dvou na řádek" zní dost specificky pro 4arty. Pro 3 boxy (nabídky) použijeme flex nebo auto-fit grid. */
}

/* ==================================
   Components
   ================================== */

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-family: var(--font-brand);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition-fast);
}

/* Modern btn style */
.btn-primary {
    background-color: var(--btn-bg);
    color: var(--text-color);
    border: 2px solid var(--text-color);
    box-shadow: var(--box-shadow-soft);
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(51, 51, 51, 0.1);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: var(--box-shadow-soft);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--text-color);
    border: none;
    box-shadow: var(--box-shadow-soft);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(51, 51, 51, 0.1);
}

.btn-outline {
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--text-color);
}

.btn-outline:hover {
    background: var(--primary-bg);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    text-align: center;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

/* Icons */
.icon {
    width: 90px;
    height: 90px;
    object-fit: contain;
    border-radius: 50%;
    background-color: var(--btn-bg);
    padding: 0;
    border: none;
    overflow: hidden;
    margin-bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
}

.inline-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 50%;
    background-color: var(--btn-bg);
    padding: 0;
    border: none;
    overflow: hidden;
}

/* Cards */
.feature-card,
.offer-card,
.price-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--box-shadow-soft);
    transition: var(--transition-smooth);
    text-align: center;
}

.feature-card:hover,
.offer-card:hover,
.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.offer-card:hover .icon,
.price-card:hover .icon,
.service-item:hover .list-icon {
    transform: scale(1.1) rotate(3deg);
}

.icon,
.list-icon {
    transition: transform var(--transition-smooth);
}

.feature-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    text-align: left;
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    margin-bottom: 0.5rem;
}

.offer-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

.price-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

.btn-detail-spacing {
    margin-top: 4rem;
    margin-bottom: 2rem;
}

.price-card {
    border: 2px solid var(--secondary-color);
}

.price-card.primary-border {
    border: 2px solid var(--secondary-color);
}

.price-tag {
    font-family: var(--font-brand);
    font-size: 1.5rem;
    color: var(--text-color);
    margin-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 1rem;
}


/* Checklist in cards */
.check-list li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.75rem;
}

.check-list li::before {
    content: '\f00c';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--text-color);
}


/* ==================================
   Header & Nav
   ================================== */
main {
    padding-top: 110px;
}

.site-header {
    background: transparent;
    padding: 0;
    height: 110px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: none;
    transition: background-color var(--transition-smooth), box-shadow var(--transition-smooth), backdrop-filter var(--transition-smooth);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

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

.logo img {
    height: 125px;
    margin: -8px 0;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    position: relative;
    padding-bottom: 4px;
    font-size: 1.5rem;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition-fast);
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
}

@media(max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 1.5rem 0;
        box-shadow: var(--box-shadow-soft);
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .main-nav.active {
        display: block;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
}

/* ==================================
   Hero Section Pattern Match
   ================================== */
.hero-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    background: #ffffff;
}

.hero-watermark {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    font-size: 40vw;
    font-family: var(--font-main);
    color: rgba(0, 0, 0, 0.02);
    z-index: 0;
    pointer-events: none;
    line-height: 1;
    font-weight: 300;
}

.hero-top-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

.hero-top-border svg {
    display: block;
    width: 100%;
    height: auto;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

@media(min-width: 900px) {
    .hero-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .hero-content {
        flex: 1;
        max-width: 50%;
    }

    .hero-image-wrapper {
        flex: 1;
        max-width: 45%;
    }
}

.highlight {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.highlight::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: -5px;
    right: -5px;
    height: 40%;
    background-color: var(--secondary-color);
    z-index: -1;
    transform: rotate(-1deg);
    border-radius: 2px;
}

.hero-subtitle {
    font-family: var(--font-brand);
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.hero-image-wrapper {
    position: relative;
}

.hero-img {
    width: 200%;
    max-width: 900px;
    transform: translateX(-25%);
    position: relative;
    z-index: 2;
}

/* Bubbles */
.bubble {
    position: absolute;
    background: #fff;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-brand);
    font-size: 0.9rem;
    box-shadow: var(--box-shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 3;
    animation: float 6s ease-in-out infinite;
    white-space: nowrap;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

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

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

.b-1 {
    top: 10%;
    left: 0%;
    animation-delay: 0s;
}

.b-2 {
    top: 20%;
    right: -5%;
    animation-delay: 1s;
}

.b-3 {
    top: 50%;
    left: -10%;
    animation-delay: 2s;
}

.b-4 {
    bottom: 25%;
    right: 0%;
    animation-delay: 3s;
}

.b-5 {
    bottom: 5%;
    left: 5%;
    animation-delay: 4s;
}

.b-6 {
    top: -5%;
    left: 40%;
    animation-delay: 5s;
}

@media(max-width: 768px) {
    .bubble {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .b-1 {
        top: 5%;
        left: -5%;
    }

    .b-2 {
        top: 15%;
        right: -5%;
    }

    .b-3 {
        top: 40%;
        left: -5%;
    }

    .b-4 {
        bottom: 15%;
        right: -5%;
    }

    .b-5 {
        bottom: 0%;
        left: 5%;
    }

    .b-6 {
        top: -5%;
        left: 30%;
    }
}

/* ==================================
   Split Layout & Lists
   ================================== */
.split-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

@media(min-width: 900px) {
    .split-layout {
        flex-direction: row;
        align-items: center;
    }

    .split-text {
        flex: 1;
    }

    .split-text {
        flex: 2;
    }

    .split-equal .split-text,
    .split-equal .split-info,
    .split-equal .split-image {
        flex: 1;
    }

    .split-divider-line .split-info {
        border-left: 1px solid rgba(0, 0, 0, 0.1);
    }

    .split-image,
    .split-info {
        flex: 1;
    }

    .pr-text {
        padding-right: 3rem;
    }

    .pl-text {
        padding-left: 3rem;
    }
}

.author-img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
    border-radius: var(--border-radius-lg);
    border: none;
    box-shadow: none;
}

.service-list {
    display: grid;
    gap: 2rem;
}

.service-item {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 2rem;
    align-items: center;
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--box-shadow-soft);
    transition: var(--transition-smooth);
    text-align: left;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.service-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}

.service-content h4 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.service-content p {
    margin-bottom: 1rem;
    max-width: 100%;
}

.list-icon {
    width: 90px !important;
    height: 90px !important;
    margin-bottom: 0 !important;
}

.price-row {
    font-family: var(--font-brand);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-color);
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.price-row span {
    font-family: var(--font-main);
    font-size: 0.9rem;
    font-weight: 400;
    color: #444;
    display: inline-block;
    margin-left: 0.5rem;
}

@media(max-width: 768px) {
    .service-item {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

    .price-row span {
        display: block;
        margin-left: 0;
        margin-top: 0.25rem;
    }
}

/* ==================================
   Accordion
   ================================== */
.accordion-wrapper {
    display: grid;
    gap: 2rem;
}

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

details {
    margin-bottom: 1rem;
    background: #fff;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

summary {
    padding: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    /* Hide default triangle */
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background var(--transition-fast);
}

summary::-webkit-details-marker {
    display: none;
}

summary:hover {
    background: rgba(0, 0, 0, 0.02);
}

.acc-icon {
    transition: transform var(--transition-fast);
}

details[open] .acc-icon {
    transform: rotate(180deg);
}

.acc-content {
    padding: 0 1.2rem 1.2rem;
    color: #444;
}

/* ==================================
   Timeline
   ================================== */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0.75rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-bg);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-step {
    position: absolute;
    left: -2rem;
    width: 2.2rem;
    height: 2.2rem;
    background: var(--secondary-color);
    border: none;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-brand);
    font-weight: bold;
    transform: translateX(-25%);
    box-shadow: var(--box-shadow-soft);
}

.timeline-content {
    background: #fff;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* ==================================
   Contact Card & Footer
   ================================== */
.contact-card {
    background: transparent;
    padding: 3rem 2rem;
    border-radius: 0;
    box-shadow: none;
    border: none;
    text-align: center;
}

.contact-card p {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-family: var(--font-brand);
}

.contact-card i {
    width: 20px;
    color: var(--secondary-color);
}

.card-hr {
    margin: 2rem 0;
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.text-small {
    font-size: 0.85rem;
    color: #444;
}

.business-details p {
    font-family: var(--font-main) !important;
    margin-bottom: 0.5rem;
}

.site-footer {
    background: var(--text-color);
    color: #fff;
    padding: 3rem 0;
    text-align: center;
}

.site-footer a {
    color: #fff;
    text-decoration: underline;
    opacity: 0.8;
}

.site-footer a:hover {
    opacity: 1;
}

.footer-links {
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.footer-copy p {
    margin-bottom: 0.5rem;
    opacity: 0.7;
    margin-left: auto;
    margin-right: auto;
}

/* ==================================
   Cookie Banner
   ================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    z-index: 1000;
    transform: translateY(0);
    transition: transform var(--transition-smooth);
    border-top: 2px solid var(--primary-bg);
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.cookie-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: var(--container-max);
    margin: 0 auto;
    gap: 1rem;
}

.cookie-content p {
    margin-bottom: 0;
    max-width: 100%;
}

@media(min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* ================================== 
   Scroll Animations 
   ================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ================================== 
   Back to Top Button 
   ================================== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--secondary-color);
    color: var(--text-color);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-smooth);
    box-shadow: var(--box-shadow-soft);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(51, 51, 51, 0.1);
}

.back-to-top:active {
    transform: translateY(0);
    box-shadow: var(--box-shadow-soft);
}

/* ==================================
   Mobile Responsive Overrides
   ================================== */
@media(max-width: 768px) {

    /* Base layout */
    :root {
        --max-body-width: 92vw;
        --max-text-width: 92vw;
        --section-padding: 3rem 0;
    }

    p {
        max-width: 100%;
    }

    /* Header */
    .site-header {
        height: 80px;
    }

    main {
        padding-top: 80px;
    }

    .logo img {
        height: 85px;
    }

    /* Hero */
    .hero-section {
        padding: 2rem 0 3rem;
    }

    .hero-img {
        width: 130%;
        transform: translateX(-12%);
        max-width: 100%;
    }

    h1 {
        font-size: clamp(2rem, 9vw, 3rem);
    }

    /* Hide bubbles on small screens - they overflow */
    .bubble {
        display: none;
    }

    /* Spacing utilities */
    .py-5 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .py-6 {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .mt-5,
    .mt-6 {
        margin-top: 2.5rem;
    }

    /* Intro split (Konzultace) */
    .section-intro-split {
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }

    .brand-text-large {
        font-size: 1.2rem;
    }

    /* Feature cards (Jednoduche, Funkcni) */
    .feature-card {
        flex-direction: column;
        text-align: center;
    }

    /* Cards grid */
    .cards-grid {
        gap: 1.25rem;
    }

    /* Price cards */
    .price-card,
    .offer-card {
        padding: 2rem 1.5rem;
    }

    /* Accordion */
    .acc-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    /* Author split */
    .author-img {
        max-width: 280px;
    }

    /* Contact section */
    .split-divider-line .split-info {
        border-left: none;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        padding-top: 2rem;
    }

    .contact-card {
        padding: 1.5rem 1rem;
    }

    /* Back to top */
    .back-to-top {
        bottom: 1.25rem;
        right: 1.25rem;
        width: 3rem;
        height: 3rem;
        font-size: 1rem;
    }

    /* Section intro split (Konzultace zdarma) */
    .intro-image img {
        max-width: 220px;
        margin: 0 auto;
    }

    /* Timeline */
    .timeline {
        padding-left: 2.5rem;
    }

    /* Hero - centrování tlačítka a obrázku */
    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-img {
        width: 100%;
        transform: none;
        max-width: 320px;
        margin: 0 auto;
        display: block;
    }

    .hero-image-wrapper {
        display: flex;
        justify-content: center;
    }

    /* Všechny boxy 80% šířky */
    .offer-card,
    .price-card,
    .feature-card {
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }

    /* Nadpis "Společně vytvoříme..." - zmenšit */
    .uvod-section .section-title {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
    }

    /* Konzultace sekce - text a tlačítko na střed */
    .section-intro-split .intro-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Konzultace tlačítko - stejná velikost jako ostatní */
    .section-intro-split .btn {
        font-size: 1rem;
        padding: 0.75rem 2rem;
    }

    /* Obrázek webaře - zmenšit o 50% */
    .author-img {
        max-width: 140px;
    }

    /* Sekce "Co cena zahrnuje a nezahrnuje" */
    .accordion-wrapper {
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }

    .acc-header h3 {
        font-size: clamp(1.2rem, 4vw, 1.6rem);
    }

    .inline-icon {
        width: 24px;
        height: 24px;
        padding: 0;
    }

    /* Sekce "Spolupráce" */
    #spoluprace .section-title {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
    }

    #spoluprace .container {
        width: 80%;
    }

    /* Sekce "Kontakty" - split-text část */
    #kontakty .split-text {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #kontakty .split-text h2 {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
    }

    /* Konzultace zdarma - méně prostoru pod sekcí (nad nadpisem) */
    .section-intro-split {
        margin-bottom: 1.5rem;
    }

    /* Větší mezera mezi tlačítkem a obrázkem v konzultaci */
    .section-intro-split .intro-content {
        padding-bottom: 1rem;
    }

    /* Více prostoru pod obrázkem konzultace */
    .section-intro-split .intro-image {
        margin-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    /* Sekce "Kdo za tím stojí" - šířka 80% */
    .section.py-6 .split-layout {
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Extra small phones */
@media(max-width: 400px) {
    :root {
        --max-body-width: 95vw;
    }

    h2 {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
    }

    .btn {
        padding: 0.7rem 1.4rem;
        font-size: 0.9rem;
    }
}