@charset "UTF-8";

/* BRAND COLORS dle instrukci */
:root {
  --primary: #B0A8A7;
  --secondary: #CAA478; 
  --btn-color: #CAA478;
  --bg-sage: #B6C3AD;
  --bg-sage-tint: #E1E9DA;
  --text-main: #333333;
  --white: #FFFFFF;
  --bg-sand: #FAF8F5; 
  --black: #111111;
  --secondary-text: #8B6124;

  --font-main: 'Outfit', sans-serif;
  --font-brand: 'Playfair Display', serif;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17px; }
body { 
    font-family: var(--font-main); color: var(--text-main); background: var(--white); 
    line-height: 1.8; font-weight: 400; -webkit-font-smoothing: antialiased; overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-brand); font-weight: 400; color: var(--black); line-height: 1.3; }
h1 { font-size: 2.8rem; margin-bottom: 1.5rem; }
h2 { font-size: 2.2rem; margin-bottom: 1rem; }
h3 { font-size: 1.8rem; margin-bottom: 1rem; }
h4 { font-family: var(--font-main); font-weight: 600; font-size: 1.1rem; text-transform: uppercase; margin-bottom: 0.8rem; }
p { margin-bottom: 1.5rem; }

/* Zachování vizuálního stylu při opravě hierarchie nadpisů */
.section-category-heading { font-size: 2.2rem; margin-bottom: 1rem; font-family: var(--font-brand); font-weight: 400; color: var(--black); line-height: 1.3; }
.v-card-heading { font-family: var(--font-brand); font-weight: 400; font-size: 1.8rem; margin-bottom: 1rem; text-transform: none; color: var(--black); line-height: 1.3; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* UTILS */
.container { width: 85%; max-width: 1200px; margin: 0 auto; position: relative;}
@media (min-width: 1440px) { .container { max-width: 1340px; } }
@media (min-width: 1800px) { .container { max-width: 1560px; } }
@media (min-width: 2400px) { .container { max-width: 1800px; } }
.center-narrow { max-width: 900px; margin: 0 auto; }
.section-padding { padding: 4rem 0; }
@media (max-width: 768px) { .section-padding { padding: 2.5rem 0; } }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.bg-white { background: var(--white); }
.bg-v-sand { background: var(--bg-sand); }
.bg-brand-sage { background: rgba(182, 195, 173, 0.2); } /* Bledy odstin brandove zelene pro podklady (napr hero) */
.w-100 { width: 100%; text-align: center; display: inline-block;}

/* CUSTOM LISTS */
.custom-bullet-list { list-style: none; padding: 0; margin-bottom: 1.5rem;}
.custom-bullet-list li { position: relative; padding-left: 1.5rem; margin-bottom: 0.5rem; }
.custom-bullet-list li::before {
    content: "■"; font-size: 0.6rem; color: var(--secondary); position: absolute; left: 0; top: 0.4rem;
}

.v-bullets-grid { text-align: left; margin: 3rem 0; row-gap: 1.5rem !important; }
.v-bullet { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 0.5rem; }
.v-bullet svg { color: var(--secondary); margin-top: 5px; font-size: 0.9rem; opacity: 0.8;}
.v-bullet span { font-size: 1.05rem; line-height: 1.4; color: var(--text-main); }

/* GRID */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; }

/* =========================================
   BUTTONS & TYPOGRAPHY ACCENTS
   ========================================= */
.btn-black-solid {
    background: var(--secondary-text); color: var(--white); font-family: var(--font-main);
    font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px;
    padding: 1rem 2.5rem; display: inline-flex; align-items: center; justify-content: center; font-weight: 600;
    border-radius: 50px; border: 2px solid var(--secondary-text);
    transition: all 0.3s ease; text-align: center;
}
.btn-black-solid:hover { background: var(--black); border-color: var(--black); color: var(--white); }

.valerie-btn-line {
    background: var(--white); color: var(--secondary-text); font-family: var(--font-main);
    font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px;
    padding: 1rem 2.5rem; display: inline-flex; align-items: center; justify-content: center; font-weight: 600;
    border-radius: 50px; border: 2px solid var(--secondary-text);
    transition: all 0.3s ease; text-align: center;
}
.valerie-btn-line:hover { background: var(--secondary-text); border-color: var(--secondary-text); color: var(--white); }

.btn-small {
    padding: 0.6rem 1.5rem;
    font-size: 0.7rem;
    margin-top: 1rem;
}


.v-sub { font-family: var(--font-main); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 3px; color: var(--secondary-text); display: block; margin-bottom: 0.5rem;}
.v-desc { font-family: var(--font-brand); font-size: 1.3rem; color: #444; }
.v-quote-italic { font-family: var(--font-brand); font-size: 1.4rem; color: var(--primary); line-height: 1.6;}
.signature { font-family: var(--font-brand); font-size: 2rem; color: var(--secondary-text); margin-top: 2rem; }

.v-divider { display: none; }

/* =========================================
   HEADER
   ========================================= */
.header-v { position: sticky; top: 0; width: 100%; z-index: 1000; background: var(--white); border-bottom: 1px solid #f0f0f0; }
.header-container { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; min-height: 80px;}
.logo-box img { max-height: 60px; width: auto; display: block;}
.hamburger { display: none; background: transparent; border: none; font-size: 1.5rem; cursor: pointer; color: var(--black); padding: 0.5rem; }
.hamburger .icon-close { display: none; }
.hamburger.open .icon-bars { display: none; }
.hamburger.open .icon-close { display: block; }

.nav-v { display: flex; justify-content: center; align-items: center; gap: 1.5rem; }
.nav-v a { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 500; color: #333; }
.nav-v a:hover { color: var(--secondary); }

/* Dropdown menu (nav-v) */
.nav-dropdown { position: relative; }
.nav-drop-toggle {
    background: none; border: none; cursor: pointer; display: inline-flex; align-items: center; gap: 0.35rem;
    font-family: var(--font-main); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 500; color: #333; padding: 0;
}
.nav-drop-toggle:hover { color: var(--secondary); }
.nav-drop-toggle svg { width: 0.6em; height: 0.6em; transition: transform 0.25s ease; }
.nav-dropdown.open .nav-drop-toggle svg,
.nav-dropdown:hover .nav-drop-toggle svg { transform: rotate(180deg); }

.nav-dropdown-menu {
    display: none; position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%);
    background: var(--white); border: 1px solid #f0f0f0; border-radius: 10px; box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    padding: 0.6rem; min-width: 220px; z-index: 1001;
}
/* Neviditelný můstek přes mezeru mezi tlačítkem a menu, aby hover nezmizel při přejíždění myší */
.nav-dropdown-menu::before {
    content: ""; position: absolute; top: -14px; left: 0; width: 100%; height: 14px;
}
.nav-dropdown-menu a {
    display: block; padding: 0.7rem 0.9rem; font-size: 0.75rem; text-transform: none; letter-spacing: 0.3px;
    font-weight: 500; color: #333; border-radius: 6px; white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: var(--bg-sand); color: var(--secondary-text); }
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { display: block; }

/* Mobilní podnabídka */
.mobile-nav-sub { margin: -1rem 0 1.5rem; }
.mobile-nav-sub a { font-size: 0.8rem; opacity: 0.8; margin-bottom: 0.9rem; }

.mobile-nav-panel { 
    display: none; 
    position: absolute; 
    top: 100%; 
    left: 0; 
    width: 100%; 
    background: var(--white); 
    border-top: 1px solid #eee; 
    padding: 2rem; 
    text-align: center; 
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.mobile-nav-panel.active { display: block; }
.mobile-nav-panel a { display: block; margin-bottom: 1.5rem; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; font-weight: 500;}
.mobile-nav-panel .h-cta { margin-top: 2rem; }

/* =========================================
   HERO SPLIT SCREEN
   ========================================= */
.hero-split { display: flex; height: 760px; align-items: stretch; overflow: hidden; }
.hero-left { flex: 1; position: relative; display: flex; align-items: center; justify-content: center; padding: 6rem 3rem; }
.hero-content { position: relative; max-width: 500px; z-index: 2;}
.hero-sub { font-size: 1.5rem; margin-bottom: 1.2rem; color: var(--text-main); font-family: var(--font-main); font-weight: 500; }
.vertical-line-sep { display: none; }
.h-tag { font-family: var(--font-main); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 3px; color: var(--secondary-text); margin-bottom: 1.5rem; }
.h-desc { font-size: 1.1rem; margin-bottom: 2.5rem; color: #444; }

.hero-right { flex: 1; position: relative; overflow: hidden; }
.hero-right img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

/* Bubbles na hero prave casti */
.h-bubble {
    position: absolute; background: white; padding: 0.8rem 1.5rem; border-radius: 50px;
    font-size: 0.85rem; color: var(--text-main); font-weight: 500; font-family: var(--font-main);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); white-space: nowrap;
    animation: floatingBubbles 4s ease-in-out infinite;
}
@keyframes floatingBubbles {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}
.hb1 { top: 20%; left: 20px; animation-delay: 0s; }
.hb2 { top: 40%; right: 10%; animation-delay: 1s; }
.hb3 { bottom: 30%; left: 10%; animation-delay: 2s; }
.hb4 { bottom: 15%; right: 20px; animation-delay: 0.5s; }


/* =========================================
   JAK PRACUJI (Masonry Layout)
   ========================================= */
.masonry-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.m-text-side { padding-right: 2rem; }
.m-intro { margin-bottom: 3rem; font-size: 1.15rem; }

.m-steps { display: flex; flex-direction: column; gap: 1rem; }
.m-step { display: flex; gap: 1rem; align-items: flex-start; }
.step-icon {
    width: 35px; height: 35px; min-width: 35px; border-radius: 50%;
    background: var(--secondary-text); color: var(--white); display: flex; align-items: center; justify-content: center;
    font-family: var(--font-brand); font-size: 1.1rem;
}
.m-step h3 { margin-top: 5px; margin-bottom: 0.1rem; font-size: 1.3rem;}
.m-step p { font-size: 0.95rem; margin-bottom: 0.5rem; }

.m-image-side { position: relative; }
.m-img-single { 
    box-shadow: 0 10px 40px rgba(0,0,0,0.08); 
    position: relative;
}
.m-img-single img { 
    display: block; 
    width: 100%; 
    height: auto; 
    aspect-ratio: 4/5;
    object-fit: cover; 
    object-position: top;
}

.photo-quote-box {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background: #333;
    padding: 2rem;
    border-radius: 20px;
    max-width: 320px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    z-index: 5;
}
.photo-quote-box .v-quote-italic {
    color: var(--white);
    font-size: 1.1rem;
    margin: 0;
    font-style: italic;
}
.photo-quote-box .v-quote-italic::before {
    content: "Výsledek?";
    display: block;
    color: var(--secondary);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-family: var(--font-brand);
    font-style: normal;
}

@media (max-width: 768px) {
    .photo-quote-box {
        position: relative;
        bottom: auto;
        right: auto;
        margin: -30px 1.5rem 0;
        max-width: none;
        padding: 1.5rem;
    }
    .photo-quote-box .v-quote-italic::before {
        font-size: 1.5rem;
    }
}


/* =========================================
   SLUŽBY & AUDITY (Karty)
   ========================================= */
.v-card { text-align: center; display: flex; flex-direction: column; height: 100%; box-sizing: border-box; }
.v-card-img, .b-img-wrapper { 
    position: relative; 
    margin-bottom: 3rem; 
    height: 350px !important; 
    width: 100%; 
    flex: 0 0 350px; 
}
.v-card-img img, .b-img-wrapper img { 
    width: 100%; 
    height: 100% !important; 
    object-fit: cover; 
    object-position: top;
}
.v-badge {
    position: absolute; bottom: -25px; left: 50%; transform: translateX(-50%);
    width: 50px; height: 50px; border-radius: 50%; background: var(--secondary); color: white;
    display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(202, 164, 120, 0.4);
}
.v-card-note { font-family: var(--font-brand); color: var(--primary); margin: 1rem 0; opacity: 0.8; }
.v-card-price { font-size: 1.2rem; font-weight: 500; font-family: var(--font-main); margin-top: auto; margin-bottom: 1.5rem; min-height: 3rem; display: flex; align-items: center; justify-content: center; }

/* Blog posts design pro Audity */
.v-blog-card { display: flex; flex-direction: column; background: var(--bg-sand); height: 100%; }
.b-content { padding: 3rem 2rem 2rem; flex: 1; display: flex; flex-direction: column; }
.b-desc { color: #333; font-size: 0.9rem; margin-bottom: 1.5rem; }
.b-list-title { color: var(--secondary-text); margin-bottom: 1rem; font-family: var(--font-main); font-weight: 600; font-size: 0.9rem; text-align: center; }
.b-content .custom-bullet-list { margin-bottom: 1.5rem; }
.output-row { padding-top: 1rem; font-size: 0.85rem; margin-bottom: 1rem; display: block; }

@media (min-width: 769px) {
    .v-card {
        display: grid !important;
        grid-template-rows: 350px 7.5rem 15rem 4.5rem 4rem auto;
        gap: 0;
        text-align: center;
    }
    .v-card-img { margin-bottom: 0; height: 350px; }
    .v-card .v-card-heading {
        margin: 0;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        padding: 1.5rem 1rem 0;
    }
    .v-card .custom-bullet-list { margin: 0 auto; display: block; }
    .v-card-note { margin: 0; display: flex; align-items: flex-start; justify-content: center; padding-bottom: 1rem; padding-top: 1rem; }
    .v-card-price { margin: 0; display: flex; align-items: center; justify-content: center; }
    .v-card .valerie-btn-line { margin-top: 0.5rem; }

    .b-content {
        display: grid !important;
        grid-template-rows: 6.5rem 7rem 3rem 14rem 8.5rem 4.5rem auto;
        gap: 0;
        padding: 1rem 2rem 2rem;
    }
    .b-content .v-card-heading { margin: 0; display: flex; align-items: flex-start; justify-content: center; padding-top: 0; }
    .b-desc { margin: 0; display: flex; align-items: flex-start; justify-content: center; padding-top: 1rem; }
    .b-list-title { margin: 0; display: flex; align-items: flex-start; justify-content: center; padding-top: 1rem; }
    .b-content .custom-bullet-list { margin: 0; padding-top: 1rem; }
    .output-row { margin: 0; display: block; padding: 1rem 0; text-align: left;}
    .price-row { margin: 0; display: flex; align-items: center; justify-content: center; padding: 1rem 0; }
    .b-content .valerie-btn-line { margin-top: 1.5rem; }
}
.price-row { 
    margin-top: auto; 
    min-height: 3rem; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 1.2rem; 
    font-family: var(--font-main); 
    margin-bottom: 1.5rem; 
    text-align: center;
    font-weight: 500;
}


/* =========================================
   ZÁVĚR (Keep In Touch)
   ========================================= */
.keep-in-touch { border-top: 1px solid #f0f0f0; border-bottom: 1px solid #f0f0f0;}
.kit-icon { 
    width: 80px; height: 80px; border-radius: 50%; 
    background: var(--bg-sand); color: var(--secondary);
    display: flex; align-items: center; justify-content: center;
    font-size: 2.2rem; margin: 0 auto 1.5rem;
    box-shadow: 0 10px 25px rgba(202, 164, 120, 0.15);
    border: 1px solid rgba(202, 164, 120, 0.2);
}
.v-cta-box { box-shadow: 0 10px 40px rgba(0,0,0,0.03); margin: 3rem auto;}


/* =========================================
   O MNĚ (AzuraTheme Offset Layout)
   ========================================= */
.azura-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: stretch; }
.azura-img-side { position: relative; padding: 3rem 3rem 3rem 0; }
.azura-img-side img { width: 100%; height: auto; position: relative; z-index: 2; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.azura-offset-border {
    position: absolute; top: 0; left: -2rem; width: 100%; height: 100%;
    border: 2px solid white; box-shadow: 0 0 0 1px #eee; z-index: 1; background: var(--bg-sand);
}

.azura-text-side { display: flex; flex-direction: column; justify-content: center;}
.v-blockquote {
    font-family: var(--font-brand); font-size: 1.5rem; font-style: italic; color: var(--black); line-height: 1.5;
    position: relative; padding: 1.5rem 0; margin: 1.5rem 0; border-top: 1px solid #ddd; border-bottom: 1px solid #ddd;
}
.v-details { border-bottom: 1px solid #eaeaea; padding-bottom: 1rem; }


/* =========================================
   FOOTER (Black)
   ========================================= */
.footer-black { background: var(--black); color: var(--white); padding: 5rem 0 2rem; font-family: var(--font-main); }
.footer-v-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem; align-items: center;}
.footer-black h4 { font-family: var(--font-brand); color: var(--secondary); font-size: 1.2rem; margin-bottom: 2rem; text-transform: none; }
.f-nav-col a { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1rem; color: #ccc;}
.f-nav-col a:hover { color: var(--white); }

.f-contact-col p { color: #ccc; margin-bottom: 0.5rem; font-size: 0.9rem;}


/* =========================================
   RESPONSIVITA
   ========================================= */
@media (max-width: 1024px) {
    .hero-split, .masonry-layout, .azura-layout { grid-template-columns: 1fr; flex-direction: column; height: auto; }
    .hero-left, .hero-right { width: 100%; }
    .hero-left { padding: 4rem 2rem 2rem 2rem; }
    .hero-right { min-height: 400px; display: none; /* Hide image right side if stacking gets weird, but ill keep it */}
    .hero-right { display: block; min-height: 50vh; }
    .hero-split { padding-top: 0; }
    
    .m-text-side { padding-right: 0;}
    
    .azura-img-side { padding: 0 0 3rem 0;}
    .azura-offset-border { left: 0; height: calc(100% - 3rem); width: calc(100% - 2rem); top: 2rem; }
    
    .footer-v-grid { grid-template-columns: 1fr; text-align: center; gap: 3rem;}
    .f-contact-col { text-align: center; }
}

@media (max-width: 768px) {
    .desktop-only { display: none !important; }
    .hamburger { display: block; color: var(--black); }
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    
    .v-cta-box { flex-direction: column; }
    .v-cta-box > div { padding: 2rem 1.5rem !important; border-top: 1px solid #eee; }
    
    .m-image-side { height: auto; margin-top: 3rem; }
    .m-img-single { width: 100%; max-width: 400px; margin: 0 auto; }
    
    .h-bubble { position: relative; display: inline-block; top: auto; left: auto; right: auto; bottom: auto; margin: 5px; }
    .hero-right { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; background: #eee; min-height: auto; padding: 2rem;}
    .hero-right img { display: block; width: 100%; max-width: 450px; margin: 0 auto; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
}

/* Utils z JS */
.animate-fade-in { animation: fadeIn 1s ease; }
@keyframes fadeIn { 0% { opacity: 0; transform: translateY(20px); } 100% { opacity: 1; transform: translateY(0); } }

/* =========================================
   COOKIE CONSENT
   ========================================= */
#cookie-bar {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: var(--white); border-top: 1px solid #eee;
    padding: 1.5rem 0; z-index: 10000;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.05);
    display: none;
}
#cookie-bar.active { display: block; }
.cookie-container { width: 85%; max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 2rem; }
.cookie-text { flex: 1; font-size: 0.9rem; line-height: 1.5; color: #555; }
.cookie-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.cookie-btn {
    padding: 0.7rem 1.5rem; font-size: 0.75rem; text-transform: uppercase;
    letter-spacing: 1px; font-weight: 600; border-radius: 50px;
    cursor: pointer; transition: 0.3s; border: 2px solid var(--secondary);
    background: var(--white); color: var(--secondary); white-space: nowrap;
}
.cookie-btn:hover { background: var(--secondary-text); color: var(--white); }
.cookie-btn.primary { background: var(--secondary-text); color: var(--white); }

/* Modal */
#cookie-modal {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5); z-index: 10001;
    display: none; align-items: center; justify-content: center;
}
#cookie-modal.active { display: flex; }
.cookie-modal-content {
    background: var(--white); padding: 3rem; border-radius: 15px;
    max-width: 600px; width: 90%; max-height: 90vh; overflow-y: auto;
}
.cookie-modal-content h3 { margin-bottom: 1.5rem; }
.cookie-cat { margin-bottom: 1.5rem; border-bottom: 1px solid #eee; padding-bottom: 1rem; }
.cookie-cat-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.5rem; }
.cookie-cat-header label { font-weight: 600; font-family: var(--font-main); }
.cookie-cat-desc { font-size: 0.85rem; color: #444; line-height: 1.4; }

/* Switch Toggle */
.switch { position: relative; display: inline-block; width: 40px; height: 22px; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider {
    position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0;
    background-color: #ccc; transition: .4s; border-radius: 34px;
}
.slider:before {
    position: absolute; content: ""; height: 16px; width: 16px; left: 3px; bottom: 3px;
    background-color: white; transition: .4s; border-radius: 50%;
}
input:checked + .slider { background-color: var(--secondary); }
input:checked + .slider:before { transform: translateX(18px); }
input:disabled + .slider { opacity: 0.5; cursor: default; }

/* YouTube & MailerLite Placeholders */
.cookie-placeholder {
    background: var(--bg-sand); border: 2px dashed var(--secondary);
    padding: 3rem; text-align: center; display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 1.5rem;
    aspect-ratio: 16/9; width: 100%; margin: 2rem 0;
}
.cookie-placeholder p { margin: 0; color: var(--primary); }

@media (max-width: 768px) {
    .cookie-container { flex-direction: column; text-align: center; padding: 1rem 0; }
    .cookie-btns { justify-content: center; width: 100%; }
    .cookie-btn { width: 100%; }
    .cookie-modal-content { padding: 2rem 1.5rem; }
}

/* =========================================
   BACK TO TOP BUTTON
   ========================================= */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--secondary);
    color: var(--white) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--black);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

/* =========================================================
   TEST VARIANTA – BENTO GRID + GLASSMORPHISM
   (samostatná vrstva stylů, aplikuje se jen na body.bento-test)
   ========================================================= */
body.bento-test {
    --glass-bg: rgba(255, 255, 255, 0.5);
    --glass-bg-strong: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 255, 255, 0.7);
    --glass-shadow: 0 8px 32px rgba(107, 96, 94, 0.12);
    --radius-lg: 24px;
    --radius-md: 20px;
    background:
        radial-gradient(circle at 12% 8%, rgba(202, 164, 120, 0.28), transparent 45%),
        radial-gradient(circle at 88% 15%, rgba(182, 195, 173, 0.35), transparent 50%),
        radial-gradient(circle at 20% 85%, rgba(182, 195, 173, 0.3), transparent 45%),
        radial-gradient(circle at 90% 90%, rgba(202, 164, 120, 0.22), transparent 50%),
        linear-gradient(180deg, #f7f4ee 0%, #f2efe6 100%);
    background-attachment: fixed;
}

/* Sekce nad barevným gradientem nesmí mít vlastní plné pozadí, jinak "prosvítání" nefunguje */
body.bento-test .bg-white,
body.bento-test .bg-v-sand,
body.bento-test .bg-brand-sage,
body.bento-test .keep-in-touch {
    background: transparent;
}

body.bento-test .header-v {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--glass-border);
}

body.bento-test .mobile-nav-panel {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* --- HERO --- */
body.bento-test .hero-split {
    height: auto;
    padding: 2.5rem 0 1rem;
    gap: 1.5rem;
}
body.bento-test .hero-left {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--glass-shadow);
    margin: 0 0 0 5%;
    padding: 4rem 3rem;
}
body.bento-test .hero-right {
    border-radius: var(--radius-lg);
    margin: 0 5% 0 0;
    overflow: hidden;
    box-shadow: var(--glass-shadow);
}
body.bento-test .h-bubble {
    background: var(--glass-bg-strong);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 6px 20px rgba(107, 96, 94, 0.15);
}

/* --- BENTO util --- */
body.bento-test .glass-tile {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    box-shadow: var(--glass-shadow);
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}
body.bento-test .glass-tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(107, 96, 94, 0.18);
    background: var(--glass-bg-strong);
}

/* --- PRO KOHO: bento grid bublin --- */
body.bento-test #pro-koho .v-bullets-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 1fr;
    gap: 1.25rem;
}
body.bento-test #pro-koho .v-bullet {
    margin: 0;
    padding: 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    box-shadow: var(--glass-shadow);
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}
body.bento-test #pro-koho .v-bullet:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(107, 96, 94, 0.18);
    background: var(--glass-bg-strong);
}
body.bento-test #pro-koho .v-bullet:nth-child(1),
body.bento-test #pro-koho .v-bullet:nth-child(6) { grid-column: span 2; }
body.bento-test #pro-koho .v-bullet svg { flex-shrink: 0; }

body.bento-test .v-quote-italic.text-center {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    box-shadow: var(--glass-shadow);
    padding: 2.5rem;
}

/* --- JAK PRACUJI --- */
body.bento-test .m-step {
    background: var(--glass-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    box-shadow: var(--glass-shadow);
    padding: 1.25rem 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
body.bento-test .m-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(107, 96, 94, 0.18);
}
body.bento-test .m-img-single {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--glass-border);
}
body.bento-test .photo-quote-box {
    background: rgba(17, 17, 17, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
}

/* --- SLUŽBY: karty jako bento glass --- */
body.bento-test .v-card,
body.bento-test .v-blog-card,
body.bento-test .audit-intro {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--glass-shadow);
    padding: 1.5rem;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
body.bento-test .v-card:hover,
body.bento-test .v-blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(107, 96, 94, 0.2);
}
body.bento-test .v-card-img,
body.bento-test .b-img-wrapper {
    border-radius: var(--radius-md);
    overflow: hidden;
}
body.bento-test .v-blog-card { background: var(--glass-bg); }
body.bento-test .b-content { padding: 2rem 0.5rem 0.5rem; }

/* Bento asymetrie u trojice audit karet – prostřední karta vystupuje jako "hero" dlaždice */
body.bento-test #sluzby .blog-v-grid.grid-3 {
    grid-template-columns: 1fr 1.15fr 1fr;
    align-items: stretch;
}
body.bento-test #sluzby .blog-v-grid.grid-3 .v-blog-card:nth-child(2) {
    transform: scale(1.03);
    box-shadow: 0 20px 50px rgba(202, 164, 120, 0.25);
}
body.bento-test #sluzby .blog-v-grid.grid-3 .v-blog-card:nth-child(2):hover {
    transform: scale(1.03) translateY(-8px);
}

body.bento-test .v-badge {
    box-shadow: 0 8px 20px rgba(202, 164, 120, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

/* --- CTA / ZÁVĚR --- */
body.bento-test .v-cta-box {
    background: var(--glass-bg-strong);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--glass-shadow);
    overflow: hidden;
}
body.bento-test .v-cta-box > div:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.5);
}
body.bento-test .kit-icon {
    background: var(--glass-bg-strong);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--glass-border);
}

/* --- O MNĚ --- */
body.bento-test .azura-img-side img {
    border-radius: var(--radius-lg);
}
body.bento-test .azura-offset-border {
    border-radius: var(--radius-lg);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
body.bento-test .v-blockquote {
    background: var(--glass-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 1.5rem 2rem;
    border-top: none;
    border-bottom: none;
}

/* --- FOOTER --- */
body.bento-test .footer-black {
    background: rgba(17, 17, 17, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* --- RESPONZIVITA BENTO --- */
@media (max-width: 1024px) {
    body.bento-test #pro-koho .v-bullets-grid { grid-template-columns: repeat(2, 1fr); }
    body.bento-test #sluzby .blog-v-grid.grid-3 { grid-template-columns: 1fr; }
    body.bento-test #sluzby .blog-v-grid.grid-3 .v-blog-card:nth-child(2) { transform: none; }
    body.bento-test #sluzby .blog-v-grid.grid-3 .v-blog-card:nth-child(2):hover { transform: translateY(-8px); }
    body.bento-test .hero-left,
    body.bento-test .hero-right { margin: 0 5%; }
}

@media (max-width: 768px) {
    body.bento-test #pro-koho .v-bullets-grid { grid-template-columns: 1fr; }
    body.bento-test #pro-koho .v-bullet:nth-child(1),
    body.bento-test #pro-koho .v-bullet:nth-child(6) { grid-column: span 1; }
    body.bento-test .hero-left,
    body.bento-test .hero-right { margin: 0 4%; padding: 2.5rem 1.5rem; }
    body.bento-test .v-cta-box > div:first-child { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.5); }
}

