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

:root {
    --primary-orange: #F97316;
    --primary-orange-dark: #EA580C;
    --primary-orange-light: #FB923C;
    --yellow: #F59E0B;
    --yellow-light: #FCD34D;
    --purple: #A855F7;
    --purple-light: #C084FC;
    --blue: #6366F1;
    --orange: #F97316;
    --red: #EF4444;
    --green-dark: #166534;
    --text-dark: #1F2937;
    --text-gray: #6B7280;
    --text-light: #9CA3AF;
    --bg-light: #F8FAFC;
    --bg-gray: #F1F5F9;
    --white: #FFFFFF;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Optimize content width for readability on larger screens */
@media (min-width: 1024px) {
    /* Reduce container max-width for better readability */
    .container {
        max-width: 1000px;
    }
    
    /* Limit text content width for optimal readability (60-75 characters per line) */
    .why-choose-text {
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Limit images in text sections */
    .why-choose-text img,
    .why-choose-content img {
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
    
    /* Limit standalone images in how-to-start sections */
    .how-to-start img {
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
    
    /* Keep hero section and video sections full width */
    .hero .container,
    .video-section .container,
    .video-grid {
        max-width: 1200px;
    }
}

/* Header & Countdown Timer */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-countdown {
    padding: 12px 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.countdown-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.countdown-header-text {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.05rem;
}

.countdown-header-text i {
    font-size: 1.1rem;
    color: var(--primary-orange);
}

.countdown-timer {
    display: flex;
    align-items: flex-start;
    gap: 0;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.countdown-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    min-width: 40px;
    text-align: center;
    background: var(--bg-light);
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid var(--bg-gray);
}

.countdown-label {
    font-size: 0.7rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.countdown-separator {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin: 0 4px;
    line-height: 1;
    display: flex;
    align-items: center;
    padding-top: 8px;
    height: calc(1.5rem + 16px);
}

.countdown-timer-cta {
    margin-top: 15px;
    justify-content: center;
    gap: 4px;
}

.countdown-timer-cta .countdown-item {
    background: rgba(249, 115, 22, 0.1);
    border-radius: 8px;
    padding: 6px 10px;
    min-width: 50px;
}

.countdown-timer-cta .countdown-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-orange);
    background: transparent;
    padding: 0;
    min-width: auto;
    border: none;
    display: block;
    line-height: 1.2;
}

.countdown-timer-cta .countdown-label {
    color: var(--text-gray);
    font-size: 0.6rem;
    font-weight: 500;
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.countdown-timer-cta .countdown-separator {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 700;
    align-self: center;
    padding-bottom: 0;
    margin: 0 2px;
}

.cta-countdown {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-countdown-text {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 10px;
    text-align: center;
    font-weight: 500;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-orange);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-orange);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover {
    color: var(--primary-orange);
}

.nav-link i {
    font-size: 0.7rem;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 180px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    list-style: none;
}

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

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.dropdown-menu li a:hover {
    background: var(--bg-light);
    color: var(--primary-orange);
}

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

.btn {
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 25px;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-login {
    background: var(--primary-orange);
    color: var(--white);
}

.btn-login:hover {
    background: var(--primary-orange-dark);
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.25rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.highlight-squiggle {
    color: var(--primary-orange);
    font-size: 2rem;
    margin-left: 10px;
}

.highlight-box {
    background: var(--primary-orange);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 8px;
    display: inline-block;
    position: relative;
}


.hero-subtitle {
    font-size: 1.75rem;
    color: var(--text-dark);
    font-style: italic;
    margin: -10px 0 20px 0;
    font-weight: 400;
}

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

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.btn-primary {
    background: var(--primary-orange);
    color: var(--white);
    padding: 12px 30px;
}

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

.btn-hero-large {
    font-size: 1.2rem;
    padding: 18px 45px;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.3);
}

.btn-hero-large:hover {
    box-shadow: 0 12px 32px rgba(249, 115, 22, 0.4);
}

.btn-play {
    display: flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: var(--text-dark);
    padding: 0;
}

.play-icon {
    width: 45px;
    height: 45px;
    background: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.btn-play:hover .play-icon {
    background: var(--primary-orange);
    transform: scale(1.1);
}

.hero-stats-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

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

.avatar-group img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid var(--white);
    margin-left: -12px;
    object-fit: cover;
}

.avatar-group img:first-child {
    margin-left: 0;
}

.avatars::before {
    content: '💜';
    font-size: 1.2rem;
    margin-right: 5px;
}

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

.hero-stats {
    display: flex;
    align-items: center;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
}

.stat-number.orange {
    color: var(--primary-orange);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* Hero Image */
.hero-image {
    position: relative;
    height: 650px;
}

.image-composition {
    position: relative;
    width: 100%;
    height: 100%;
}

.bg-shape {
    position: absolute;
    border-radius: 30px;
}

.bg-shape-main {
    width: 280px;
    height: 320px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-light) 100%);
    top: 60px;
    right: 10px;
    border-radius: 40% 60% 50% 30% / 60% 30% 70% 40%;
    z-index: 1;
    opacity: 0.9;
    transform: rotate(-8deg);
}

.hero-student {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 546px;
    width: auto;
    object-fit: cover;
    z-index: 4;
    border-radius: 0 0 20px 20px;
}

/* Shapovité info kartičky */
.info-card {
    position: absolute;
    background: var(--white);
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 5;
    min-width: 140px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
}

.info-card i {
    font-size: 1.5rem;
    color: var(--primary-orange);
    flex-shrink: 0;
}

.info-card > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-label {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.info-card-date {
    bottom: 120px;
    right: 40px;
    animation: float 3s ease-in-out infinite;
}

.info-card-time {
    bottom: 30px;
    right: 40px;
    animation: float 3s ease-in-out infinite 0.3s;
}

.info-card-location {
    bottom: 210px;
    left: 15px;
    animation: float 3s ease-in-out infinite 0.6s;
}

.info-badge {
    position: absolute;
    background: var(--primary-orange);
    color: var(--white);
    border-radius: 50px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 5;
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

.info-badge i {
    font-size: 1rem;
}

.info-badge-certificate {
    top: 180px;
    left: 60px;
    animation: float 3s ease-in-out infinite 0.6s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes float-horizontal {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-15px);
    }
}

/* How to Start Section */
.how-to-start {
    padding: 80px 0;
    background: var(--bg-gray);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--text-dark);
}

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

.step {
    text-align: center;
    max-width: 200px;
}

@media (max-width: 600px) {
    .step {
        max-width: none;
    }
    
    /* Bonus section: stack image above text on mobile */
    .how-to-start .step {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        gap: 20px !important;
    }
    
    .how-to-start .step > div:first-child {
        width: 100% !important;
        max-width: 100% !important;
        text-align: center;
    }
    
    .how-to-start .step > div:first-child img {
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .how-to-start .step > div:last-child {
        width: 100%;
    }
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.3rem;
    color: var(--white);
}

.step-icon.yellow {
    background: var(--primary-orange-light);
}

.step-icon.orange {
    background: var(--primary-orange);
}

.step-icon.purple {
    background: var(--purple);
}

.step-icon.blue {
    background: var(--blue);
}

.step h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.step p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.5;
}

.step-connector {
    width: 80px;
    height: 2px;
    background: transparent;
    border-top: 2px dashed var(--text-light);
    margin-top: 30px;
    flex-shrink: 0;
}

/* Registration CTA Section */
.registration-cta {
    padding: 100px 0;
    background: var(--bg-gray);
    position: relative;
    overflow: hidden;
}

.registration-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(249, 115, 22, 0.08) 0%, transparent 100%);
    pointer-events: none;
}

.cta-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-text {
    color: var(--text-dark);
}

.cta-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.2;
}

.cta-description {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: var(--text-gray);
    line-height: 1.6;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
}

.cta-feature i {
    font-size: 1.2rem;
    color: var(--primary-orange);
    flex-shrink: 0;
}

.cta-summary {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    align-items: start;
}

.cta-summary-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    min-height: 60px;
}

.cta-summary-icon {
    width: 50px;
    height: 50px;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-summary-icon i {
    font-size: 1.3rem;
    color: var(--primary-orange);
}

.cta-summary-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cta-summary-label {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.cta-summary-value {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.cta-pricing {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-top: 30px;
    margin-bottom: 20px;
    justify-content: center;
}

.cta-price-old {
    font-size: 1.3rem;
    color: var(--text-light);
    text-decoration: line-through;
    font-weight: 500;
}

.cta-price-current {
    font-size: 2.2rem;
    color: var(--primary-orange);
    font-weight: 700;
}

.cta-button-wrapper {
    margin-top: 0;
    margin-bottom: 15px;
}

.btn-cta-large {
    font-size: 1.4rem;
    padding: 22px 55px;
    background: var(--primary-orange);
    color: var(--white);
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.3);
    width: 100%;
    max-width: 500px;
    display: block;
    margin: 0 auto;
    text-align: center;
}

.btn-cta-large:hover {
    background: var(--primary-orange-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(249, 115, 22, 0.4);
}

.cta-timer-text {
    font-size: 0.85rem;
    color: var(--text-gray);
    text-align: center;
    margin-top: 10px;
}

.cta-timer-text span {
    font-weight: 700;
    color: var(--primary-orange);
    font-family: 'Courier New', monospace;
}

.cta-visual {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-person {
    position: absolute;
    border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
    overflow: hidden;
    border: 4px solid var(--white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    background: var(--primary-orange);
    z-index: 1;
}

.cta-person img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cta-person-1 {
    width: 160px;
    height: 180px;
    top: 20px;
    right: 50px;
    animation: float 4s ease-in-out infinite;
}

.cta-person-2 {
    width: 140px;
    height: 160px;
    bottom: 30px;
    left: 40px;
    animation: float 4s ease-in-out infinite 0.5s;
}

.cta-icon-wrapper {
    width: 100px;
    height: 100px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.3);
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cta-icon-wrapper i {
    font-size: 2.5rem;
    color: var(--white);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* About Person Section */
.about-person {
    padding: 80px 0;
    background: var(--white);
}

.about-person-separated {
    padding-top: 120px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.about-person-alt {
    background: var(--bg-gray);
}

.about-person-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-person-reverse {
    direction: rtl;
}

.about-person-reverse > * {
    direction: ltr;
}

.about-person-image {
    display: flex;
    justify-content: center;
}

.about-image-circle {
    width: 350px;
    height: 400px;
    background: var(--primary-orange);
    border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(249, 115, 22, 0.2);
}

.about-image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-person-text {
    color: var(--text-dark);
}

.about-person-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-dark);
    line-height: 1.3;
}

.about-person-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.about-person-description strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Why Choose Section */
.why-choose {
    padding: 100px 0;
    background: var(--white);
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-choose-image {
    display: flex;
    justify-content: center;
}

.image-circle {
    width: 380px;
    height: 450px;
    background: var(--primary-orange);
    border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.why-choose-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--text-dark);
    line-height: 1.3;
}

.why-choose-text p {
    line-height: 1.8;
    margin-bottom: 1.2em;
}

.why-choose-text p:last-child {
    margin-bottom: 0;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-icon.orange {
    background: rgba(249, 115, 22, 0.15);
    color: var(--primary-orange);
}

.feature-icon.orange {
    background: rgba(249, 115, 22, 0.15);
    color: var(--orange);
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.feature-content p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.5;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--bg-gray);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(249, 115, 22, 0.05);
}

.faq-question h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    flex: 1;
}

.faq-question i {
    font-size: 1rem;
    color: var(--primary-orange);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
    font-size: 1rem;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 30px 0;
    margin-top: 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-link {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-orange);
}

/* Sticky Registration Button */
.sticky-register-btn {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    animation: fadeInUp 0.5s ease-out;
}

.btn-sticky {
    font-size: 1.1rem;
    padding: 16px 40px;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.4);
    border-radius: 50px;
    white-space: nowrap;
}

.btn-sticky:hover {
    box-shadow: 0 12px 32px rgba(249, 115, 22, 0.5);
    transform: translateY(-3px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modal Styles */
.modal {
    display: none !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    overflow-y: auto;
}

.modal.active {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Objednávkový modal: bezpečné okraje (notch) + vnější scroll jako záloha */
#registration-modal.modal.active {
    padding: max(16px, env(safe-area-inset-top)) 16px max(24px, env(safe-area-inset-bottom));
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 600px) {
    #registration-modal.modal.active {
        padding: max(10px, env(safe-area-inset-top)) 8px max(14px, env(safe-area-inset-bottom));
    }
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 10001;
    animation: modalSlideIn 0.3s ease-out;
}

.modal-content-terms {
    max-width: 800px;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--bg-gray);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-dark);
    font-size: 1.2rem;
}

.modal-close:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: rotate(90deg);
}

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

.modal-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.modal-header p {
    font-size: 1rem;
    color: var(--text-gray);
    margin: 0;
}

.modal-body {
    color: var(--text-gray);
    line-height: 1.8;
}

.modal-body h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 25px;
    margin-bottom: 10px;
}

.modal-body h3:first-child {
    margin-top: 0;
}

.modal-body p {
    margin-bottom: 15px;
}

/* Registration Form */
.registration-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    padding: 12px 16px;
    border: 2px solid var(--bg-gray);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.form-checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
}

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

.form-checkbox label {
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 1.5;
}

.form-checkbox label a {
    color: var(--primary-orange);
    text-decoration: none;
}

.form-checkbox label a:hover {
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    margin-top: 10px;
    padding: 15px;
    font-size: 1.1rem;
}

/* Program landing – redesigned order modal */
.modal-content--order {
    display: flex;
    flex-direction: column;
    max-width: 520px;
    padding: 0;
    max-height: min(92vh, calc(100dvh - 32px));
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow:
        0 24px 80px rgba(15, 23, 42, 0.18),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}

.modal-order-scroll {
    flex: 1 1 auto;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

#registration-modal .modal-content--order .modal-close {
    top: 16px;
    right: 16px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.modal-order-top {
    padding: 48px 44px 24px;
    text-align: center;
    background: linear-gradient(165deg, rgba(249, 115, 22, 0.12) 0%, rgba(255, 255, 255, 0) 55%);
}

.modal-order-kicker {
    margin: 0 0 8px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-orange);
}

.modal-order-title {
    margin: 0 0 12px;
    font-size: 1.65rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
}

.modal-order-lead {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--text-gray);
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
}

.modal-order-card {
    margin: 0 24px 20px;
    padding: 18px 20px;
    border-radius: 16px;
    background: var(--bg-gray);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.modal-order-card__prices-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 10px;
    text-align: center;
}

.modal-order-card__old {
    font-size: 1rem;
    color: var(--text-light);
    text-decoration: line-through;
    font-weight: 500;
}

.modal-order-card__now {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-orange);
    letter-spacing: -0.02em;
}

.modal-order-card__hint {
    margin: 0 auto;
    max-width: 22em;
    font-size: 0.85rem;
    line-height: 1.45;
    color: var(--text-gray);
    text-align: center;
}

.modal-order-upsell {
    padding: 0 24px 8px;
}

.modal-order-upsell__title {
    margin: 0 0 10px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-gray);
}

.modal-order-upsell__label {
    display: block;
    cursor: pointer;
    margin: 0;
}

.modal-order-upsell__label:focus-within .modal-order-upsell__box {
    outline: 2px solid var(--primary-orange);
    outline-offset: 2px;
}

.modal-order-upsell__checkbox {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.modal-order-upsell__box {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 14px 14px 12px;
    border-radius: 16px;
    border: 2px solid rgba(0, 0, 0, 0.08);
    background: var(--white);
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.modal-order-upsell__checkbox:checked + .modal-order-upsell__box {
    border-color: var(--primary-orange);
    background: rgba(249, 115, 22, 0.06);
    box-shadow: 0 8px 28px rgba(249, 115, 22, 0.12);
}

.modal-order-upsell__media {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.modal-order-upsell__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.modal-order-upsell__text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.modal-order-upsell__name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

.modal-order-upsell__desc {
    font-size: 0.82rem;
    line-height: 1.45;
    color: var(--text-gray);
}

.modal-order-upsell__prices {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px 10px;
    margin-top: 4px;
}

.modal-order-upsell__price-old {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-light);
    text-decoration: line-through;
}

.modal-order-upsell__price-now {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--primary-orange);
}

.modal-order-upsell__check {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    border: 2px solid rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    font-size: 0.75rem;
    margin-top: 2px;
    transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.modal-order-upsell__checkbox:checked + .modal-order-upsell__box .modal-order-upsell__check {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    color: var(--white);
}

.modal-order-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 12px 24px 0;
    padding: 14px 18px;
    border-radius: 14px;
    background: linear-gradient(90deg, rgba(249, 115, 22, 0.1), rgba(249, 115, 22, 0.04));
    border: 1px solid rgba(249, 115, 22, 0.25);
}

.modal-order-total__label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

.modal-order-total__value {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary-orange);
}

.modal-order-form {
    padding: 24px 32px 32px;
    gap: 16px;
}

.modal-order-form .btn-submit {
    margin-top: 4px;
    padding: 16px 18px;
    border-radius: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
    border: none;
    box-shadow: none;
}

.modal-order-form .btn-submit:focus-visible {
    outline: 2px solid var(--primary-orange);
    outline-offset: 3px;
}

.modal-order-trust {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.5;
    color: var(--text-gray);
    text-align: center;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
}

.modal-order-trust i {
    margin-top: 2px;
    color: var(--primary-orange);
    flex-shrink: 0;
}

/* Objednávkový modal – úspora místa na mobilu */
@media (max-width: 600px) {
    .modal-content--order {
        max-height: min(94vh, calc(100dvh - 20px));
        border-radius: 18px;
    }

    #registration-modal .modal-content--order .modal-close {
        top: 8px;
        right: 8px;
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .modal-order-top {
        padding: 40px 12px 12px;
    }

    .modal-order-kicker {
        margin-bottom: 6px;
        font-size: 0.7rem;
        letter-spacing: 0.08em;
    }

    .modal-order-title {
        margin-bottom: 8px;
        font-size: 1.4rem;
    }

    .modal-order-lead {
        font-size: 0.88rem;
        line-height: 1.45;
    }

    .modal-order-card {
        margin: 0 12px 10px;
        padding: 12px 12px;
        border-radius: 14px;
    }

    .modal-order-card__prices-row {
        gap: 10px;
        margin-bottom: 8px;
    }

    .modal-order-card__now {
        font-size: 1.55rem;
    }

    .modal-order-card__hint {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .modal-order-upsell {
        padding: 0 12px 4px;
    }

    .modal-order-upsell__title {
        margin-bottom: 6px;
        font-size: 0.72rem;
    }

    .modal-order-upsell__box {
        flex-wrap: wrap;
        gap: 10px;
        padding: 10px 10px;
        border-radius: 14px;
    }

    .modal-order-upsell__check {
        margin-left: auto;
    }

    .modal-order-upsell__media {
        width: 64px;
        height: 64px;
        border-radius: 10px;
    }

    .modal-order-upsell__name {
        font-size: 0.95rem;
    }

    .modal-order-upsell__desc {
        font-size: 0.78rem;
        line-height: 1.4;
    }

    .modal-order-upsell__prices {
        margin-top: 2px;
    }

    .modal-order-upsell__price-old {
        font-size: 0.85rem;
    }

    .modal-order-upsell__price-now {
        font-size: 0.98rem;
    }

    .modal-order-total {
        margin: 6px 12px 0;
        padding: 10px 12px;
        border-radius: 12px;
    }

    .modal-order-total__label {
        font-size: 0.88rem;
    }

    .modal-order-total__value {
        font-size: 1.2rem;
    }

    .modal-order-form {
        padding: 12px 12px 16px;
        gap: 12px;
    }

    .modal-order-form .btn-submit {
        padding: 13px 14px;
        font-size: 1rem;
        border-radius: 12px;
    }

    .modal-order-trust {
        font-size: 0.72rem;
        gap: 6px;
        line-height: 1.45;
    }

    .modal-order-form .form-group {
        gap: 6px;
    }

    .modal-order-form .form-group label {
        font-size: 0.88rem;
    }

    .modal-order-form .form-group input[type="text"],
    .modal-order-form .form-group input[type="email"] {
        padding: 10px 12px;
        font-size: 16px; /* zabraňuje zoomu iOS při focus */
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-content {
        gap: 30px;
    }
    
    .hero-text h1 {
        font-size: 2.75rem;
    }
    
    .hero-image {
        height: 520px;
    }
    
    .hero-student {
        height: 455px;
    }
    
    .bg-shape-main {
        width: 220px;
        height: 260px;
        top: 50px;
        right: 5px;
        transform: rotate(-6deg);
    }
    
    .info-card {
        padding: 12px 16px;
        min-width: 120px;
    }
    
    .info-card-date {
        bottom: 100px;
        right: 25px;
    }
    
    .info-card-time {
        bottom: 20px;
        right: 25px;
    }
    
    .info-card-location {
        bottom: 180px;
        left: 10px;
    }
    
    .info-badge-certificate {
        top: 150px;
        left: 40px;
        padding: 8px 16px;
        font-size: 0.75rem;
    }
}

@media (max-width: 900px) {
    .container {
        padding: 0 15px;
    }
    
    .countdown-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .countdown-header-text {
        font-size: 0.95rem;
    }
    
    .countdown-number {
        font-size: 1.2rem;
        min-width: 35px;
        padding: 6px 10px;
    }
    
    .countdown-separator {
        font-size: 1.2rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text p {
        margin: 0 auto 30px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats-wrapper {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-image {
        height: 585px;
        order: -1;
    }
    
    .steps {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .step-connector {
        display: none;
    }
    
    .step {
        flex: 1 1 45%;
    }
    
    /* Bonus section: stack image above text on tablet */
    .how-to-start .step {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        gap: 20px !important;
    }
    
    .how-to-start .step > div:first-child {
        width: 100% !important;
        max-width: 100% !important;
        text-align: center;
    }
    
    .how-to-start .step > div:first-child img {
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .how-to-start .step > div:last-child {
        width: 100%;
    }
    
    .about-person-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-person-reverse {
        direction: ltr;
    }
    
    .about-person-image {
        order: -1;
    }
    
    .about-image-circle {
        width: 280px;
        height: 320px;
    }
    
    .about-person-title {
        font-size: 1.75rem;
    }
    
    .about-person-description {
        font-size: 1rem;
    }
    
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .feature {
        text-align: left;
    }
    
    .image-circle {
        width: 320px;
        height: 380px;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1.1rem;
    }
    
    .cta-visual {
        height: 250px;
    }
    
    .cta-person-1 {
        width: 150px;
        height: 150px;
        top: 15px;
        right: 30px;
    }
    
    .cta-person-2 {
        width: 130px;
        height: 130px;
        bottom: 15px;
        left: 30px;
    }
    
    .cta-icon-wrapper {
        width: 80px;
        height: 80px;
    }
    
    .cta-icon-wrapper i {
        font-size: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .modal-content:not(.modal-content--order) {
        padding: 30px 20px;
        margin: 10px;
    }
    
    .modal-header h2 {
        font-size: 1.75rem;
    }
    
    .modal-body h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 15px;
    }
    
    .header-countdown {
        padding: 10px 0;
    }
    
    .countdown-header-text {
        font-size: 0.85rem;
    }
    
    .countdown-number {
        font-size: 1rem;
        min-width: 30px;
        padding: 5px 8px;
    }
    
    .countdown-label {
        font-size: 0.6rem;
    }
    
    .countdown-separator {
        font-size: 1rem;
        margin: 0 1px;
    }
    
    .countdown-timer-cta .countdown-number {
        font-size: 1.1rem;
        padding: 5px 8px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-text h1 {
        font-size: 2.25rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-stats-wrapper {
        flex-direction: column;
        gap: 25px;
    }
    
    .hero-stats {
        gap: 25px;
    }
    
    .hero-image {
        height: 455px;
    }
    
    .hero-student {
        height: 364px;
    }
    
    .hero-image {
        height: 473px;
    }
    
    .bg-shape-main {
        width: 180px;
        height: 200px;
        top: 40px;
        right: 0px;
        transform: rotate(-5deg);
    }
    
    .info-card {
        padding: 10px 14px;
        min-width: 110px;
        font-size: 0.9rem;
    }
    
    .info-card i {
        font-size: 1.2rem;
    }
    
    .info-value {
        font-size: 0.9rem;
    }
    
    .info-card-date {
        bottom: 80px;
        right: 15px;
    }
    
    .info-card-time {
        bottom: 10px;
        right: 15px;
    }
    
    .info-card-location {
        bottom: 160px;
        left: 0px;
    }
    
    .info-badge-certificate {
        top: 120px;
        left: 25px;
        padding: 6px 12px;
        font-size: 0.7rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .step {
        flex: 1 1 100%;
        max-width: none;
    }
    
    .about-image-circle {
        width: 250px;
        height: 290px;
    }
    
    .about-person-title {
        font-size: 1.5rem;
    }
    
    .about-person-description {
        font-size: 0.95rem;
    }
    
    .image-circle {
        width: 280px;
        height: 340px;
    }
    
    .why-choose-text h2 {
        font-size: 1.75rem;
    }
    
    .feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .registration-cta {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .cta-features {
        gap: 12px;
        margin-bottom: 30px;
    }
    
    .cta-feature {
        font-size: 0.9rem;
        justify-content: center;
    }
    
    .btn-cta-large {
        font-size: 1.1rem;
        padding: 15px 35px;
    }
    
    .cta-visual {
        height: 200px;
    }
    
    .cta-person-1 {
        width: 120px;
        height: 135px;
        top: 10px;
        right: 20px;
    }
    
    .cta-person-2 {
        width: 100px;
        height: 115px;
        bottom: 10px;
        left: 20px;
    }
    
    .cta-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .cta-icon-wrapper i {
        font-size: 1.8rem;
    }
    
    .cta-summary {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 25px;
        text-align: left;
    }
    
    .cta-summary-item {
        align-items: flex-start;
        min-height: auto;
        justify-content: flex-start;
    }
    
    .cta-summary-icon {
        width: 45px;
        height: 45px;
        flex-shrink: 0;
        align-self: flex-start;
    }
    
    .cta-summary-content {
        flex: 1;
        min-width: 0;
        text-align: left;
    }
    
    .cta-summary-label {
        text-align: left;
    }
    
    .cta-summary-value {
        text-align: left;
    }
    
    .cta-summary-icon i {
        font-size: 1.1rem;
    }
    
    .cta-summary-label {
        font-size: 0.8rem;
    }
    
    .cta-summary-value {
        font-size: 0.95rem;
    }
    
    .cta-pricing {
        margin-top: 25px;
        margin-bottom: 15px;
    }
    
    .cta-price-old {
        font-size: 1rem;
    }
    
    .cta-price-current {
        font-size: 1.6rem;
    }
    
    .btn-cta-large {
        font-size: 1.1rem;
        padding: 16px 35px;
    }
    
    .cta-timer-text {
        font-size: 0.75rem;
    }
    
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-question {
        padding: 20px 25px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 25px 20px 25px;
    }
    
    .faq-answer {
        padding: 0 25px;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .modal-content:not(.modal-content--order) {
        padding: 30px 20px;
        margin: 10px;
    }
    
    .modal-header h2 {
        font-size: 1.75rem;
    }
    
    .modal-body h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 400px) {
    .logo span {
        display: none;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 1.1rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
}

/* Home Page Styles */
.home-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 1000;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.home-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

.home-logo:hover {
    color: var(--primary-orange-dark);
}

.home-nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.home-nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.home-nav-link:hover {
    color: var(--primary-orange);
}

.home-nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: width 0.3s ease;
}

.home-nav-link:hover::after {
    width: 100%;
}

.home-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
    z-index: 1001;
}

.home-hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
    display: block;
}

.home-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.home-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.home-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.home-hero {
    padding: 160px 0 100px;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.home-hero-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.home-hero-image {
    display: flex;
    justify-content: center;
    position: relative;
}

.home-image-circle {
    width: 400px;
    height: 480px;
    background: var(--primary-orange);
    border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    box-shadow: 0 15px 50px rgba(249, 115, 22, 0.25);
    position: relative;
}

.home-image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.home-hero-badge {
    position: absolute;
    background: var(--white);
    border-radius: 50px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    z-index: 10;
    animation: float 3s ease-in-out infinite;
}

.home-hero-badge-1 {
    bottom: 30px;
    left: -20px;
}

.home-hero-badge-2 {
    top: 20px;
    left: -30px;
    animation: float 3s ease-in-out infinite 0.5s;
}

.home-hero-badge-3 {
    bottom: 100px;
    right: -30px;
    animation: float 3s ease-in-out infinite 1s;
}

.home-hero-badge i {
    color: var(--primary-orange);
    font-size: 1rem;
}

.home-hero-text {
    color: var(--text-dark);
}

.home-hero-text h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
    line-height: 1.2;
}

.home-hero-subtitle {
    font-size: 1.5rem;
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.4;
}

.home-hero-description {
    font-size: 1.15rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 40px;
}

.home-hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid var(--bg-gray);
}

.home-stat-item {
    text-align: left;
}

.home-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-orange);
    display: block;
    margin-bottom: 5px;
}

.home-stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Divider */
.home-divider {
    padding: 50px 0;
    background: var(--white);
}

.divider-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-orange), transparent);
    max-width: 200px;
    margin: 0 auto;
}

/* Products Section */
.home-products {
    padding: 100px 0;
    /* background: var(--bg-gray); */
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Center last row when there are only 2 items */
.products-grid.last-row-two-cards {
    justify-content: center;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    display: block;
}

.product-card-link:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.product-card-link .btn-product {
    pointer-events: none;
}

.product-card-modal {
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.product-card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: var(--bg-gray);
    position: relative;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-type-badge {
    position: absolute;
    top: 12px;
    right: 0;
    background: var(--primary-orange);
    color: var(--white);
    padding: 6px 20px 6px 24px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    white-space: nowrap;
    clip-path: polygon(12px 0, 100% 0, 100% 100%, 0 100%);
    box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.2);
}

.product-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(249, 115, 22, 0.05) 100%);
}

.product-card-placeholder i {
    font-size: 4rem;
    color: var(--primary-orange);
    opacity: 0.5;
}

.product-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
    line-height: 1.3;
}

.product-card-content p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: 12px;
    flex-grow: 1;
}

.product-card-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
    padding: 8px 0;
}

.product-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--text-gray);
    padding: 4px 0;
    transition: all 0.2s ease;
}

.product-info-item:hover {
    color: var(--text-dark);
}

.product-info-item i {
    font-size: 0.85rem;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.product-info-item span {
    font-weight: 500;
    line-height: 1.4;
}

/* Specific colors for different info types - Date/Calendar */
.product-info-item.info-date i {
    color: #3B82F6;
}

/* Users */
.product-info-item.info-users i {
    color: #10B981;
}

/* Video */
.product-info-item.info-video i {
    color: #A855F7;
}

/* Book */
.product-info-item.info-book i {
    color: #EC4899;
}

.btn-product {
    align-self: flex-start;
    margin-top: auto;
}

/* Newsletter Section */
.home-newsletter {
    padding: 100px 0 250px 0;
    background: var(--white);
    position: relative;
}

.newsletter-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-icon {
    width: 80px;
    height: 80px;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.newsletter-icon i {
    font-size: 2rem;
    color: var(--primary-orange);
}

.newsletter-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.newsletter-content > p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.newsletter-input-wrapper {
    display: flex;
    gap: 10px;
    background: var(--bg-gray);
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    align-items: center;
}

.newsletter-input-wrapper input[type="text"],
.newsletter-input-wrapper input[type="email"] {
    padding: 15px 25px;
    border: none;
    background: transparent;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    outline: none;
    width: auto;
    min-width: 0;
}

.newsletter-input-wrapper input[type="text"] {
    flex: 0 1 200px;
    min-width: 180px;
}

.newsletter-input-wrapper input[type="email"] {
    flex: 1 1 auto;
    min-width: 200px;
}

.newsletter-input-wrapper input[type="text"]:focus,
.newsletter-input-wrapper input[type="email"]:focus {
    background: rgba(255, 255, 255, 0.5);
}

.newsletter-input-wrapper input[type="email"]::placeholder,
.newsletter-input-wrapper input[type="text"]::placeholder {
    color: var(--text-light);
}

.btn-newsletter {
    flex-shrink: 0;
    padding: 15px 35px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    font-weight: 600;
    border: none;
    outline: none;
}

.btn-newsletter i {
    font-size: 0.9rem;
}

.newsletter-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    justify-content: center;
}

.newsletter-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--primary-orange);
    flex-shrink: 0;
}

.newsletter-checkbox label {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 400;
    line-height: 1.5;
}

.newsletter-checkbox label a {
    color: var(--primary-orange);
    text-decoration: none;
}

.newsletter-checkbox label a:hover {
    text-decoration: underline;
}

/* Responsive Styles for Home Page */
@media (max-width: 900px) {
    .home-hamburger {
        display: flex;
    }
    
    .home-nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    
    .home-nav-menu.active {
        transform: translateX(0);
    }
    
    .home-nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--bg-gray);
    }
    
    .home-nav-link {
        display: block;
        padding: 15px 20px;
        width: 100%;
        font-size: 1rem;
    }
    
    .home-nav-link::after {
        display: none;
    }
    
    .home-hero {
        padding: 140px 0 80px;
    }
    
    .home-hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .home-hero-image {
        order: -1;
    }
    
    .home-hero-badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: 20px;
    }
    
    .home-image-circle {
        width: 320px;
        height: 380px;
    }
    
    .home-hero-text h1 {
        font-size: 3rem;
    }
    
    .home-hero-subtitle {
        font-size: 1.3rem;
    }
    
    .home-hero-description {
        font-size: 1.05rem;
    }
    
    .home-hero-stats {
        justify-content: center;
        gap: 30px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .newsletter-content h2 {
        font-size: 2rem;
    }
    
    .newsletter-content > p {
        font-size: 1.1rem;
    }
    
    .newsletter-input-wrapper {
        flex-direction: column;
        border-radius: 15px;
        padding: 0;
        background: transparent;
        gap: 10px;
    }
    
    .newsletter-input-wrapper input[type="email"],
    .newsletter-input-wrapper input[type="text"] {
        background: var(--bg-gray);
        border-radius: 15px;
        padding: 15px 20px;
        width: 100%;
        flex: 1 1 100%;
    }
    
    .btn-newsletter {
        width: 100%;
        justify-content: center;
        border-radius: 15px;
    }
}

@media (max-width: 600px) {
    .home-header {
        padding: 15px 0;
    }
    
    .home-logo {
        font-size: 1.25rem;
    }
    
    .home-nav-menu {
        top: 65px;
    }
    
    .home-hero {
        padding: 100px 0 60px;
    }
    
    .home-image-circle {
        width: 280px;
        height: 340px;
    }
    
    .home-hero-badge {
        padding: 10px 14px;
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.7rem;
        white-space: nowrap;
        line-height: 1;
        height: fit-content;
        max-height: 40px;
        box-sizing: border-box;
    }
    
    .home-hero-badge span {
        white-space: nowrap;
        line-height: 1;
    }
    
    .home-hero-badge i {
        font-size: 0.85rem;
        flex-shrink: 0;
        line-height: 1;
    }
    
    .home-hero-badge-1 {
        bottom: 10px;
        left: 0px;
    }
    
    .home-hero-badge-2 {
        top: 15px;
        left: 0px;
    }
    
    .home-hero-badge-3 {
        bottom: 80px;
        right: 15px;
    }
    
    .home-hero-text h1 {
        font-size: 2.5rem;
    }
    
    .home-hero-subtitle {
        font-size: 1.15rem;
    }
    
    .home-hero-description {
        font-size: 1rem;
    }
    
    .home-hero-stats {
        flex-direction: row;
        gap: 15px;
        justify-content: space-around;
        align-items: flex-start;
        padding-top: 20px;
        margin-top: 20px;
    }
    
    .home-stat-item {
        text-align: center;
        flex: 1;
    }
    
    .home-stat-number {
        font-size: 1.5rem;
        margin-bottom: 4px;
    }
    
    .home-stat-label {
        font-size: 0.75rem;
        line-height: 1.2;
    }
    
    .home-products {
        padding: 60px 0;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-card-content {
        padding: 18px;
    }
    
    .product-card-content h3 {
        font-size: 1.25rem;
        margin-bottom: 8px;
    }
    
    .home-newsletter {
        padding: 60px 0 150px 0;
    }
    
    .newsletter-icon {
        width: 70px;
        height: 70px;
    }
    
    .newsletter-icon i {
        font-size: 1.8rem;
    }
    
    .newsletter-content h2 {
        font-size: 1.75rem;
    }
    
    .newsletter-content > p {
        font-size: 1rem;
    }
}
