:root {
    --primary: #0f172a;
    --accent: #3b82f6;
    --accent-hover: #2563eb;
    --bg-light: #f8fafc;
    --text-main: #334155;
    --text-light: #64748b;
    --white: #ffffff;
    --radius: 12px;
    --shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    background: var(--bg-light);
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

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

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

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Validácia */
label.required::after {
    content: " *";
    color: #ef4444;
    font-weight: bold;
}

/* --- NAVIGÁCIA --- */
body {
    padding-top: 60px;
}

nav {
    background: var(--white);
    border-bottom: 1px solid #e2e8f0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

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

.logo-bar {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 8px 18px 8px 14px;
    border: 1.5px solid #cbd5e1;
    border-radius: 50px;
    background: white;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 15px;
    line-height: 1;
    white-space: nowrap;
}
.logo-lock {
    margin-right: 4px;
    flex-shrink: 0;
}
.logo-https {
    color: #22c55e;
    font-weight: 500;
}
.logo-name {
    color: #0f172a;
    font-weight: 700;
}
.logo-tld {
    color: #2563eb;
    font-weight: 600;
}

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

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-main);
}

.nav-links a:hover {
    color: var(--accent);
}

.cta-small {
    background: var(--primary);
    color: var(--white) !important;
    padding: 8px 24px;
    border-radius: 99px;
    transition: 0.3s;
}

.cta-small:hover {
    background: var(--accent);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary);
    padding: 5px;
}

/* Dropdown */
.dropdown {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: -10px;
}

/* === MEGA-DROPDOWN (+ .dropdown-menu for backward compat) === */
.mega-dropdown,
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 260px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
    border: 1px solid #e2e8f0;
    padding: 6px 0;
    margin-top: 0;
    z-index: 1001;
}

@media (min-width: 769px) {

    .dropdown:hover .mega-dropdown,
    .dropdown:hover .dropdown-menu,
    .mega-dropdown.open {
        display: block;
    }
}

/* Category items */
.mega-category {
    position: relative;
}

.mega-cat-link,
.mega-cat-header {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    font-size: 0.9rem;
    color: var(--text);
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    text-decoration: none;
    gap: 8px;
    user-select: none;
}

.mega-cat-link:hover,
.mega-cat-header:hover {
    background: #f1f5f9;
    color: var(--accent);
}

.mega-cat-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.mega-cat-icon svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

.mega-cat-label {
    flex: 1;
}

.mega-cat-arrow {
    font-size: 0.75rem;
    opacity: 0.5;
    transition: transform 0.2s;
}

/* --- Submenu (inline accordion) --- */
.mega-submenu {
    display: none;
    padding: 0;
    padding-left: 30px;
    background: #f7f9fc;
    border-top: 1px solid #e9eef5;
}

/* Show submenu on click (via .open class) */
.mega-category.open>.mega-submenu {
    display: block;
}

.mega-category.open>.mega-cat-header .mega-cat-arrow {
    transform: rotate(90deg);
    opacity: 1;
}

/* Desktop: also expand submenu on hover */
@media (min-width: 769px) {
    .mega-category:hover>.mega-submenu {
        display: block;
    }

    .mega-category:hover>.mega-cat-header .mega-cat-arrow {
        transform: rotate(90deg);
        opacity: 1;
    }
}

.mega-submenu a {
    display: block;
    padding: 9px 16px;
    font-size: 0.88rem;
    color: var(--text);
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.mega-submenu a:hover {
    background: #e8edf5;
    color: var(--accent);
}

/* --- HERO --- */
.hero {
    background: radial-gradient(circle at top right, #1e293b, #0f172a);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero p {
    font-size: 1.1rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto 30px;
}

.btn-hero {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 99px;
    font-weight: 600;
}

.btn-hero:hover {
    background: var(--accent-hover);
}

/* --- SEKCIE --- */
.section-header {
    text-align: center;
    margin: 80px 0 40px;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-light);
}

/* Filter tabs */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 9px 22px;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    background: var(--white);
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
    user-select: none;
}

.filter-tab:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.filter-tab.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    box-shadow: 0 4px 12px rgba(79, 109, 245, 0.3);
}

.filter-tabs-sm {
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 16px;
}

.filter-tabs-sm .filter-tab {
    padding: 6px 16px;
    font-size: 0.82rem;
}

.course-card {
    animation: cardFadeIn 0.35s ease;
}

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.courses-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(5, 1fr);
    margin-bottom: 80px;
}

.course-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent);
}

.card-img-wrapper {
    height: 160px;
    overflow: hidden;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.course-card:hover .card-img-wrapper img {
    transform: scale(1.05);
}

.card-body {
    padding: 16px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-body h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.card-body p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 15px;
    flex-grow: 1;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #f1f5f9;
}

.price-tag {
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
}

/* --- ZĽAVY --- */
.price-original {
    text-decoration: line-through;
    text-decoration-color: #ef4444;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.9em;
}

.price-discounted {
    color: #ef4444;
    font-weight: 700;
    font-size: 1.05em;
}

.discount-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 99px;
    letter-spacing: 0.5px;
    white-space: nowrap;
    vertical-align: middle;
}

.discount-badge-card {
    display: inline-block;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 99px;
    letter-spacing: 0.5px;
    white-space: nowrap;
    margin-left: 4px;
}

.date-card-price {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 4px;
    font-size: 0.85rem;
}

.date-card.active .price-original {
    color: #fca5a5;
}

.date-card.active .price-discounted {
    color: #fca5a5;
}

.date-card.active .discount-badge {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

.btn-details {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.85rem;
}

.blog-section {
    background: var(--bg-light);
    border-top: 1px solid #cbd5e1;
    padding: 60px 0;
}

.blog-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 40px;
}

/* --- FORMULÁR --- */
.reservation-section {
    background: var(--white);
    border-top: 1px solid #e2e8f0;
    padding: 80px 0;
}

.form-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.form-tabs {
    display: flex;
    margin-bottom: 20px;
    background: #e2e8f0;
    border-radius: 8px;
    padding: 4px;
    gap: 5px;
}

.tab-btn {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 6px;
    background: transparent;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-light);
    transition: 0.3s;
    text-align: center;
}

.tab-btn.active {
    background: var(--white);
    color: var(--accent);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-section {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.form-section.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.selection-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}

.selection-card {
    background: var(--bg-light);
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 80px;
}

.selection-card:hover {
    background: #e0f2fe;
}

.selection-card.active {
    border-color: var(--accent);
    background: #eff6ff;
}

.selection-card h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
    color: var(--primary);
}

.selection-card .price {
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--accent);
}

/* --- TERMÍNY --- */
.dates-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.date-card {
    background: var(--white);
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 12px 16px;
    cursor: pointer;
    flex: 1 1 calc(50% - 12px);
    min-width: 280px;
    transition: 0.2s;
    color: var(--text-main);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.date-card strong {
    font-size: 0.95rem;
    display: block;
    white-space: nowrap;
}

.date-card .slots {
    display: block;
    font-size: 0.85rem;
    color: #166534;
    font-weight: 600;
    text-align: right;
    margin-left: 15px;
}

.date-card .sold-out-text {
    color: #ef4444;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-left: 15px;
}

.date-card:hover:not(.disabled):not(.active) {
    border-color: var(--accent);
    color: var(--accent);
    background: #eff6ff;
}

.date-card.active {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
    font-weight: 600;
}

.date-card.active span {
    color: #fff !important;
}

.date-card.active:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
    color: var(--white);
}

.date-card.active .slots {
    color: #dbeafe;
}

.date-card.disabled {
    background: #f1f5f9;
    color: #94a3b8;
    cursor: not-allowed;
    border-color: #e2e8f0;
}

.date-card.disabled strong {
    text-decoration: line-through;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.input-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    outline: none;
    box-sizing: border-box;
}

.input-group input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* --- SÚHLASY (checkboxy) --- */
.consent-group {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.consent-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.consent-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 2px;
    accent-color: var(--accent);
    cursor: pointer;
}

.consent-item label {
    font-size: 0.88rem;
    color: var(--text-main);
    line-height: 1.5;
    cursor: pointer;
    font-weight: 400 !important;
    margin-bottom: 0 !important;
}

.consent-item label a {
    color: var(--accent);
    text-decoration: underline;
    font-weight: 600;
}

.consent-item label a:hover {
    color: var(--accent-hover);
}

.required-star {
    color: #ef4444;
    font-weight: 700;
}

.consent-note {
    font-size: 0.8rem;
    color: #ef4444;
    margin: 2px 0 0 0;
    font-style: italic;
}

.submit-btn {
    width: 100%;
    background: var(--primary);
    color: var(--white);
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 20px;
}

.submit-btn:hover {
    background: var(--accent);
}

.message {
    text-align: center;
    margin-top: 20px;
    padding: 10px;
    border-radius: 8px;
}

.message.success {
    background: #dcfce7;
    color: #166534;
}

.message.error {
    background: #fee2e2;
    color: #991b1b;
}

.newsletter-section {
    background: radial-gradient(circle at top right, #1e293b, #0f172a);
    color: var(--white);
    padding: 80px 0;
    border-top: 1px solid #334155;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    gap: 20px;
}

.nl-text h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 800;
}

.nl-text p {
    color: #cbd5e1;
}

.nl-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.nl-form input {
    padding: 12px 20px;
    border-radius: 99px;
    border: none;
    outline: none;
    min-width: 300px;
}

.nl-form button {
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 99px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

/* --- FOOTER (OPRAVA ZAROVNANIA) --- */
.main-footer {
    background: #1e293b;
    color: #cbd5e1;
    padding: 60px 0 20px;
    margin-top: auto;
    border-top: 1px solid #334155;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    justify-content: center;
    text-align: center;
    /* TOTO VYCENTRUJE OBSAH STĹPCOV */
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col a {
    color: #94a3b8;
    font-size: 0.95rem;
    transition: 0.3s;
}

.footer-col a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #334155;
    font-size: 0.85rem;
    color: #64748b;
}

/* =========================================
   PODSTRÁNKY — SPOLOČNÉ (doc-box, main-box)
   ========================================= */
.subpage-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.doc-box {
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.main-box {
    background: white;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 50px;
    border: 1px solid #e2e8f0;
}

/* Nadpisy na podstránkach */
.page-title {
    color: #1e3a8a;
    margin-top: 0;
    font-size: 2rem;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.page-subtitle {
    color: #1e3a8a;
    font-size: 1.4rem;
    margin-top: 40px;
    margin-bottom: 15px;
}

.page-content p {
    margin-bottom: 15px;
    text-align: justify;
}

.page-content ul {
    margin-bottom: 15px;
    padding-left: 20px;
    list-style: disc;
}

.page-content li {
    margin-bottom: 8px;
}

/* =========================================
   O NÁS — HERO
   ========================================= */
.about-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #2563eb 100%);
    padding: 100px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 70%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.about-hero-inner {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #93c5fd;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
}

.about-hero h1 {
    color: white;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 20px;
}

.about-hero p {
    color: #cbd5e1;
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

/* =========================================
   O NÁS — CONTAINER
   ========================================= */
.about-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   O NÁS — BENEFIT CARDS
   ========================================= */
.about-benefits {
    padding: 80px 0;
    background: #f8fafc;
}

.about-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.about-benefit-card {
    background: white;
    padding: 35px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.about-benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #1e3a8a, #3b82f6);
    transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 0 4px 0;
}

.about-benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.1);
    border-color: #bfdbfe;
}

.about-benefit-card:hover::before {
    height: 100%;
}

.about-benefit-card--wide {
    grid-column: span 2;
}

.about-benefit-icon-wrap {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    color: #1e3a8a;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.about-benefit-icon-wrap svg {
    width: 26px;
    height: 26px;
}

.about-benefit-card h3 {
    margin: 0 0 12px;
    color: #0f172a;
    font-size: 1.2rem;
    font-weight: 700;
}

.about-benefit-card p {
    margin: 0;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* =========================================
   O NÁS — MISSION
   ========================================= */
.about-mission {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 80px 20px;
    text-align: center;
}

.about-mission h2 {
    color: white;
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0 0 30px;
}

.about-mission-text {
    max-width: 750px;
    margin: 0 auto;
}

.about-mission-text p {
    color: #94a3b8;
    font-size: 1.1rem;
    line-height: 1.9;
    margin: 0 0 20px;
}

/* =========================================
   O NÁS — REVIEWS
   ========================================= */
.about-reviews {
    padding: 80px 0;
    background: #f8fafc;
}

.about-reviews h2 {
    color: #1e3a8a;
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin: 0 0 50px;
}

.reviews-carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}

.reviews-carousel-track-wrapper {
    flex: 1;
    overflow: hidden;
}

.reviews-carousel-track {
    display: flex;
    gap: 28px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.reviews-carousel-track .about-review-card {
    flex-shrink: 0;
}

.reviews-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #cbd5e1;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e3a8a;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.reviews-arrow:hover {
    background: #1e3a8a;
    border-color: #1e3a8a;
    color: white;
    transform: scale(1.08);
}

.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.reviews-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #cbd5e1;
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.reviews-dot.active {
    background: #1e3a8a;
    border-color: #1e3a8a;
    transform: scale(1.2);
}

.about-review-card {
    background: white;
    padding: 35px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
}

.about-review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
}

.about-review-quote {
    font-size: 4rem;
    line-height: 1;
    color: #bfdbfe;
    font-family: Georgia, serif;
    margin-bottom: -5px;
    font-weight: 700;
}

.about-review-text {
    color: #334155;
    font-size: 0.95rem;
    line-height: 1.75;
    font-style: italic;
    flex-grow: 1;
    margin: 0 0 25px;
}

.about-review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
}

.about-review-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.about-review-author strong {
    display: block;
    color: #0f172a;
    font-size: 0.95rem;
}

.about-review-author span {
    color: #64748b;
    font-size: 0.8rem;
}

/* =========================================
   O NÁS — CTA
   ========================================= */
.about-cta {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    padding: 70px 20px;
    text-align: center;
}

.about-cta h2 {
    color: white;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 0 12px;
}

.about-cta p {
    color: #bfdbfe;
    font-size: 1.1rem;
    margin: 0 0 30px;
}

.about-cta-btn {
    display: inline-block;
    background: white;
    color: #1e3a8a;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.about-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* =========================================
   PRE FIRMY
   ========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.service-box {
    text-align: center;
    padding: 20px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    transition: 0.3s;
}

.service-box:hover {
    border-color: #2563eb;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.service-icon {
    font-size: 40px;
    margin-bottom: 15px;
    display: block;
}

.service-box h3 {
    color: #1e3a8a;
    margin-bottom: 10px;
}

.contact-section {
    background: #eff6ff;
    padding: 30px;
    margin-top: 50px;
    border-radius: 8px;
    text-align: center;
}

.contact-btn {
    background: #2563eb;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    margin-top: 15px;
    transition: 0.3s;
}

.contact-btn:hover {
    background: #1d4ed8;
}

/* =========================================
   RE-PAS — HERO
   ========================================= */
.repas-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #2563eb 100%);
    padding: 100px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.repas-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 70%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.repas-hero-inner {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.repas-hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #93c5fd;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
}

.repas-hero h1 {
    color: white;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 20px;
}

.repas-hero p {
    color: #cbd5e1;
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

/* =========================================
   RE-PAS — CONTAINER
   ========================================= */
.repas-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   RE-PAS — STEPS TIMELINE
   ========================================= */
.repas-steps {
    padding: 80px 0 60px;
    background: #f8fafc;
}

.repas-steps h2 {
    color: #1e3a8a;
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin: 0 0 8px;
}

.repas-steps-subtitle {
    text-align: center;
    color: #64748b;
    font-size: 1.05rem;
    margin: 0 0 50px;
}

.repas-timeline {
    position: relative;
    padding-left: 40px;
}

.repas-timeline::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #bfdbfe, #1e3a8a);
    border-radius: 3px;
}

.repas-step-card {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: white;
    padding: 30px 30px 30px 20px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    margin-bottom: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.repas-step-card:hover {
    transform: translateX(6px);
    box-shadow: 0 12px 30px rgba(30, 58, 138, 0.08);
    border-color: #bfdbfe;
}

.repas-step-num {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.repas-step-body h3 {
    margin: 0 0 8px;
    color: #0f172a;
    font-size: 1.15rem;
    font-weight: 700;
}

.repas-step-body p {
    margin: 0;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* =========================================
   RE-PAS — INFO CARD
   ========================================= */
.repas-info {
    padding: 0 0 60px;
    background: #f8fafc;
}

.repas-info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
    border: 1px solid #fde68a;
    border-radius: 16px;
    padding: 25px 30px;
    color: #92400e;
    font-size: 1rem;
    line-height: 1.7;
}

.repas-info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

/* =========================================
   RE-PAS — CTA
   ========================================= */
.repas-cta {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    padding: 70px 20px;
    text-align: center;
}

.repas-cta h2 {
    color: white;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 0 12px;
}

.repas-cta p {
    color: #bfdbfe;
    font-size: 1.1rem;
    margin: 0 0 30px;
}

.repas-cta-btn {
    display: inline-block;
    background: white;
    color: #1e3a8a;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.repas-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* =========================================
   LEGAL PAGES — HERO (VOP, GDPR, Pokyny)
   ========================================= */
.legal-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #2563eb 100%);
    padding: 100px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.legal-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 70%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.legal-hero-inner {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.legal-hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #93c5fd;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
}

.legal-hero h1 {
    color: white;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 20px;
}

.legal-hero p {
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

/* =========================================
   LEGAL PAGES — CONTENT
   ========================================= */
.legal-container {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 20px;
}

.legal-content {
    padding: 70px 0 60px;
    background: #f8fafc;
}

.legal-section {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    position: relative;
}

.legal-section-num {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
    margin-top: 4px;
    position: relative;
    z-index: 1;
}

.legal-section-body {
    flex: 1;
    background: white;
    padding: 30px 35px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.legal-section-body:hover {
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.06);
    border-color: #bfdbfe;
}

.legal-section-body h2 {
    margin: 0 0 16px;
    color: #1e3a8a;
    font-size: 1.25rem;
    font-weight: 700;
}

.legal-section-body p {
    margin: 0 0 12px;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.75;
}

.legal-section-body p:last-child {
    margin-bottom: 0;
}

/* Info Grid (provider details) */
.legal-info-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.legal-info-row {
    display: flex;
    gap: 12px;
    padding: 8px 14px;
    border-radius: 8px;
    background: #f8fafc;
    font-size: 0.93rem;
    color: #334155;
}

.legal-info-label {
    font-weight: 600;
    color: #0f172a;
    min-width: 170px;
}

/* Storno cards */
.legal-storno-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 16px 0;
}

.legal-storno-item {
    padding: 16px;
    border-radius: 12px;
    text-align: center;
}

.legal-storno-label {
    font-size: 0.85rem;
    margin-bottom: 6px;
    opacity: 0.85;
}

.legal-storno-value {
    font-size: 1.05rem;
    font-weight: 700;
}

.legal-storno-green {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}

.legal-storno-amber {
    background: #fffbeb;
    border: 1px solid #fde68a;
    color: #92400e;
}

.legal-storno-red {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

/* Effective date */
.legal-effective-date {
    text-align: center;
    color: #94a3b8;
    font-size: 0.88rem;
    margin-top: 40px;
    padding: 16px;
    border-top: 1px solid #e2e8f0;
}

/* =========================================
   POKYNY — Alert Box
   ========================================= */
.pokyny-alert {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border: 1px solid #93c5fd;
    border-left: 5px solid #2563eb;
    border-radius: 14px;
    padding: 22px 28px;
    margin-bottom: 40px;
    font-size: 0.95rem;
    color: #1e3a8a;
    line-height: 1.7;
}

.pokyny-alert--red {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border: 1px solid #fca5a5;
    border-left: 5px solid #ef4444;
    color: #991b1b;
}

.pokyny-alert-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.pokyny-main-heading {
    text-align: center;
    color: #0f172a;
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0 0 36px;
}

/* POKYNY — Checklist */
.pokyny-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pokyny-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 10px 14px;
    border-radius: 10px;
    background: #f8fafc;
    font-size: 0.93rem;
    color: #334155;
    line-height: 1.6;
    transition: background 0.2s ease;
}

.pokyny-list li:hover {
    background: #f1f5f9;
}

.pokyny-list-icon {
    font-size: 1.15rem;
    flex-shrink: 0;
    margin-top: 1px;
}

/* POKYNY — Priebeh tags */
.pokyny-priebeh-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.pokyny-priebeh-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.pokyny-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.4;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pokyny-tag:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.pokyny-tag--blue {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    color: #1e3a8a;
    border: 1px solid #bfdbfe;
}

.pokyny-tag--purple {
    background: linear-gradient(135deg, #f5f3ff, #ede9fe);
    color: #5b21b6;
    border: 1px solid #c4b5fd;
}

.pokyny-tag--teal {
    background: linear-gradient(135deg, #f0fdfa, #ccfbf1);
    color: #115e59;
    border: 1px solid #99f6e4;
}

/* POKYNY — Recommendation Box */
.pokyny-recommendation {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
    border: 1px solid #fde68a;
    border-left: 5px solid #f59e0b;
    border-radius: 14px;
    padding: 22px 28px;
    margin: 32px 0;
    font-size: 0.95rem;
    color: #92400e;
    line-height: 1.7;
}

.pokyny-recommendation-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.pokyny-recommendation p {
    margin: 0;
}

/* POKYNY — Contact Section */
.pokyny-contact {
    text-align: center;
    margin: 40px 0 10px;
    padding: 36px 28px;
    background: white;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.pokyny-contact:hover {
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.06);
    border-color: #bfdbfe;
}

.pokyny-contact h3 {
    color: #0f172a;
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 24px;
}

.pokyny-contact-methods {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.pokyny-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border: 1px solid #bfdbfe;
    border-radius: 12px;
    color: #1e3a8a;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.pokyny-contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.15);
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

.pokyny-contact-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* POKYNY — Back Button */
.pokyny-back {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}

.pokyny-back-btn {
    display: inline-block;
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    color: white;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.pokyny-back-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

/* =========================================
   PRE FIRMY — Service Cards
   ========================================= */
.firmy-services {
    padding: 70px 0;
    background: #f8fafc;
}

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

.firmy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.firmy-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.firmy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1e3a8a, #3b82f6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.firmy-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.1);
    border-color: #bfdbfe;
}

.firmy-card:hover::before {
    opacity: 1;
}

.firmy-card-icon {
    font-size: 2.5rem;
    margin-bottom: 18px;
}

.firmy-card h3 {
    color: #0f172a;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 12px;
}

.firmy-card p {
    color: #475569;
    font-size: 0.93rem;
    line-height: 1.7;
    margin: 0;
}

/* PRE FIRMY — CTA */
.firmy-cta {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #3b82f6 100%);
    padding: 80px 20px;
    text-align: center;
}

.firmy-cta-inner {
    max-width: 600px;
    margin: 0 auto;
}

.firmy-cta h2 {
    color: white;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 0 16px;
}

.firmy-cta p {
    color: #cbd5e1;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0 0 30px;
}

.firmy-cta-btn {
    display: inline-block;
    background: white;
    color: #1e3a8a;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.firmy-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* =========================================
   ZĽAVY A AKCIE
   ========================================= */
.zlavy-section {
    padding: 70px 0;
    background: #f8fafc;
}

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

.zlavy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}

.zlavy-card {
    background: white;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 40px 28px 35px;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.zlavy-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.1);
}

.zlavy-card--featured {
    border: 2px solid #2563eb;
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.12);
}

.zlavy-featured-label {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #1e3a8a, #2563eb);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 0;
}

.zlavy-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 20px;
}

.zlavy-badge--blue {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #1e3a8a;
}

.zlavy-badge--green {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    color: #166534;
}

.zlavy-badge--gold {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #92400e;
}

.zlavy-card-body h3 {
    color: #0f172a;
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 6px;
}

.zlavy-subtitle {
    display: block;
    color: #3b82f6;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.zlavy-card-body p {
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

.zlavy-note {
    text-align: center;
    color: #94a3b8;
    font-size: 0.88rem;
    padding: 16px;
    border-top: 1px solid #e2e8f0;
}

/* =========================================
   KURZ – STANDALONE COURSE PAGE
   ========================================= */
.course-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #2563eb 100%);
    padding: 80px 0;
    color: white;
    overflow: hidden;
}

.course-hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.course-hero-text h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin: 16px 0 18px;
}

.course-hero-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.course-hero-meta {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

.course-hero-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 10px 16px;
    backdrop-filter: blur(6px);
}

.course-hero-meta-icon {
    font-size: 1.4rem;
}

.course-hero-meta-item div {
    display: flex;
    flex-direction: column;
}

.course-hero-meta-item strong {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.7;
}

.course-hero-meta-item span {
    font-size: 0.95rem;
    font-weight: 600;
}

.course-hero-btn {
    display: inline-block;
    background: white;
    color: #1e3a8a;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
}

.course-hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Advanced course hero variant (green-teal) */
.course-hero--advanced {
    background: linear-gradient(135deg, #0f172a 0%, #064e3b 50%, #059669 100%);
}

/* Excel visual mockup */
.course-hero-visual {
    display: flex;
    justify-content: center;
}

.excel-visual {
    width: 100%;
    max-width: 420px;
    background: #1a2744;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.excel-visual-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: #0f172a;
}

.excel-visual-dots {
    display: flex;
    gap: 6px;
}

.excel-visual-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #334155;
}

.excel-visual-dots span:first-child {
    background: #ef4444;
}

.excel-visual-dots span:nth-child(2) {
    background: #f59e0b;
}

.excel-visual-dots span:last-child {
    background: #22c55e;
}

.excel-visual-title {
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 500;
}

.excel-visual-toolbar {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 14px;
    background: #1e293b;
    border-bottom: 1px solid #334155;
}

.excel-tb-item {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: #94a3b8;
    border-radius: 4px;
    cursor: default;
}

.excel-tb-item.active {
    background: #2563eb;
    color: white;
    font-weight: 700;
}

.excel-tb-divider {
    width: 1px;
    height: 20px;
    background: #334155;
    margin: 0 4px;
}

.excel-visual-formula {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px;
    background: #1e293b;
    border-bottom: 1px solid #334155;
    font-size: 0.78rem;
    color: #60a5fa;
    font-family: monospace;
}

.excel-fx {
    font-weight: 700;
    color: #94a3b8;
    font-size: 0.7rem;
    background: #0f172a;
    padding: 2px 6px;
    border-radius: 3px;
}

.excel-visual-grid {
    display: grid;
    grid-template-columns: 28px 1fr 1fr 56px;
    font-size: 0.75rem;
}

.excel-cell {
    padding: 7px 10px;
    border-bottom: 1px solid #1e293b;
    border-right: 1px solid #1e293b;
    color: #cbd5e1;
    white-space: nowrap;
}

.excel-header-cell {
    background: #0f172a;
    color: #64748b;
    font-weight: 700;
    text-align: center;
    font-size: 0.7rem;
}

.excel-row-num {
    background: #0f172a;
    color: #64748b;
    text-align: center;
    font-size: 0.7rem;
}

.excel-header-val {
    background: #172554;
    color: #93c5fd;
    font-weight: 600;
}

.excel-num {
    text-align: right;
    color: #60a5fa;
    font-family: monospace;
}

.excel-total {
    font-weight: 700;
    color: #38bdf8 !important;
    background: rgba(37, 99, 235, 0.1);
}

.excel-status-ok {
    text-align: center;
    color: #22c55e;
}

.excel-status-warn {
    text-align: center;
    color: #f59e0b;
}

/* Course content section */
.course-content-section {
    padding: 80px 0;
    background: #f8fafc;
}

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

.course-content-header {
    text-align: center;
    margin-bottom: 50px;
}

.course-content-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}

.course-content-header p {
    color: #64748b;
    font-size: 1rem;
}

.course-topics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.course-topic-card {
    background: white;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 30px;
    display: flex;
    gap: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.course-topic-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(30, 58, 138, 0.08);
    border-color: #bfdbfe;
}

.course-topic-num {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.course-topic-body h3 {
    color: #0f172a;
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 10px;
}

.course-topic-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.course-topic-body ul li {
    position: relative;
    padding-left: 18px;
    color: #475569;
    font-size: 0.88rem;
    line-height: 1.9;
}

.course-topic-body ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

/* Course order section */
.course-order-section {
    padding: 80px 0;
    background: white;
}

.course-order-section .course-content-header p {
    color: #3b82f6;
    font-weight: 600;
}

/* =========================================
   POKYNY KU KURZU
   ========================================= */
.instructions-content {
    padding: 80px 0;
    background: #fff;
}

.instructions-content h2 {
    color: #0f172a;
    margin-bottom: 20px;
}

.instructions-content h3 {
    color: #3b82f6;
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.instructions-content ul {
    list-style: disc;
    margin-left: 20px;
    color: #334155;
}

.instructions-content li {
    margin-bottom: 10px;
}

/* =========================================
   RESPONZIVITA
   ========================================= */

@media (max-width: 1200px) {
    .courses-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .logo-bar {
        font-size: 13px;
        padding: 6px 14px 6px 10px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 20px;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        gap: 15px;
        align-items: flex-start;
    }

    .nav-links.active {
        display: flex;
    }

    .dropdown:hover .mega-dropdown,
    .dropdown:hover .dropdown-menu {
        display: none;
    }

    .mega-dropdown,
    .dropdown-menu {
        display: none;
        position: static;
        box-shadow: none;
        border: none;
        padding: 0;
        background: transparent;
        width: 100%;
    }

    .mega-dropdown.open,
    .dropdown-menu.open {
        display: block !important;
    }

    .mega-cat-link,
    .mega-cat-header {
        padding: 8px 10px;
        font-size: 0.9rem;
    }

    .mega-submenu {
        padding-left: 20px;
    }

    .mega-submenu a {
        padding: 8px 14px;
        font-size: 0.87rem;
    }

    .hero {
        padding: 50px 0;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .courses-grid,
    .blog-grid,
    .selection-grid {
        grid-template-columns: 1fr;
    }

    .date-card {
        flex: 1 1 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .nl-form {
        flex-direction: column;
        width: 100%;
    }

    .nl-form input {
        min-width: unset;
        width: 100%;
    }

    .nl-form button {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    /* Podstránky */
    .doc-box {
        padding: 30px 20px;
    }

    .main-box {
        padding: 30px 20px;
    }

    .page-title {
        font-size: 1.6rem;
    }

    .about-hero h1 {
        font-size: 2rem;
    }

    .about-benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-benefit-card--wide {
        grid-column: span 1;
    }

    .reviews-arrow {
        width: 36px;
        height: 36px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .zlavy-grid {
        grid-template-columns: 1fr;
    }

    .course-hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .course-hero-text h1 {
        font-size: 2rem;
    }

    .course-hero-meta {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .course-hero-visual {
        display: none;
    }

    .excel-visual {
        max-width: 340px;
    }

    .course-topics-grid {
        grid-template-columns: 1fr;
    }
}

/* --- NA OTÁZKU LINK --- */
.na-otazku-link {
    color: #ef4444 !important;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s, text-decoration 0.2s;
}

.na-otazku-link:hover {
    color: #dc2626 !important;
    text-decoration: underline;
}

/* --- KONTAKTNÝ FORMULÁR --- */
#contactForm textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    outline: none;
}

/* --- BLOG KARTY --- */
.blog-card-date {
    display: block;
    font-size: 0.78rem;
    color: var(--text-light);
    margin-bottom: 4px;
    font-weight: 500;
}

/* --- BLOG ČLÁNOK --- */
.blog-article-hero {
    background: radial-gradient(circle at top right, #1e293b, #0f172a);
    color: var(--white);
    padding: 80px 24px 60px;
    text-align: center;
}

.blog-article-hero-inner {
    max-width: 800px;
    margin: 0 auto;
}

.blog-article-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.blog-article-hero p {
    color: #cbd5e1;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.blog-article-section {
    padding: 60px 24px 80px;
    background: var(--white);
}

.blog-article-content {
    max-width: 760px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-main);
}

.blog-article-img {
    width: 100%;
    border-radius: var(--radius);
    margin-bottom: 32px;
}

.blog-article-content h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 40px;
    margin-bottom: 16px;
}

.blog-article-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: 32px;
    margin-bottom: 12px;
}

.blog-article-content p {
    margin-bottom: 20px;
}

.blog-article-content ul,
.blog-article-content ol {
    margin-bottom: 20px;
    padding-left: 28px;
}

.blog-article-content li {
    margin-bottom: 8px;
    list-style: disc;
}

.blog-article-content ol li {
    list-style: decimal;
}

.blog-article-content a {
    color: var(--accent);
    text-decoration: underline;
    font-weight: 600;
}

.blog-article-content a:hover {
    color: var(--accent-hover);
}

.blog-article-content blockquote {
    background: #f0f9ff;
    border-left: 4px solid var(--accent);
    padding: 16px 24px;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 24px 0;
    font-size: 0.98rem;
    color: var(--text-main);
}

.blog-article-content blockquote.warning {
    background: #fef2f2;
    border-left: 4px solid #ef4444;
    color: #991b1b;
}

.blog-article-content figure {
    margin: 32px 0;
}

.blog-article-content figure img {
    width: 100%;
    border-radius: var(--radius);
}

.blog-article-content figcaption {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 8px;
    font-style: italic;
}

.blog-article-back {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
}

.blog-article-back a {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.2s;
}

.blog-article-back a:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .blog-article-hero h1 {
        font-size: 1.8rem;
    }

    .blog-article-content {
        font-size: 1rem;
    }

    .blog-article-content h2 {
        font-size: 1.35rem;
    }
}

/* ========================================
   CART STYLES
   ======================================== */

/* Cart badge in nav */
.cart-link {
    position: relative;
    font-size: 1.1rem;
    text-decoration: none;
}

.cart-badge {
    background: #ef4444;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
    vertical-align: top;
    margin-left: 2px;
}

.cart-badge.empty {
    display: none;
}

/* Toast popup notification */
.cart-toast {
    position: fixed;
    top: 80px;
    right: 20px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: toastSlideIn 0.4s ease, toastFadeOut 0.4s ease 2.6s forwards;
}

@keyframes toastSlideIn {
    from { transform: translateX(120%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

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

/* Cart empty state */
.cart-empty {
    text-align: center;
    padding: 60px 20px;
}

.cart-empty-icon {
    font-size: 4rem;
    margin-bottom: 16px;
    opacity: 0.4;
}

.cart-empty h2 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.cart-empty p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Cart items list */
.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.cart-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.3s ease;
}

.cart-item:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.08);
}

.cart-item-row-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.cart-item-row-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-top: 8px;
    border-top: 1px solid #f1f5f9;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.cart-item-date {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.cart-item-price-wrapper {
    text-align: right;
    flex-shrink: 0;
}

.cart-item-price {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--accent);
    white-space: nowrap;
}

.cart-item-price-detail {
    font-size: 0.8rem;
    color: #94a3b8;
    font-weight: 400;
    white-space: nowrap;
    margin-top: 2px;
}

.cart-item-remove {
    background: none;
    border: 1px solid #fee2e2;
    color: #ef4444;
    font-size: 0.8rem;
    padding: 6px 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.cart-item-remove:hover {
    background: #fef2f2;
    border-color: #ef4444;
}

/* Cart qty controls */
.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 6px;
}

.cart-qty-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-right: 4px;
}

.cart-qty-btn {
    width: 30px;
    height: 30px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    background: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    color: #2563eb;
}

.cart-qty-btn:hover:not(:disabled) {
    background: #2563eb;
    color: #fff;
    border-color: #2563eb;
}

.cart-qty-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.cart-qty-value {
    font-size: 1.1rem;
    font-weight: 700;
    min-width: 24px;
    text-align: center;
}

.cart-qty-max {
    font-size: 0.75rem;
    color: #94a3b8;
}

.cart-item-line-total {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.cart-item-line-total small {
    font-weight: 400;
    color: #94a3b8;
    font-size: 0.8rem;
}

/* Validation error highlight */
.input-error {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15) !important;
}

input[type="checkbox"].input-error {
    outline: 2px solid #ef4444;
    outline-offset: 2px;
}

/* Participant name fields */
.participant-name-field {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s;
}

.participant-name-field:focus {
    border-color: #2563eb;
    outline: none;
}

/* Cart summary */
.cart-summary {
    background: linear-gradient(135deg, #eff6ff 0%, #f0fdf4 100%);
    border: 1px solid #bfdbfe;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 30px;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.cart-summary-row.discount {
    color: #16a34a;
    font-weight: 600;
}

.cart-summary-row.total {
    border-top: 2px solid #3b82f6;
    margin-top: 10px;
    padding-top: 12px;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
}

.cart-discount-info {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 8px;
    font-style: italic;
}

/* Promo code */
.promo-code-wrapper {
    max-width: 500px;
    margin: 0 auto;
}

.promo-code-input-group {
    display: flex;
    gap: 10px;
}

.promo-code-input-group input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: 2px;
    font-weight: 600;
    transition: border-color 0.2s;
}

.promo-code-input-group input:focus {
    border-color: #2563eb;
    outline: none;
}

.promo-apply-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

.promo-apply-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.promo-message {
    margin-top: 8px;
    font-size: 0.9rem;
    min-height: 1.2em;
}

.promo-message.success { color: #059669; font-weight: 600; }
.promo-message.error { color: #dc2626; font-weight: 600; }

.promo-applied {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #eff6ff;
    border: 2px solid #2563eb;
    border-radius: 10px;
    padding: 12px 16px;
    margin-top: 10px;
}

.promo-applied span {
    color: #1d4ed8;
    font-weight: 600;
    font-size: 0.95rem;
}

.promo-remove-btn {
    background: none;
    border: none;
    color: #dc2626;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.85rem;
    padding: 4px 8px;
    border-radius: 6px;
    transition: background 0.2s;
}

.promo-remove-btn:hover {
    background: #fef2f2;
}

/* Cart sections */
.cart-section {
    margin-bottom: 30px;
}

.cart-section-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--glass-border);
}

/* Payment methods */
.payment-methods {
    display: flex;
    gap: 16px;
}

.payment-method {
    flex: 1;
    border: 2px solid var(--glass-border);
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: block;
}

.payment-method:hover:not(.disabled) {
    border-color: var(--accent);
    background: rgba(59, 130, 246, 0.04);
}

.payment-method.active {
    border-color: var(--accent);
    background: rgba(59, 130, 246, 0.06);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.payment-method.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.payment-method input[type="radio"] {
    display: none;
}

.payment-method-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.payment-method-icon {
    font-size: 1.5rem;
}

.payment-method-content strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.payment-method-content small {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.payment-coming-soon {
    position: absolute;
    top: 8px;
    right: 12px;
    background: #94a3b8;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

/* Mobile cart */
@media (max-width: 600px) {
    .cart-item {
        padding: 16px;
    }

    .cart-item-row-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .cart-item-row-bottom {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .cart-item-qty {
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
    }

    .cart-qty-btn {
        width: 36px;
        height: 36px;
    }

    .cart-qty-value {
        font-size: 1.2rem;
        min-width: 30px;
    }

    .cart-item-remove {
        width: 100%;
        text-align: center;
        padding: 10px;
    }

    .cart-item-line-total {
        text-align: center;
        width: 100%;
        display: block;
    }

    .payment-methods {
        flex-direction: column;
    }

    /* Center cart page */
    .page-container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .cart-section {
        padding: 16px 12px;
    }

    /* Promo button below input */
    .promo-code-input-group {
        flex-direction: column;
    }

    .promo-apply-btn {
        width: 100%;
    }

    .promo-code-wrapper {
        padding: 0 4px;
    }

    /* Form wider */
    .form-wrapper {
        padding: 0 4px;
    }

    .form-row {
        flex-direction: column;
        gap: 12px;
    }
}

/* ========================================
   LEKTOR SECTION
   ======================================== */
.lektor-section {
    padding: 60px 24px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

.lektor-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 48px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 48px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.lektor-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.lektor-photo-wrapper {
    flex-shrink: 0;
    position: relative;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
}

.lektor-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    transform: scale(1.15);
    border: 3px solid rgba(59, 130, 246, 0.4);
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.15), 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.lektor-photo-wrapper::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6, #3b82f6);
    z-index: 0;
    opacity: 0.3;
    animation: lektorGlow 4s ease-in-out infinite alternate;
}

@keyframes lektorGlow {
    0% { opacity: 0.2; transform: scale(1); }
    100% { opacity: 0.4; transform: scale(1.02); }
}

.lektor-info {
    flex: 1;
    position: relative;
    z-index: 1;
}

.lektor-badge {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}

.lektor-name {
    font-size: 1.65rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.2;
}

.lektor-role {
    font-size: 0.92rem;
    color: #94a3b8;
    font-weight: 500;
    margin-bottom: 18px;
}

.lektor-bio {
    font-size: 0.92rem;
    line-height: 1.75;
    color: #cbd5e1;
}

.lektor-bio p {
    margin-bottom: 10px;
}

.lektor-bio p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .lektor-inner {
        flex-direction: column;
        text-align: center;
        padding: 36px 24px;
        gap: 28px;
    }

    .lektor-photo-wrapper {
        width: 130px;
        height: 130px;
    }

    .lektor-name {
        font-size: 1.4rem;
    }

    .lektor-bio {
        font-size: 0.88rem;
    }
}