:root {
    --color-bg-body: #fbf7f4;
    --color-bg-card: #ffffff;
    --color-bg-footer: #eeeadd;
    
    --color-text-primary: #1a1a1a;
    --color-text-secondary: #4a4a4a;
    
    --color-btn-green: #899c86;
    --color-btn-green-hover: #768a73;
    --color-btn-orange: #e8aca0;
    --color-btn-orange-hover: #d6988c;
    --color-btn-dark: #2c2c2c;
    
    --color-accent-gold: #f0c56d; /* For stars */
    
    --font-heading: 'Merriweather', serif;
    --font-body: 'Open Sans', sans-serif;
    
    --spacing-container: 1200px;
    --border-radius-lg: 20px;
    --border-radius-md: 12px;
    --box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-body);
    color: var(--color-text-primary);
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--color-text-primary);
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

.container {
    max-width: var(--spacing-container);
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
}

.btn-green {
    background-color: var(--color-btn-green);
    color: white;
}
.btn-green:hover { background-color: var(--color-btn-green-hover); }

.btn-orange {
    background-color: var(--color-btn-orange);
    color: white; 
} /* The text color might be dark in some designs, but white is safer accessible contrast usually. Checking image.. looks like dark text on orange button? Let's check contrast. Orange #e8aca0 is quite light. Dark text might be better. */
.btn-orange { color: #1a1a1a; } 
.btn-orange:hover { background-color: var(--color-btn-orange-hover); }


.btn-dark {
    background-color: var(--color-btn-dark);
    color: white;
}

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

.btn-outline-dark {
    background-color: transparent;
    border: 1px solid var(--color-text-primary);
    color: var(--color-text-primary);
}
.btn-outline-dark:hover {
    background-color: var(--color-text-primary);
    color: white;
}


/* --- Header --- */
header {
    padding: 20px 0;
    background-color: #f5ebe3;
}

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

.logo-text {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-text .icon { font-size: 2rem; }
.logo-text .text {
    display: flex;
    flex-direction: column;
    font-family: var(--font-heading);
    font-weight: bold;
    font-size: 0.9rem;
    line-height: 1.2;
}

nav ul {
    display: flex;
    gap: 25px;
}
nav a {
    font-weight: 600;
    color: var(--color-text-primary);
    font-size: 0.95rem;
}
nav a:hover { color: var(--color-btn-green); }

.header-buttons {
    display: flex;
    gap: 10px;
}

.mobile-menu-icon {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- Hero Section --- */
.hero {
    padding: 60px 0 80px;
    overflow: hidden;
}

.hero .container {
    overflow: visible;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 20px;
    align-items: center;
    overflow: visible;
    position: relative;
}

.hero-image {
    position: relative;
    margin-right: -100px;
    z-index: 1;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin-bottom: 30px;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.features {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-secondary);
}
.features span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-image .image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.hero-image .image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 100%;
    background: linear-gradient(to right, var(--color-bg-body) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-image img {
    border-radius: 20px;
    display: block;
    width: 100%;
    min-width: 600px;
    object-fit: cover;
}


/* --- Courses Section --- */
.courses {
    padding: 60px 0;
    background-color: #ffffff;
}

.courses h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.courses-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.course-card {
    background-color: var(--color-bg-card);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    padding: 40px;
    transition: transform 0.3s ease;
}
.course-card:hover { transform: translateY(-5px); }

.course-card.mimi { background-color: #fcf6f3; } /* Light warm tint */
.course-card.harmonie { background-color: #f7f3ec; } /* Light beige tint */

.course-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.styled-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}
.styled-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-text-primary);
    font-weight: bold;
}

.price {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: bold;
    margin: 25px 0;
}

.card-buttons {
    display: flex;
    gap: 15px;
}

.courses-note {
    text-align: center;
    margin-top: 30px;
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

/* --- How it works --- */
.how-it-works {
    padding: 80px 0;
    background-color: var(--color-bg-body);
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.step {
    padding: 20px;
}

.icon-box {
    background-color: #eeeadd;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.icon-box img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.step h4 {
    font-size: 1.1rem;
    line-height: 1.4;
}

/* --- Trainer Section --- */
.trainer {
    padding: 80px 0;
    background-color: #ffffff;
}

.trainer h2 { margin-bottom: 40px; display: none; } /* Hidden in reference layout, but good for semantics */

.trainer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
    background-color: #f9f5f1;
    border-radius: var(--border-radius-lg);
    padding: 60px;
}

.trainer-image img {
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.trainer-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}
.trainer-text p {
    color: var(--color-text-secondary);
    margin-bottom: 30px;
    line-height: 1.7;
}

.trainer-badges {
    display: flex;
    gap: 30px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.2;
}
.badge .icon {
    font-size: 1.5rem;
}

/* --- Testimonials --- */
.testimonials {
    padding: 80px 0;
    text-align: center;
}

.testimonials h2 {
    margin-bottom: 40px;
    font-size: 2rem;
}

.testimonials-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.testimonials-slider {
    display: flex;
    gap: 20px;
    overflow: hidden;
    max-width: 900px; /* Show maybe 3 cards or 1 wide one */
}

/* Mocking carousel look for CSS-only visualization */
.testimonial-card {
    background-color: #ffffff;
    border: 1px solid #efefef;
    border-radius: 12px;
    padding: 30px;
    flex: 0 0 calc((100% - 20px) / 2);
    min-width: 280px;
    text-align: left;
}

.stars {
    color: var(--color-accent-gold);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.quote {
    font-style: italic;
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--color-text-secondary);
}

.slider-arrow {
    background: none;
    border: 1px solid #ccc;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-arrow:hover {
    background-color: #eee;
}

.slider-arrow:disabled {
    opacity: 0.4;
    cursor: default;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}
.dot {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    padding: 0;
}
.dot.active { background-color: var(--color-btn-orange); }


/* --- FAQ Section --- */
.faq-section {
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.faq-list h3 {
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.accordion-item {
    border-bottom: 1px solid #ddd;
}
.accordion-header {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 0;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
}

.accordion-body {
    display: none; /* JS will toggle */
    padding-bottom: 20px;
    color: var(--color-text-secondary);
}
.accordion-item.active .accordion-body { display: block; }
.accordion-item.active .arrow { transform: rotate(180deg); transition: transform 0.3s; }

.contact-box {
    background-color: #eeeadd;
    padding: 40px;
    border-radius: var(--border-radius-lg);
}

.contact-box h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.contact-details p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icons {
    margin: 20px 0;
    display: flex;
    gap: 15px;
}
.social-icon {
    font-size: 1.5rem;
    text-decoration: none;
}

.form-placeholder {
    background: #e0e0e0;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 0.8rem;
}

/* --- Footer --- */
footer {
    background-color: var(--color-bg-footer);
    padding: 40px 0;
    font-size: 0.85rem;
    color: var(--color-text-secondary);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 20px;
}
.footer-links a:hover { text-decoration: underline; }

/* --- Sales Page (Mimi a pes) --- */
.sales-page .logo {
    display: block;
}

.sales-hero {
    padding-bottom: 60px;
}

/* --- Sales page typography spacing --- */

/* Hero: bullet list needs bottom margin before next paragraph */
.sales-page .hero-text .sales-bullets {
    margin-top: 8px;
    margin-bottom: 24px;
}

/* Hero: sales-note paragraph - smaller font, italic, less aggressive margin */
.sales-page .hero-text .sales-note {
    font-size: 0.92rem;
    font-style: italic;
    margin-bottom: 28px;
}

/* Generic paragraph spacing inside sales sections (not hero) */
.sales-section p + p {
    margin-top: 16px;
}

/* Card internals */
.sales-card h3 {
    margin-bottom: 18px;
}

.sales-card p {
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.sales-card p + p {
    margin-top: 14px;
}

.sales-card .sales-checklist,
.sales-card .sales-bullets {
    margin-top: 12px;
}

/* Two-column layout: left text column spacing */
.sales-two-col > div:not(.sales-card) > h2 {
    margin-bottom: 22px;
}

.sales-two-col > div:not(.sales-card) > p {
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

/* Scenario cards */
.scenario-card {
    display: flex;
    flex-direction: column;
}

.scenario-card h3 {
    margin-bottom: 14px;
}

.scenario-card p {
    line-height: 1.7;
}

/* Wide callout */
.sales-wide-callout h3 {
    margin-bottom: 20px;
}

/* Price aside */
.sales-price-aside h3 {
    margin-bottom: 16px;
}

.sales-price-aside p {
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.sales-price-aside p + p {
    margin-top: 14px;
}

/* Testimonial card paragraph spacing */
.testimonial-card p {
    margin-bottom: 14px;
    line-height: 1.7;
}

.testimonial-card .quote {
    font-size: 1.05rem;
    font-weight: 600;
    font-style: normal;
    color: var(--color-text-primary);
}

.testimonial-card cite {
    display: block;
    margin-top: 18px;
    font-weight: 600;
    font-style: normal;
    color: var(--color-text-primary);
    font-size: 0.9rem;
}

/* FAQ section spacing */
.faq-section .accordion + .sales-final-cta {
    margin-top: 50px;
    margin-bottom: 50px;
}

.faq-section .sales-final-cta + h3 {
    margin-top: 10px;
}

.accordion-body {
    line-height: 1.7;
}

.accordion-body p + p {
    margin-top: 12px;
}

/* Trainer section: stat box visual separation */
.sales-stat {
    padding-top: 22px;
    border-top: 1px solid #e0dcd6;
}

/* Curriculum section: "háček" card spacing */
.sales-section .sales-card + .sales-lead {
    margin-top: 50px;
}

/* Note after scenario cards */
.sales-scenarios + .sales-note {
    margin-top: 28px;
}

/* Improve scenario cards equal height */
.sales-scenarios {
    align-items: stretch;
}

/* Second sales-lead in curriculum ("Co vás čeká") spacing */
.sales-lead + .sales-two-col {
    margin-top: 10px;
}

/* Checklist after heading in wide callout */
.sales-wide-callout .sales-checklist {
    margin-top: 14px;
}

/* Trainer section: last paragraph before stat */
.trainer-text p:last-of-type {
    margin-bottom: 24px;
}

/* Testimonials: first paragraph (name) styling */
.testimonial-card .quote {
    border-bottom: 1px solid #f0ece6;
    padding-bottom: 14px;
}

/* Footer spacing */
.sales-page footer {
    margin-top: 0;
}

.footer-address p + p {
    margin-top: 4px;
}

.sales-page .trainer h2 {
    display: block;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.sales-section {
    padding: 80px 0;
}

.sales-section--alt {
    background-color: #ffffff;
}

.sales-lead {
    text-align: center;
    margin-bottom: 40px;
}

.sales-sublead {
    color: var(--color-text-secondary);
    font-size: 1.05rem;
    margin-top: 10px;
}

.sales-two-col {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
    align-items: start;
}

.sales-card {
    background-color: var(--color-bg-card);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    padding: 36px;
}

.sales-card--callout {
    background: #f9f5f1;
    border: 1px solid #eee;
}

.sales-note {
    color: var(--color-text-secondary);
    margin-top: 18px;
}

.sales-strong {
    font-weight: 700;
    margin-top: 16px;
}

.sales-inline-cta {
    margin-top: 18px;
}

.sales-bullets li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
    color: var(--color-text-secondary);
}
.sales-bullets li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-text-primary);
    font-weight: 700;
}

.sales-checklist li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: var(--color-text-secondary);
}
.sales-checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-btn-green-hover);
    font-weight: 800;
}

.sales-checklist--compact li {
    margin-bottom: 10px;
}

.sales-minihead {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    margin: 18px 0 12px;
}

.sales-scenarios {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.scenario-card {
    background-color: var(--color-bg-card);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    padding: 28px;
}

.scenario-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.scenario-card p {
    color: var(--color-text-secondary);
}

.sales-wide-callout {
    margin-top: 30px;
    background: #f7f3ec;
    border-radius: var(--border-radius-lg);
    padding: 36px;
}

.sales-stat {
    display: flex;
    gap: 14px;
    align-items: baseline;
    margin-top: 22px;
}

.sales-stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
}

.sales-stat-text {
    color: var(--color-text-secondary);
    font-weight: 600;
}

.sales-price {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 30px;
    align-items: start;
}

.sales-price-card {
    background-color: var(--color-bg-card);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    padding: 42px;
}

.sales-price-title {
    color: var(--color-text-secondary);
    margin-top: 10px;
}

.sales-price-amount {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    margin: 18px 0 20px;
}

.sales-price-cta {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.sales-fineprint {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    margin-top: 16px;
}

.sales-price-aside {
    background: #f9f5f1;
    border: 1px solid #eee;
    border-radius: var(--border-radius-lg);
    padding: 36px;
}

.sales-final-cta {
    margin-top: 40px;
    text-align: center;
    background: #ffffff;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    padding: 40px 30px;
}

.sales-final-cta p {
    color: var(--color-text-secondary);
    margin: 12px auto 18px;
    max-width: 70ch;
}

/* --- Legal Page --- */
.legal-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.legal-header-content {
    gap: 20px;
}

.logo-link {
    display: inline-flex;
    text-decoration: none;
}

.legal-content {
    padding: 56px 0 80px;
    flex: 1;
}

.legal-container {
    max-width: 900px;
    background-color: #ffffff;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    padding: 40px;
}

.legal-container h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.legal-last-updated {
    color: var(--color-text-secondary);
    margin-bottom: 30px;
}

.legal-section + .legal-section {
    margin-top: 24px;
}

.legal-section h2 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.legal-section p {
    color: var(--color-text-secondary);
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .hero-text h1 { font-size: 2.2rem; }
    .hero-image { margin-right: 0; }
    .hero-image img { min-width: 0; }
}

@media (max-width: 768px) {
    .header-buttons, nav { display: none; } /* Simplified mobile handling */
    .mobile-menu-icon { display: block; }

    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-image { margin-right: 0; }
    .hero-image img { min-width: 0; }
    .hero-buttons { justify-content: center; }
    .features { justify-content: center; flex-wrap: wrap; }
    
    .courses-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .step { display: flex; align-items: center; gap: 20px; text-align: left; background: white; border-radius: 12px; margin-bottom: 10px; }
    .icon-box { margin: 0; }
    
    .trainer-content { grid-template-columns: 1fr; gap: 24px; padding: 24px 20px; }
    .trainer-image { max-width: 340px; margin: 0 auto; }
    .trainer-badges { flex-direction: column; }
    
    .faq-grid { grid-template-columns: 1fr; }
    
    .testimonials-wrapper { gap: 0; }
    .slider-arrow { display: none; }
    .testimonials-slider { flex-direction: column; }
    .testimonial-card { min-width: 0; width: 100%; }

    .sales-two-col { grid-template-columns: 1fr; }
    .sales-price { grid-template-columns: 1fr; }
    .sales-scenarios { grid-template-columns: 1fr; }
    .sales-card, .sales-price-card { padding: 26px 20px; }
    .sales-wide-callout { padding: 26px 20px; }

    .legal-container {
        padding: 28px 20px;
    }
}
