/* ==========================================================================
   DESIGN SYSTEM & VARIABLES - DÍTĚ V KONDICI
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@500;600;700;800&display=swap');

:root {
    /* Color Palette */
    --color-forest: #1E3F20;
    --color-forest-light: #2b552d;
    --color-amber: #D97706;
    --color-amber-light: #F59E0B;
    --color-amber-dark: #B45309;
    --color-cream: #FAF6F0;
    --color-gray-light: #EFECE6;
    --color-gray-dark: #2B2D2F;
    --color-white: #FFFFFF;
    
    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout Constants */
    --container-width: 1200px;
    --border-radius-lg: 30px;
    --border-radius-md: 16px;
    --border-radius-sm: 8px;
    
    /* Shadow */
    --shadow-subtle: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
    
    /* Transitions */
    --transition-fast: all 0.2s ease;
    --transition-normal: all 0.3s ease;
}

/* ==========================================================================
   BASE & RESET
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-gray-dark);
    /* Split background representing Variant 2 Amber/Forest split */
    background: linear-gradient(90deg, var(--color-amber) 50%, var(--color-forest) 50%);
    min-height: 100vh;
    padding: 40px 20px;
    overflow-x: hidden;
    width: 100%;
}

/* Base Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-forest);
    font-weight: 700;
    line-height: 1.2;
}

p {
    margin-bottom: 1.5rem;
}

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

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

/* ==========================================================================
   LAYOUT STRUCTURE (Boxed Premium Container)
   ========================================================================== */
.site-container {
    max-width: var(--container-width);
    margin: 0 auto;
    background-color: var(--color-cream);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.section {
    padding: 80px 60px;
}

.section-alt {
    background-color: var(--color-white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--color-gray-dark);
    opacity: 0.85;
}

/* ==========================================================================
   BUTTONS & LINKS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
    line-height: 1.3;
}

.btn-primary {
    background-color: var(--color-amber);
    color: var(--color-white);
    box-shadow: 0 4px 14px rgba(217, 119, 6, 0.3);
}

.btn-primary:hover {
    background-color: var(--color-amber-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.4);
}

.btn-secondary {
    background-color: var(--color-forest);
    color: var(--color-white);
    box-shadow: 0 4px 14px rgba(30, 63, 32, 0.2);
}

.btn-secondary:hover {
    background-color: var(--color-forest-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 63, 32, 0.3);
}

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

.btn-outline:hover {
    background-color: var(--color-forest);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 60px;
    background-color: var(--color-cream);
    border-bottom: 1px solid rgba(30, 63, 32, 0.05);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-forest);
}

.logo span {
    color: var(--color-amber);
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-amber);
    position: relative;
    padding: 5px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--color-forest);
}

/* Dropdown Menu styling */
.nav-item-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.nav-dropdown-trigger svg {
    transition: var(--transition-fast);
}

.nav-item-dropdown:hover .nav-dropdown-trigger svg {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    min-width: 250px;
    padding: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-normal);
    z-index: 100;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 10px 15px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-gray-dark);
    border-radius: var(--border-radius-sm);
}

.dropdown-link:hover {
    background-color: var(--color-gray-light);
    color: var(--color-forest);
    padding-left: 20px;
}

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

/* ==========================================================================
   SEKCE 1: HERO
   ========================================================================== */
.hero {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 0;
    align-items: stretch;
    padding: 0;
    background-color: var(--color-cream);
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 80px 40px 80px 60px;
}

.hero-title {
    font-size: 3.4rem;
    line-height: 1.15;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 35px;
    color: var(--color-gray-dark);
    opacity: 0.9;
}

/* Custom organic wave left mask for Hero Image */
.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: var(--color-amber);
    clip-path: url(#hero-wave-clip);
    -webkit-clip-path: url(#hero-wave-clip);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition-normal);
}

.hero-image-wrapper:hover .hero-image {
    transform: scale(1.03);
}

/* ==========================================================================
   SEKCE 2: EMOČNÍ KOTVA ("Možná si říkáte...")
   ========================================================================== */
.emo-anchor-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.emo-card {
    border-radius: var(--border-radius-md);
    padding: 40px;
    box-shadow: var(--shadow-subtle);
}

.emo-card-excuses {
    background-color: var(--color-gray-light);
}

.emo-card-fears {
    background-color: var(--color-forest);
    color: var(--color-white);
}

.emo-card-fears h3 {
    color: var(--color-white);
}

.emo-card h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.emo-list {
    list-style: none;
}

.emo-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-size: 1.05rem;
}

.emo-card-excuses .emo-list li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #991B1B;
    font-weight: bold;
    font-size: 1.2rem;
}

.emo-card-fears .emo-list li::before {
    content: "!";
    position: absolute;
    left: 0;
    color: var(--color-amber-light);
    font-weight: bold;
    font-size: 1.2rem;
    background-color: rgba(255, 255, 255, 0.1);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.emo-footer {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background-color: var(--color-cream);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(30, 63, 32, 0.08);
}

.emo-footer p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-forest);
    margin-bottom: 20px;
}

/* ==========================================================================
   SEKCE 3: TŘI CESTY (Karty cílových skupin)
   ========================================================================== */
.cs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.cs-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    display: flex;
    flex-direction: column;
    transition: var(--transition-normal);
}

.cs-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.cs-image-wrapper {
    display: block;
    height: 220px;
    overflow: hidden;
}

.cs-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.cs-card:hover .cs-image {
    transform: scale(1.05);
}

.cs-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
    align-items: center;
}

.cs-title {
    font-size: 1.35rem;
    margin-bottom: 15px;
    text-align: center;
}

.cs-text {
    font-size: 0.95rem;
    color: var(--color-gray-dark);
    margin-bottom: 25px;
    flex-grow: 1;
    text-align: center;
}

.cs-content .btn {
    margin-top: auto;
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* ==========================================================================
   SEKCE 4: PRODUKTY / PROGRAMY
   ========================================================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(30, 63, 32, 0.05);
    padding: 40px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-normal);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* Highlighted product card (Komplexní program) */
.product-card-highlight {
    border: 2px solid var(--color-amber);
    background-color: var(--color-cream);
}

.product-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-amber);
    color: var(--color-white);
    padding: 5px 20px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-image {
    height: 120px;
    object-fit: contain;
    margin: 0 auto 20px auto;
}

.product-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-price {
    font-size: 2rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--color-amber);
    margin-bottom: 20px;
}

.product-desc {
    font-size: 0.95rem;
    margin-bottom: 30px;
    flex-grow: 1;
}

/* Diagnostics Box */
.diagnostics-box {
    background-color: var(--color-forest);
    color: var(--color-white);
    border-radius: var(--border-radius-md);
    padding: 50px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    box-shadow: var(--shadow-md);
}

.diagnostics-left h3 {
    color: var(--color-white);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.diagnostics-left p {
    font-size: 1.05rem;
    margin-bottom: 25px;
    opacity: 0.95;
}

.diagnostics-list {
    list-style: none;
}

.diagnostics-list li {
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.diagnostics-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-amber-light);
    font-weight: bold;
    font-size: 1.1rem;
}

.diagnostics-right {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    padding: 35px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.diagnostics-meta {
    background-color: var(--color-amber);
    color: var(--color-white);
    padding: 4px 15px;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.diagnostics-price {
    font-size: 2.2rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--color-amber-light);
    margin-bottom: 20px;
}

.diagnostics-note {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 15px;
}

/* ==========================================================================
   SEKCE 5: REFERENCE LÉKAŘE (Sociální důkaz)
   ========================================================================== */
.doctor-quote-box {
    background-color: var(--color-white);
    border-left: 6px solid var(--color-amber);
    border-radius: var(--border-radius-md);
    padding: 50px;
    box-shadow: var(--shadow-subtle);
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.doctor-quote-icon {
    position: absolute;
    top: 25px;
    left: 30px;
    font-size: 5rem;
    line-height: 1;
    font-family: Georgia, serif;
    color: var(--color-amber);
    opacity: 0.15;
}

.doctor-quote-text {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--color-gray-dark);
    position: relative;
    z-index: 2;
}

.doctor-profile {
    display: flex;
    align-items: center;
    gap: 20px;
}

.doctor-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-amber);
}

.doctor-info h4 {
    font-size: 1.1rem;
    color: var(--color-forest);
    margin-bottom: 3px;
}

.doctor-info p {
    font-size: 0.85rem;
    margin-bottom: 0;
    opacity: 0.8;
}

/* ==========================================================================
   SEKCE 6: KDO TO VYTVOŘIL (Olga)
   ========================================================================== */
.about-split {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-image {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center top;
}

.about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
}

.about-role-list {
    margin-bottom: 35px;
}

.about-role-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.about-role-icon {
    font-size: 2rem;
    background-color: var(--color-gray-light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-role-info h4 {
    font-size: 1.15rem;
    margin-bottom: 5px;
}

.about-role-info p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.about-footer {
    display: flex;
    align-items: center;
    gap: 30px;
    border-top: 1px solid var(--color-gray-light);
    padding-top: 25px;
}

/* ==========================================================================
   SEKCE 7: REFERENCE (Klientské příběhy)
   ========================================================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.testimonial-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    padding: 40px;
    box-shadow: var(--shadow-subtle);
    display: flex;
    flex-direction: column;
}

.testimonial-quote {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--color-gray-dark);
    margin-bottom: 25px;
    flex-grow: 1;
    line-height: 1.7;
}

.testimonial-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--color-gray-light);
    padding-top: 20px;
}

.testimonial-author {
    font-weight: 700;
    color: var(--color-forest);
    font-size: 1.05rem;
}

.testimonial-program {
    font-size: 0.85rem;
    background-color: var(--color-cream);
    color: var(--color-amber-dark);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
}

.testimonials-footer {
    text-align: center;
    margin-top: 30px;
}

/* ==========================================================================
   SEKCE 8: LEAD MAGNET (Ebook zdarma)
   ========================================================================== */
.lead-magnet-box {
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    padding: 60px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.lead-magnet-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.lead-magnet-image {
    max-height: 380px;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.15));
    transition: var(--transition-normal);
}

.lead-magnet-box:hover .lead-magnet-image {
    transform: translateY(-5px) rotate(2deg);
}

.lead-magnet-content h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.lead-magnet-subtitle {
    font-size: 1.25rem;
    color: var(--color-amber-dark);
    font-weight: 600;
    margin-bottom: 25px;
}

.lead-magnet-list {
    list-style: none;
    margin-bottom: 30px;
}

.lead-magnet-list li {
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    font-size: 1rem;
    font-weight: 500;
}

.lead-magnet-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-forest);
    font-weight: bold;
    font-size: 1.15rem;
}

/* Form Styles */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-input {
    width: 100%;
    padding: 14px 20px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    border: 1px solid rgba(30, 63, 32, 0.15);
    background-color: var(--color-cream);
    border-radius: 30px;
    outline: none;
    transition: var(--transition-fast);
}

.form-input:focus {
    border-color: var(--color-amber);
    background-color: var(--color-white);
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}

.form-textarea {
    grid-column: span 2;
    min-height: 120px;
    resize: vertical;
    border-radius: 16px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-checkbox-label {
    grid-column: span 2;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 6px 0 12px 0;
    font-size: 0.88rem;
    color: var(--color-gray-dark);
    cursor: pointer;
    text-align: left;
    user-select: none;
    line-height: 1.4;
}

.form-checkbox-label input[type="checkbox"] {
    margin-top: 2px;
    accent-color: var(--color-forest);
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
}

.form-checkbox-label a {
    color: var(--color-forest);
    font-weight: 600;
    text-decoration: underline;
}

.form-checkbox-label a:hover {
    color: var(--color-amber);
}

.form-submit-wrapper {
    margin-top: 10px;
}

.form-status-box {
    display: none;
    padding: 30px 24px;
    border-radius: var(--border-radius-md);
    margin-top: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.form-status-box.success {
    display: block;
    background-color: #F3F8F4;
    border: 1.5px solid #A5D6A7;
    color: var(--color-forest);
    animation: fadeIn 0.4s ease;
}

.form-status-box.error {
    display: block;
    background-color: #FDF4F4;
    border: 1.5px solid #F8B4B4;
    color: #9B1C1C;
    animation: fadeIn 0.4s ease;
}

.form-status-icon {
    font-size: 2.2rem;
    line-height: 1;
    margin-bottom: 12px;
    display: inline-block;
}

.form-status-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: inherit;
}

.form-status-desc {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    color: inherit;
    opacity: 0.9;
}

.form-consent {
    font-size: 0.8rem;
    color: var(--color-gray-dark);
    opacity: 0.7;
    margin-top: 10px;
}

/* ==========================================================================
   SEKCE 9: BLOG PREVIEW
   ========================================================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    display: flex;
    flex-direction: column;
    transition: var(--transition-normal);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.blog-image-wrapper {
    display: block;
    height: 180px;
    overflow: hidden;
    background-color: var(--color-forest);
}

.blog-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.blog-card:hover .blog-card-image {
    transform: scale(1.04);
}

.blog-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta-row {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    color: var(--color-gray-dark);
    opacity: 0.7;
    margin-bottom: 12px;
}

.blog-card-title {
    font-size: 1.15rem;
    margin-bottom: 12px;
    line-height: 1.35;
    flex-grow: 1;
}

.blog-card-perex {
    font-size: 0.9rem;
    color: var(--color-gray-dark);
    opacity: 0.85;
    margin-bottom: 20px;
}

.blog-read-more {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-amber-dark);
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.blog-card:hover .blog-read-more {
    color: var(--color-forest);
}

/* ==========================================================================
   SEKCE 10: KONTAKT
   ========================================================================== */
.contact-section {
    background-color: var(--color-cream);
}

.contact-split {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 1.05rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.contact-details {
    margin-bottom: 35px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-detail-item a:hover {
    color: var(--color-amber);
}

.contact-detail-icon {
    width: 40px;
    height: 40px;
    background-color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-forest);
    font-size: 1.2rem;
    box-shadow: var(--shadow-subtle);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon-btn {
    width: 45px;
    height: 45px;
    background-color: var(--color-forest);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: var(--transition-normal);
}

.social-icon-btn:hover {
    background-color: var(--color-amber);
    transform: translateY(-3px);
}

.contact-form-box {
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    padding: 40px;
    box-shadow: var(--shadow-subtle);
}

/* ==========================================================================
   PATIČKA (Footer)
   ========================================================================== */
.footer {
    background-color: var(--color-forest);
    color: var(--color-white);
    padding: 60px 60px 30px 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 15px;
}

.footer-logo span {
    color: var(--color-amber-light);
}

.footer-brand p {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 0;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-menu-col h5 {
    color: var(--color-white);
    font-size: 1.05rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    font-size: 0.95rem;
    opacity: 0.8;
}

.footer-menu a:hover {
    opacity: 1;
    color: var(--color-amber-light);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.85rem;
    opacity: 0.7;
}

.footer-bottom p a {
    color: var(--color-amber-light);
    font-weight: normal;
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-bottom p a:hover {
    color: #fde68a;
    text-decoration: underline;
}

.footer-legal-links {
    display: flex;
    gap: 25px;
}

.footer-legal-links a:hover {
    color: var(--color-amber-light);
}

/* ==========================================================================
   SUBPAGE HERO SECTION (Image Left, Text Right with Wave)
   ========================================================================== */
.hero-subpage {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 0;
    align-items: stretch;
    padding: 0;
    background-color: var(--color-cream);
    overflow: hidden;
    height: 380px;
}

.hero-subpage-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: var(--color-amber);
    clip-path: url(#hero-left-wave-clip);
    -webkit-clip-path: url(#hero-left-wave-clip);
}

.hero-subpage-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-subpage-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 60px 40px 60px 60px;
}

.hero-subpage-title {
    font-size: 2.3rem;
    line-height: 1.25;
    color: var(--color-forest);
    font-family: var(--font-heading);
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-subpage-intro {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--color-gray-dark);
    margin-bottom: 0;
}

/* ==========================================================================
   TABLES STYLING
   ========================================================================== */
.table-wrapper {
    overflow-x: auto;
    margin: 35px 0;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(30, 63, 32, 0.1);
}

.custom-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--color-white);
    text-align: left;
    font-family: var(--font-body);
    font-size: 0.95rem;
}

.custom-table th {
    background-color: var(--color-forest);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    padding: 16px 20px;
    letter-spacing: 0.5px;
}

.custom-table td {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(30, 63, 32, 0.05);
    color: var(--color-gray-dark);
}

.custom-table tr:last-child td {
    border-bottom: none;
}

.custom-table tr:nth-child(even) {
    background-color: rgba(239, 236, 230, 0.4);
}

.custom-table tr:hover {
    background-color: rgba(217, 119, 6, 0.03);
}

@media (max-width: 768px) {
    .custom-table {
        display: block;
    }
    
    .custom-table thead {
        display: none;
    }
    
    .custom-table tbody, .custom-table tr, .custom-table td {
        display: block;
        width: 100%;
    }
    
    .custom-table tr {
        border-bottom: 2px solid rgba(30, 63, 32, 0.1);
        padding: 15px 0;
    }
    
    .custom-table tr:last-child {
        border-bottom: none;
    }
    
    .custom-table td {
        border-bottom: none;
        padding: 8px 20px;
        position: relative;
        text-align: left;
    }
    
    .custom-table td::before {
        content: attr(data-label) ":";
        display: block;
        margin-bottom: 4px;
        font-weight: 600;
        color: var(--color-forest);
        font-family: var(--font-heading);
    }
}


/* ==========================================================================
   RESPONSIVENESS (Media Queries)
   ========================================================================== */

/* Tablet & Smaller Layout adjustments */
@media (max-width: 1024px) {
    body {
        padding: 0;
        background: var(--color-cream);
    }
    
    .site-container {
        border-radius: 0;
        box-shadow: none;
    }
    
    .section {
        padding: 60px 30px;
    }
    
    .hero {
        gap: 30px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .cs-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 50px auto;
    }
    
    .diagnostics-box {
        grid-template-columns: 1fr;
        padding: 40px 30px;
    }
    
    .about-split {
        display: flex;
        flex-direction: column-reverse;
        gap: 40px;
    }
    
    .about-image {
        height: 400px;
        object-position: center top;
    }

    .about-footer {
        width: 100%;
        display: flex;
        justify-content: center;
        border-top: none;
        padding-top: 15px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .lead-magnet-box {
        grid-template-columns: 1fr;
        padding: 40px;
        text-align: center;
    }
    
    .lead-magnet-list {
        display: inline-block;
        text-align: left;
    }
    
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: none;
        margin: 0;
    }
    
    .contact-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-grid {
        display: flex;
        flex-direction: column;
        gap: 14px;
        margin-bottom: 15px;
        width: 100%;
    }
    
    .form-group,
    .form-group.full-width,
    .form-textarea,
    .form-checkbox-label {
        width: 100%;
        max-width: 100%;
        grid-column: auto;
        box-sizing: border-box;
    }
    
    .header {
        padding: 20px 30px;
    }
    
    .footer {
        padding: 50px 30px 30px 30px;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }

    body {
        padding: 0;
        background: var(--color-cream);
    }

    .site-container {
        border-radius: 0;
        box-shadow: none;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .section {
        padding: 45px 20px;
        overflow-x: hidden;
    }

    .header {
        position: relative;
        padding: 16px 20px;
    }
    
    .nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--color-cream);
        padding: 20px;
        border-bottom: 2px solid var(--color-forest);
        box-shadow: var(--shadow-md);
        z-index: 1000;
        gap: 15px;
    }
    
    .nav.open,
    .nav.active {
        display: flex;
    }

    .nav-item-dropdown {
        width: 100%;
        text-align: center;
    }

    .nav-link {
        text-align: center;
        justify-content: center;
    }

    .nav-dropdown-trigger {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        width: 100%;
        text-align: center;
        cursor: pointer;
    }

    .nav-item-dropdown .dropdown-menu {
        position: static;
        min-width: unset;
        width: 100%;
        box-shadow: none;
        padding: 10px 15px;
        background-color: rgba(30, 63, 32, 0.04);
        border-radius: var(--border-radius-sm);
        margin-top: 5px;
        transform: none;
        opacity: 0;
        visibility: hidden;
        display: none;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }

    .dropdown-link {
        text-align: center;
        width: 100%;
    }
    
    .nav-item-dropdown.open .dropdown-menu,
    .nav-item-dropdown.active .dropdown-menu {
        display: flex;
        opacity: 1;
        visibility: visible;
    }

    .nav-item-dropdown.open .nav-dropdown-trigger svg,
    .nav-item-dropdown.active .nav-dropdown-trigger svg {
        transform: rotate(180deg);
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
        padding: 0 0 30px 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
        text-align: center;
    }

    .hero-subtitle {
        text-align: center;
    }
    
    .hero-image-wrapper {
        clip-path: none;
        -webkit-clip-path: none;
        border-radius: 60px 30px 60px 30px;
        height: 360px;
        background-color: var(--color-amber);
    }
    
    .hero-image {
        height: 100%;
        object-fit: cover;
    }

    .hero-subpage {
        grid-template-columns: 1fr;
        height: auto;
        padding: 40px 20px;
        text-align: center;
    }
    
    .hero-subpage-content {
        grid-row: 1;
        align-items: center;
        padding: 0 0 30px 0;
    }
    
    .hero-subpage-title {
        font-size: 2rem;
        text-align: center;
    }

    .hero-subpage-intro {
        text-align: center;
    }
    
    .hero-subpage-image-wrapper {
        grid-row: 2;
        clip-path: none;
        -webkit-clip-path: none;
        border-radius: 60px 30px 60px 30px;
        height: 280px;
        background-color: var(--color-amber);
    }
    
    .hero-subpage-image {
        height: 100%;
        object-fit: cover;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .emo-anchor-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .emo-card {
        padding: 30px 20px;
    }
    
    .lead-magnet-box {
        grid-template-columns: 1fr;
        padding: 30px 20px;
        gap: 30px;
    }

    .lead-magnet-image {
        max-height: 280px;
    }

    .form-grid {
        display: flex;
        flex-direction: column;
        gap: 14px;
        margin-bottom: 15px;
        width: 100%;
    }
    
    .form-group,
    .form-group.full-width,
    .form-textarea,
    .form-checkbox-label {
        width: 100%;
        max-width: 100%;
        grid-column: auto;
        box-sizing: border-box;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
        width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-legal-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* ==========================================================================
   PRODUCT HERO SECTION (Text Left, Image Right - High, Uncropped)
   ========================================================================== */
.hero-product {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
    padding: 60px 80px;
    background-color: var(--color-cream);
    min-height: 480px;
}

.hero-product-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-product-title {
    font-size: 2.6rem;
    color: var(--color-forest);
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-product-intro {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--color-gray-dark);
    margin-bottom: 0;
}

.hero-product-image-wrapper {
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-product-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.08));
}

@media (max-width: 1024px) {
    .hero-product {
        grid-template-columns: 1fr;
        padding: 40px 30px;
        gap: 30px;
        min-height: auto;
    }
    .hero-product-content {
        text-align: center;
    }
    .hero-product-title {
        font-size: 2.1rem;
    }
    .hero-product-image-wrapper {
        height: 320px;
    }
}

/* Unified styling for product landing page hero mockups to create a uniform orange frame */
.hero-product-page .hero-image-wrapper {
    padding: 30px 40px 30px 10px;
    background-color: var(--color-amber);
    box-sizing: border-box;
}

.hero-product-page .hero-image {
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.1));
}

@media (max-width: 1024px) {
    .hero-product-page .hero-image-wrapper {
        padding: 20px 20px 20px 10px;
        height: 320px;
    }
}

/* ==========================================================================
   BLOG POST DETAIL STYLING
   ========================================================================== */
.blog-post-container {
    max-width: 800px;
    margin: 40px auto 80px auto;
    padding: 0 20px;
}

.blog-post-header {
    margin-bottom: 35px;
    text-align: center;
}

.blog-post-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 0.9rem;
    color: var(--color-gray-dark);
    opacity: 0.7;
    margin-top: 15px;
    flex-wrap: wrap;
}

.blog-post-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-post-meta-label {
    font-weight: 600;
    color: var(--color-forest);
}

.blog-post-featured-wrapper {
    margin-bottom: 40px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 400px;
    background-color: var(--color-forest);
}

.blog-post-featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-post-body {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-gray-dark);
}

.blog-post-body p {
    margin-bottom: 25px;
}

.blog-post-placeholder-box {
    background-color: var(--color-cream);
    border: 2px dashed rgba(30, 63, 32, 0.15);
    border-radius: var(--border-radius-md);
    padding: 60px 40px;
    text-align: center;
    margin: 40px 0;
}

.blog-post-placeholder-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.blog-post-placeholder-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--color-forest);
    font-weight: 700;
    margin-bottom: 10px;
}

.blog-post-placeholder-text {
    font-size: 1.1rem;
    color: var(--color-gray-dark);
    opacity: 0.8;
    max-width: 500px;
    margin: 0 auto 30px auto;
}

/* ==========================================================================
   REFERENCE PAGE STYLING
   ========================================================================== */
.reference-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

@media (max-width: 768px) {
    .blog-post-featured-wrapper {
        height: 250px;
    }
    .reference-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ==========================================================================
   LINK STYLING IN TESTIMONIALS
   ========================================================================== */
.testimonial-program a {
    color: var(--color-amber-dark);
    text-decoration: underline;
}

.testimonial-program a:hover {
    color: var(--color-forest);
}

.doctor-info p a {
    color: var(--color-amber-dark);
    text-decoration: underline;
    font-weight: 600;
}

.doctor-info p a:hover {
    color: var(--color-forest);
}

/* ==========================================================================
   FAPI OBJEDNÁVKOVÉ FORMULÁŘE A ZÁLOŽKY
   ========================================================================== */
.product-order-section {
    margin-top: 50px;
    scroll-margin-top: 110px;
}

.order-form-container {
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg, 16px);
    padding: 45px 40px;
    box-shadow: 0 10px 30px rgba(30, 63, 32, 0.08);
    border: 1px solid rgba(30, 63, 32, 0.08);
    max-width: 800px;
    margin: 0 auto;
}

.order-form-header {
    text-align: center;
    margin-bottom: 30px;
}

.order-form-header h3 {
    font-size: 1.8rem;
    color: var(--color-forest);
    font-family: var(--font-heading);
    margin-bottom: 12px;
}

.order-form-header p {
    font-size: 1.05rem;
    color: var(--color-gray-dark);
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto 20px auto;
}

.order-price-tag {
    display: inline-block;
    background-color: var(--color-cream);
    color: var(--color-forest);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 1.6rem;
    font-weight: 800;
    font-family: var(--font-heading);
    border: 1px solid rgba(30, 63, 32, 0.1);
    margin-bottom: 15px;
}

.order-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.order-tab {
    background-color: var(--color-cream-light);
    color: var(--color-forest);
    border: 2px solid rgba(30, 63, 32, 0.15);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 700;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.order-tab:hover {
    border-color: var(--color-amber);
    background-color: #fff8f0;
}

.order-tab.active {
    background-color: var(--color-amber);
    color: var(--color-forest-dark);
    border-color: var(--color-amber-dark);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25);
}

.variant-info-badge {
    text-align: center;
    background-color: var(--color-cream-light);
    border-radius: var(--border-radius-sm, 8px);
    padding: 15px;
    margin-bottom: 25px;
    border-left: 4px solid var(--color-amber);
}

.variant-info-badge h4 {
    font-size: 1.2rem;
    color: var(--color-forest);
    margin-bottom: 4px;
    font-family: var(--font-heading);
}

.variant-info-badge p {
    font-size: 0.95rem;
    color: var(--color-gray-dark);
    margin-bottom: 0;
}

.fapi-form-wrapper {
    width: 100%;
    min-height: 250px;
}

.fapi-form-wrapper iframe {
    width: 100% !important;
    border: none !important;
}

.order-trust-note {
    text-align: center;
    font-size: 0.88rem;
    color: var(--color-gray-dark);
    opacity: 0.75;
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.order-trust-note span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* ==========================================================================
   ABOUT PAGE SPECIFIC STYLES
   ========================================================================== */
.about-page-section {
    background-color: var(--color-white);
}

.why-created-box {
    margin-top: 40px;
    padding: 40px 35px;
    background-color: var(--color-cream);
    border-radius: var(--border-radius-md);
    border-left: 4px solid var(--color-amber);
}

.why-created-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 25px;
}

.why-created-item h3 {
    font-size: 1.25rem;
    color: var(--color-forest);
    margin-bottom: 8px;
}

.why-created-item p {
    margin-bottom: 0;
    font-size: 0.98rem;
    line-height: 1.6;
}

.vision-section {
    background-color: var(--color-forest);
    color: var(--color-white);
    text-align: center;
}

.vision-box {
    max-width: 850px;
    margin: 0 auto;
    padding: 10px 0;
}

.vision-text {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .why-created-box {
        padding: 25px 18px;
        margin-top: 30px;
    }
    
    .vision-text {
        font-size: 1.05rem;
    }
}

