/* ========================================
   IMPORTS & GLOBAL STYLES
======================================== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

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

html {
    scroll-behavior: smooth;
}

:root {
    --primary-color: blue;
    --text-dark: #1a1a1a;
    --text-gray: #6b7280;
    --bg-light: #f9fafb;
    --border-color: #e5e7eb;
    --transition: all 0.3s ease;
}

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

/* ========================================
 DROPDOWN MENU
======================================== */

.dropdown-menu a {
    text-decoration: none;
    color: inherit;
}

.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    cursor: pointer;
    transition: color 0.2s ease;
}

.dropdown-arrow {
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.nav-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 1000;
    margin-top: 8px;
    min-width: 800px;
    border: 1px solid #e1e5e9;
    overflow: hidden;
}

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

.dropdown-header {
    padding: 24px 24px 16px;
    border-bottom: 1px solid #f0f2f5;
}

.dropdown-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}

.dropdown-header p {
    font-size: 0.95rem;
    color: #6b7280;
    margin: 0;
}

.dropdown-body {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    flex: 1;
}

.dropdown-image {
    flex-shrink: 0;
    width: 320px;
    padding: 16px;
}

.dropdown-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 16px;
}

.dropdown-image-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}

.dropdown-image-content p {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0 0 16px 0;
    line-height: 1.4;
}

.dropdown-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0862ff;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: color 0.2s ease;
}

.dropdown-cta:hover {
    color: #0552e0;
}

.dropdown-cta i {
    font-size: 0.75rem;
}

.dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 24px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-radius: 0;
}

.dropdown-item:hover {
    background: #f8f9fa;
}

.dropdown-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #f0f8ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dropdown-icon i {
    font-size: 1.25rem;
    color: #0862ff;
}

.dropdown-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 4px 0;
}

.dropdown-content p {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
}

.dropdown-footer {
    padding: 16px 24px 20px;
    border-top: 1px solid #f0f2f5;
    display: flex;
    align-items: center;
    gap: 12px;
}

.dropdown-link {
    color: #0862ff;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.dropdown-link:hover {
    color: #0552e0;
}

.dropdown-divider {
    color: #d1d5db;
    font-size: 0.875rem;
}


/* ========================================
   STATS SECTION
======================================== */

.stats-section {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stats-section.reveal {
    opacity: 1;
    transform: translateY(0);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    padding-top: 20px;
}

.stat-item.reveal {
    opacity: 1;
    transform: translateY(0);
}

.stat-number {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: #0862ff;
    line-height: 1;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    color: #6b7280;
    font-weight: 500;
    line-height: 1.4;
    max-width: 200px;
    margin: 0 auto;
}

.stat-highlight {
    color: #0862ff;
    font-weight: 600;
}

/* Visual enhancement line above each stat */
.stat-item::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #0862ff, #4f46e5);
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.5s ease 0.3s;
}

.stat-item.reveal::before {
    opacity: 1;
}

/* Number animation effect */
.stat-number.counting {
    background: linear-gradient(45deg, #0862ff, #4f46e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Animation delays for staggered effect */
.stat-item:nth-child(1) {
    transition-delay: 0.1s;
}

.stat-item:nth-child(2) {
    transition-delay: 0.3s;
}

.stat-item:nth-child(3) {
    transition-delay: 0.5s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .stat-item {
        max-width: 300px;
        margin: 0 auto;
    }

    .stat-label {
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .stats-section {
        padding: 0 15px;
        margin: 2rem auto;
    }

    .stats-grid {
        gap: 1.5rem;
    }

    .stat-number {
        margin-bottom: 0.25rem;
    }
}

.stat-symbol {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 600;
    color: #0862ff;
    margin-left: 0.2rem;
    line-height: 1;
}

/* Update pro lepší alignment */
.stat-number {
    display: inline;
}

.stat-item .stat-number,
.stat-item .stat-symbol {
    vertical-align: baseline;
}

/* ========================================
   MOBILE MENU STYLES
======================================== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 9999;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6b7280;
    padding: 0.5rem;
}

.mobile-menu-links {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-menu-section {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-menu-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    padding: 1.2rem 0;
    border-bottom: 1px solid #e5e7eb;
    min-height: 60px;
    display: flex;
    align-items: center;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    padding: 1.2rem 0;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.2s ease;
    border-bottom: 1px solid #e5e7eb;
    margin: 0;
    min-height: 60px;
}

.mobile-menu-link.submenu-item {
    font-size: 0.95rem;
    font-weight: 400;
    color: #6b7280;
    padding-left: 1.5rem;
    position: relative;
}

.mobile-menu-link.submenu-item::before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    color: #6b7280;
    font-size: 0.8rem;
}

.mobile-menu-link.submenu-item:hover {
    color: #0862ff;
    padding-left: 2rem;
}


/* Zajistit stejnou výšku pro všechny řádky */
.mobile-menu-section:not(:has(h3)) {
    display: block;
}

.mobile-menu-section:not(:has(h3)) .mobile-menu-link {
    padding: 1.2rem 0;
    border-bottom: 1px solid #e5e7eb;
    min-height: 60px;
    display: flex;
    align-items: center;
}

.mobile-menu-link:hover {
    color: #0862ff;
    padding-left: 1rem;
    border-bottom-color: #e5e7eb;
}

.mobile-menu-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.mobile-menu-actions .btn {
    width: 100%;
    justify-content: center;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 1024px) {
    .dropdown-menu {
        min-width: 700px;
    }

    .dropdown-body {
        flex-direction: column;
        gap: 16px;
    }

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

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

@media (max-width: 768px) {
    /* Hide desktop dropdowns on mobile */
    .nav-dropdown .dropdown-menu {
        display: none;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }
}

@media (max-width: 640px) {
    .dropdown-menu {
        min-width: 90vw;
        left: 5vw;
        transform: translateX(0);
    }

    .dropdown-header {
        padding: 20px 20px 16px;
    }

    .dropdown-item {
        padding: 16px 20px;
    }

    .dropdown-footer {
        padding: 16px 20px 20px;
    }

    .mobile-menu-content {
        padding: 1.5rem;
    }
}

/* ========================================
   HOVER STATES & ANIMATIONS
======================================== */
.dropdown-trigger:hover {
    color: #0862ff;
}

.dropdown-item {
    position: relative;
    overflow: hidden;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(8, 98, 255, 0.05), transparent);
    transition: left 0.5s ease;
}

.dropdown-item:hover::before {
    left: 100%;
}


/* Animation for dropdown opening */
.dropdown-menu {
    transform: translateX(-50%) translateY(-5px);
}

.dropdown-menu.active {
    transform: translateX(-50%) translateY(0);
}

.center-text {
    text-align: left;
}

.center-text .title-big {
    font-size: clamp(2.5rem, 8vw, 3rem);
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s,
    transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}

.center-text.reveal .title-big {
    opacity: 1;
    transform: translateY(0);
}

.responsive-arrow {
    display: inline-block;
    vertical-align: middle;
    font-size: 4rem;
    animation: bounceDown 1.2s infinite;
}

@keyframes bounceDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}

/* Responsivní velikost pro mobilní zařízení */
@media (max-width: 768px) {
    .responsive-arrow {
        font-size: 2.5rem;
    }
}

/* ========================================
   SECTION NAVIGATION
======================================== */
.section-nav {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    font-family: 'Outfit', sans-serif;
}

.section-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.section-nav a {
    display: flex;
    align-items: center;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.8rem;
    padding: 0.4rem 0.6rem;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    line-height: 1.3;
    letter-spacing: 0.01em;
    white-space: nowrap;
    backdrop-filter: blur(10px);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.section-nav a::before {
    content: '→';
    margin-right: 0.5rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--primary-color);
    font-size: 0.7rem;
}

.section-nav a:hover {
    background: rgba(8, 98, 255, 0.05);
    border-color: rgba(8, 98, 255, 0.2);
    transform: translateX(4px);
    color: var(--primary-color);
}

.section-nav a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.section-nav a.active {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    background: rgba(8, 98, 255, 0.08);
    border-color: rgba(8, 98, 255, 0.3);
    transform: translateX(6px);
    box-shadow: 0 2px 8px rgba(8, 98, 255, 0.15);
}

.section-nav a.active::before {
    opacity: 1;
    transform: translateX(0);
    animation: arrow-pulse 2s infinite;
}

@keyframes arrow-pulse {
    0%, 100% { opacity: 1; transform: translateX(0) scale(1); }
    50% { opacity: 0.6; transform: translateX(2px) scale(1.1); }
}

/* ========================================
   ANNOUNCEMENT BANNER
======================================== */
.announcement-banner {
    display: inline-flex;
    align-items: center;
    background-color: #f4f4f4;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 13px;
    color: #000;
    gap: 6px;
    cursor: pointer;
    transition: background 0.2s;
    margin-bottom: 1.5rem;
}

.announcement-banner:hover {
    background-color: #eaeaea;
}

.badge-new {
    background: linear-gradient(135deg, #8b5cf6, #ec4899, #22d3ee);
    color: white;
    font-weight: 500;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 999px;
}

.announcement-text {
    white-space: nowrap;
}

.arrow {
    font-size: 16px;
    margin-left: auto;
}

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

.hero-wide-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   TESTIMONIAL CARD
======================================== */
.testimonial-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 1.5rem;
    max-width: 600px;
    margin: 2rem auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out 0.6s both;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.testimonial-info p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #1a1a1a;
    margin: 0;

}

.testimonial-text::before {
    content: '"';
    font-size: 1.5rem;
    color: #0862ff;
    margin-right: 0.25rem;
}

.testimonial-text::after {
    content: '"';
    font-size: 1.5rem;
    color: #0862ff;
    margin-left: 0.25rem;
}

/* ========================================
   NAVIGATION
======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(7px);
    z-index: 1000;
    padding: 0.75rem 0;
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.nav-logo img {
    max-width: 80%;
    height: auto;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-gray);
    font-weight: 500;
    transition: var(--transition);
    font-size: clamp(0.8rem, 1.8vw, 0.9rem);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* ========================================
   BUTTONS
======================================== */
.btn {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    font-size: clamp(0.8rem, 1.8vw, 0.9rem);
    text-align: center;
    white-space: nowrap;
}

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

.btn-secondary {
    background: white;
    color: black;
    border: 1px solid #ddd;
}

.btn-primary:hover {
    background: #0552e0;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(8, 98, 255, 0.3);
}

.btn-secondary:hover {
    background: #f8f9fa;
    transform: translateY(-1px);
}

/* ========================================
   MOBILE MENU TOGGLE
======================================== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    padding-top: 100px;
    padding-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 5vw, 2.5rem);
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-left {
    order: 1;
    max-width: 600px;
}

.hero-right {
    order: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-bg {
    background: blue;
    padding: 3rem;
    border-radius: 25px;
    margin-bottom: 2rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.hero-title {
    font-size: clamp(2.25rem, 7.5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
    animation: fadeInUp 0.6s ease-out 0.2s both;
    color: white;
}

.hero-subtitle {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out 0.4s both;
    line-height: 1.5;
    color: whitesmoke;
}

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

/* ========================================
   USER BADGES
======================================== */
.user-badges {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.user-badge {
    width: clamp(26px, 5vw, 30px);
    height: clamp(26px, 5vw, 30px);
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid white;
    margin-right: -8px;
    transition: var(--transition);
}

.user-badge:hover {
    transform: scale(1.1);
    z-index: 1;
}

.user-badge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-count {
    margin-left: 1rem;
    font-size: clamp(0.7rem, 1.8vw, 0.8rem);
    color: var(--text-gray);
}

/* ========================================
   HERO CTA & FEATURES
======================================== */
.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    animation: fadeInUp 0.6s ease-out 0.8s both;
    margin-top: 1.5rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-gray);
    font-size: clamp(0.8rem, 2vw, 0.9rem);
}

/* ========================================
   HERO RIGHT - GRID ANIMATION
======================================== */
.grid-container {
    display: flex;
    gap: 20px;
    max-width: 600px;
    width: 100%;
}

.column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 50px;
}

.column.right {
    margin-top: 150px;
}

.column.left {
    margin-top: 50px;
}

.grid-item {
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 0.8s ease-out forwards;
    width: 100%;
}

.grid-item:nth-child(1) {
    animation-delay: 0.1s;
}

.grid-item:nth-child(2) {
    animation-delay: 0.3s;
}

.column.right .grid-item:nth-child(1) {
    animation-delay: 0.5s;
}

.column.right .grid-item:nth-child(2) {
    animation-delay: 0.7s;
}

.grid-item img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

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

/* ========================================
   SCROLL HR ANIMATION
======================================== */
.scroll-hr {
    width: 0;
    height: 2px;
    margin: 8px auto;
    border: none;
    background: #cfcfcf;
    transition: width 1s ease-out;
}

.scroll-hr.reveal {
    width: 100%;
}

/* ========================================
   MODULES SECTIONS - UNIVERSAL STYLES
======================================== */
.modules {
    padding: clamp(3rem, 8vw, 2rem) 0;
    background: white;
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.modules.reveal {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   MODULES TITLES - UNIVERSAL STYLES
======================================== */
.modules-title,
.title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s,
    transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}

.modules.reveal .modules-title,
.modules.reveal .title {
    opacity: 1;
    transform: translateY(0);
}

.modules-title-big {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s,
    transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}

.modules.reveal .modules-title-big {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   MODULES SUBTITLES - UNIVERSAL STYLES
======================================== */
.intro-subtitle {
    font-size: clamp(1rem, 3vw, 1.2rem);
    color: #6b7280;
    max-width: 800px;
    margin: 2rem auto;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s,
    transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s;
}

.modules.reveal .intro-subtitle {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   GRADIENT TEXT
======================================== */
.gradient-text {
    color: blue;
}

/* ========================================
   BENEFIT BUTTONS
======================================== */
.button-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.custom-outline-button {
    flex: 1 1 calc(25% - 12px); /* 4 per row minus gap */
    min-width: 140px;
    max-width: 200px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid #ccc;
    border-radius: 999px;
    background: transparent;
    color: #1a1a1a;
    font-size: 1rem;
    font-weight: 500;
    padding: 10px 16px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.custom-outline-button i {
    font-size: 1.2rem;
}

/* Hover effect */
.custom-outline-button:hover {
    border-color: #000;
}

/* Responsive: on smaller screens show 2 per row */
@media (max-width: 768px) {
    .custom-outline-button {
        flex: 1 1 calc(50% - 12px);
    }
}



/* ========================================
   LARGE IMAGES
======================================== */
.large-image {
    display: block;
    max-width: 100%;
    width: 100%;
    height: auto;
    margin: 2rem auto;
    border-radius: 12px;
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.large-image.reveal {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ========================================
   ACTION BUTTONS & DEMO CTA
======================================== */
.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.demo-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    color: #6b7280;
}

.demo-cta .user-badge {
    margin-right: 0;
}

/* ========================================
   ICON BACKGROUNDS
======================================== */
.big_icon-bg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    font-size: 1.5rem;
    margin: 0 8px;
    vertical-align: middle;
    margin-top: -8px;
}

.bigger_icon-bg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 8px;
    font-size: 3rem;
    margin: 0 8px;
    vertical-align: middle;
    margin-bottom: 1rem;
}

.blue-bg {
    background-color: rgba(0, 102, 255, 0.1);
    color: #0862ff;
}

.green-bg {
    background-color: rgba(116, 179, 21, 0.88);
    color: rgba(68, 110, 0, 0.88);
}

.violet-bg {
    background-color: rgba(233, 38, 255, 0.24);
    color: #bf1ad3;
}

.gradient-bg {
    background: linear-gradient(135deg, #7f00ff, #e100ff); /* fialovo-růžový AI styl */
    color: #ffffff;
}



/* ========================================
   STORYLANE EMBED STYLES
======================================== */
.storylane-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: all 0.6s ease;
    will-change: transform, opacity;
}

.storylane-wrapper.reveal {
    opacity: 1;
    transform: translateY(0) scale(1);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.sl-embed {
    position: relative;
    padding-bottom: calc(50.82% + 25px);
    width: 100%;
    height: 0;
    transform: scale(1);
}

.sl-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: 1px solid rgba(63, 95, 172, 0.35);
    border-radius: 10px;
    box-shadow: 0px 0px 18px rgba(26, 19, 72, 0.15);
    box-sizing: border-box;
}

/* ========================================
   RIPPLE ANIMATION
======================================== */
@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */

/* Large screens */
@media (max-width: 1200px) {
    .section-nav {
        display: none;
    }

    .hero-wide-container {
        max-width: 1200px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .nav-links,
    .nav-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        padding: 120px 0 40px;
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        margin-bottom: 2rem;
    }

    .hero-left {
        order: 1;
        max-width: none;
    }

    .hero-right {
        order: 2;
    }

    .hero-bg {
        padding: 2rem;
        border-radius: 20px;
    }

    .user-badges {
        justify-content: center;
    }

    .features-list {
        align-items: center;
    }

    .grid-container {
        max-width: 400px;
        flex-direction: column;
        gap: 15px;
    }

    .column.right {
        margin-top: 0;
    }

    .grid-item img {
        max-width: 280px;
        border-radius: 15px;
    }

    .hero-cta {
        justify-content: center;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        min-width: 200px;
    }

    .testimonial-card {
        margin: 1.5rem 1rem;
        padding: 1.25rem;
    }

    .testimonial-header {
        gap: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .testimonial-avatar {
        width: 40px;
        height: 40px;
    }

    .testimonial-info h4 {
        font-size: 0.9rem;
    }

    .testimonial-info p {
        font-size: 0.8rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }
}

/* Mobile phones */
@media (max-width: 480px) {
    .container,
    .hero-wide-container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 0 30px;
    }

    .hero-bg {
        padding: 1.5rem;
        border-radius: 15px;
        margin-bottom: 1.5rem;
    }

    .hero-content {
        gap: 1.5rem;
    }

    .user-badges {
        transform: scale(0.9);
        transform-origin: center;
        justify-content: center;
    }

    .hero-cta {
        gap: 0.75rem;
        flex-direction: column;
    }

    .btn {
        min-width: 100%;
        padding: 12px 16px;
    }

    .features-list {
        margin-top: 1rem;
        gap: 0.5rem;
    }

    .grid-container {
        max-width: 300px;
    }

    .grid-item img {
        max-width: 250px;
        border-radius: 12px;
    }

    .modules {
        padding: 2rem 0;
    }

    .modules-title,
    .title {
        margin-bottom: 1.5rem;
    }

    .large-image {
        margin: 1.5rem auto;
        border-radius: 8px;
    }

    .demo-cta {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .action-buttons {
        gap: 0.75rem;
    }

    .testimonial-card {
        margin: 1rem 0.75rem;
        padding: 1rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }
}

/* Very small phones */
@media (max-width: 360px) {
    .container,
    .hero-wide-container {
        padding: 0 12px;
    }

    .hero {
        padding: 90px 0 25px;
    }

    .hero-bg {
        padding: 1.25rem;
    }

    .nav-logo {
        font-size: 0.85rem;
    }

    .nav-logo img {
        width: 20px;
    }

    .user-count {
        font-size: 0.65rem;
        margin-left: 0.5rem;
    }

    .grid-item img {
        max-width: 220px;
    }
}

/* Landscape orientation for mobile */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 80px 0 30px;
    }

    .hero-content {
        margin-bottom: 1rem;
    }

    .modules {
        padding: 1.5rem 0;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .section-nav a {
        border: 1px solid var(--text-dark);
    }

    .section-nav a.active {
        background: var(--text-dark);
        color: white;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print styles */
@media print {
    .navbar,
    .section-nav {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
}


/* ========================================
   VIDEO CONTAINER
======================================== */

.video-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    border-radius: 20px;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

/* Pro iframe nebo embedded video */
.video-container iframe {
    width: 100%;
    height: auto;
    display: block;
}

/* Aspect ratio wrapper - pokud potřebujete zachovat poměr stran */
.video-aspect-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-aspect-wrapper video,
.video-aspect-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ========================================
   EXPLANATION CONTAINER
======================================== */

.categories-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
    align-items: start;
}

/* Levá strana - fotka */
.image-container {
    position: sticky;
    top: 2rem;
}

.image-container img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    transition: all 0.3s ease;
}

/* Pravá strana - obsah */
.content-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.category-item {
    border: 1px dashed #e5e7eb;
    border-radius: 8px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.category-item:hover {
    border-color: #0862ff;
    box-shadow: 0 4px 12px rgba(8, 98, 255, 0.15);
}

.category-item.active {
    border-color: #0862ff;
    box-shadow: 0 8px 20px rgba(8, 98, 255, 0.2);
    background: rgba(8, 98, 255, 0.02);
}

.category-title {
    font-size: 1.2rem;
    font-weight: 300;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.category-title::after {
    content: '+';
    font-size: 1.5rem;
    color: blue;
    transition: all 0.3s ease;
}

.category-item.active .category-title::after {
    content: '−';
    color: #0862ff;
    transform: rotate(180deg);
}

.category-text {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    text-align: left;
}


.category-item.active .category-text {
    max-height: 200px;
    margin-top: 1rem;
}

.category-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #6b7280;
    text-align: left;
    max-width: 100%;
    margin: 0;
}

/* Responsivní design */
@media (max-width: 1024px) {
    .categories-container {
        grid-template-columns: 300px 1fr;
        gap: 2rem;
    }

    .image-container img {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .categories-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem;
    }

    .image-container {
        order: 2;
        position: static;
        text-align: center;
    }

    .image-container img {
        width: 100%;
        max-width: 400px;
        height: auto;
        aspect-ratio: 1;
    }

    .content-container {
        order: 1;
    }

    .category-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .categories-container {
        padding: 0.5rem;
    }

    .category-item {
        padding: 1rem;
    }

    .category-title {
        font-size: 1.1rem;
    }

    .category-text p {
        font-size: 0.9rem;
    }
}

/* ========================================
  BLUE CARD
======================================== */

.blue-card {
    max-width: 1200px;
    margin: 0 auto;
    background: blue;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.card-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.card-text {
    flex: 1;
}

.card-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.card-description {
    font-size: clamp(1rem, 3vw, 1.1rem);
    color: white;
    line-height: 1.6;
    opacity: 0.9;
}

.card-image {
    flex-shrink: 0;
}

.card-image img {
    width: 200px;
    height: 200px;
    object-fit: cover;
}

/* Responsivní design */
@media (max-width: 768px) {
    .blue-card {
        padding: 2rem;
    }

    .card-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .card-image img {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .blue-card {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .card-content {
        gap: 1rem;
    }

    .card-image img {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 768px) {
    .bigger_icon-bg {
        width: 50px;
        height: 50px;
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .big_icon-bg {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
        margin: 0 6px;
        margin-top: -6px;
    }
}

@media (max-width: 480px) {
    .bigger_icon-bg {
        width: 45px;
        height: 45px;
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .big_icon-bg {
        width: 32px;
        height: 32px;
        font-size: 1rem;
        margin: 0 4px;
        margin-top: -4px;
    }
}

/* ========================================
   CAMPAIGNS SECTION - DOTS PATTERN
======================================== */
#campaigns {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

#campaigns::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background-image: radial-gradient(circle, #d1d5db 2px, transparent 2px);
    background-size: 30px 30px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

/* Zajistíme, že obsah je nad dots patternem */
#campaigns > * {
    position: relative;
    z-index: 1;
}


/* ========================================
  BD SWITCH
======================================== */

/* Apple Style Switch */
.apple-switch-container {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.apple-switch {
    position: relative;
    background: #e5e7eb;
    border-radius: 50px;
    padding: 6px;
    display: inline-flex;
    align-items: center;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.switch-option {
    position: relative;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    transition: color 0.3s ease;
    border-radius: 44px;
    z-index: 2;
    white-space: nowrap;
    text-align: center;
    user-select: none;
    width: 200px; /* Fixovaná šířka pro oba */
}

.switch-option.active {
    color: #1f2937;
}

.switch-slider {
    position: absolute;
    top: 6px;
    left: 6px;
    height: calc(100% - 12px);
    width: 200px; /* Stejná šířka jako option */
    background: white;
    border-radius: 44px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.switch-slider.bd-active {
    transform: translateX(200px); /* Posun o šířku jednoho option */
}

/* Responsive */
@media (max-width: 768px) {
    .switch-option {
        padding: 10px 20px;
        font-size: 0.9rem;
        width: 170px;
    }

    .switch-slider {
        width: 170px;
    }

    .switch-slider.bd-active {
        transform: translateX(170px);
    }
}

@media (max-width: 480px) {
    .switch-option {
        padding: 8px 16px;
        font-size: 0.8rem;
        width: 140px;
    }

    .switch-slider {
        width: 140px;
    }

    .switch-slider.bd-active {
        transform: translateX(140px);
    }
}

/* ========================================
   RECORDING CONTAINER
======================================== */

.recorder-container {
    background: #ff4444;
    border-radius: 30px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 20px rgba(255, 68, 68, 0.3);
    max-width: 400px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    margin-bottom: 3rem;
}

.control-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    color: white;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.control-btn.recording {
    background: white;
    color: #ff4444;
}

.waveform-container {
    flex: 1;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    overflow: hidden;
}

.wave-bar {
    width: 3px;
    background: white;
    border-radius: 2px;
    transition: height 0.1s ease;
    opacity: 0.7;
}

.wave-bar.active {
    opacity: 1;
}

.time-display {
    color: white;
    font-size: 14px;
    font-weight: 500;
    min-width: 40px;
    text-align: right;
}

.recording-indicator {
    position: absolute;
    top: -10px;
    left: 20px;
    background: #ff4444;
    color: white;
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.recorder-container.recording .recording-indicator {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .recorder-container {
        border-radius: 25px;
        padding: 12px 16px;
        gap: 12px;
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .recorder-container {
        border-radius: 20px;
        padding: 10px 14px;
        gap: 10px;
        min-width: 280px;
        max-width: 85%;
    }

    .control-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .waveform-container {
        height: 35px;
        gap: 1px;
    }

    .time-display {
        font-size: 13px;
        min-width: 35px;
    }

    .recording-indicator {
        font-size: 11px;
        padding: 3px 6px;
        top: -8px;
        left: 14px;
    }
}

@media (max-width: 320px) {
    .recorder-container {
        padding: 8px 12px;
        gap: 8px;
        min-width: 260px;
    }

    .control-btn {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .waveform-container {
        height: 32px;
    }

    .time-display {
        font-size: 12px;
        min-width: 32px;
    }
}

/* ========================================
   INTERVIEWS DEMO
======================================== */

.interview-container {
    display: flex;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 1200px;
    height: 600px;
}

/* Left Sidebar */
.interview-sidebar {
    width: 320px;
    background: #f8f9fa;
    padding: 24px;
    border-right: 1px solid #e9ecef;
    display: flex;
    flex-direction: column;
}

.interview-candidate-info {
    text-align: center;
    margin-bottom: 32px;
}

.interview-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.interview-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.interview-candidate-name {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.interview-candidate-status {
    color: #6c757d;
    font-size: 14px;
}

.interview-action-buttons {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.interview-btn {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    background: white;
    font-size: 12px;
    color: #495057;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.interview-btn:hover {
    background: #f8f9fa;
    border-color: #adb5bd;
}

.interview-details {
    flex: 1;
}

.interview-detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding: 12px 0;
}

.interview-detail-icon {
    width: 20px;
    height: 20px;
    color: #6c757d;
}

.interview-detail-content h4 {
    font-size: 12px;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    font-weight: 500;
}

.interview-detail-content p {
    font-size: 14px;
    color: #1a1a1a;
    font-weight: 500;
}

/* Main Content */
.interview-main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.interview-tabs {
    display: flex;
    border-bottom: none;
    padding: 24px;
    gap: 8px;
    flex-shrink: 0;
}

.interview-content-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.interview-tabs {
    display: flex;
    border-bottom: none;
    padding: 24px;
    gap: 8px;
}

.interview-tab {
    padding: 16px 24px;
    border: none;
    background: #f1f5f9;
    font-size: 14px;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 12px;
    font-weight: 500;
}

.interview-tab.active {
    color: white;
    background: #4f46e5;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.25);
}

.interview-chat-area {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.interview-initial-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.interview-chat-conversation {
    display: none;
    flex-direction: column;
    gap: 16px;
    flex: 1;
    overflow-y: auto;
    padding-bottom: 20px;
}

.interview-chat-conversation.active {
    display: flex;
}

.interview-notes-view {
    display: none;
    flex-direction: column;
    flex: 1;
    overflow-y: auto;
    padding: 24px;
    background: white;
}

.interview-notes-view.active {
    display: flex;
}

.interview-transcript-view {
    display: none;
    flex-direction: column;
    flex: 1;
    overflow-y: auto;
    padding: 24px;
    background: white;
}

.interview-transcript-view.active {
    display: flex;
}

.interview-transcript-content {
    line-height: 1.8;
    font-size: 15px;
    color: #374151;
}

.interview-transcript-content p {
    margin: 0;
    padding: 16px 0;
    border-bottom: 1px solid #e5e7eb;
}

.interview-transcript-content p:last-child {
    border-bottom: none;
}

.interview-notes-section {
    margin-bottom: 32px;
}

.interview-notes-section h2 {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e5e7eb;
}

.interview-notes-content {
    background: #f8faff;
    border-left: 4px solid #4f46e5;
    padding: 20px;
    border-radius: 0 8px 8px 0;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 16px;
}

.interview-notes-text {
    font-size: 15px;
    line-height: 1.7;
    color: #374151;
}

.interview-highlight {
    background: #fef3c7;
    padding: 2px 4px;
    border-radius: 3px;
    color: #92400e;
    font-weight: 500;
}

.interview-message {
    display: flex;
    gap: 12px;
    max-width: 80%;
}

.interview-message.user {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.interview-message.assistant {
    align-self: flex-start;
}

.interview-message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.interview-message-avatar.user {
    background: #4f46e5;
    color: white;
}

.interview-message-avatar.assistant {
    background: #f1f5f9;
    color: #4f46e5;
}

.interview-message-bubble {
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.4;
}

.interview-message.user .interview-message-bubble {
    background: #4f46e5;
    color: white;
    border-bottom-right-radius: 4px;
}

.interview-user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.interview-user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.interview-message.assistant .interview-message-bubble {
    background: #f1f5f9;
    color: #1f2937;
    border-bottom-left-radius: 4px;
}

.interview-ai-greeting {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
    justify-content: center;
}

.interview-ai-message {
    background: transparent;
    padding: 0;
    border-radius: 0;
    max-width: none;
}

.interview-ai-message h3 {
    color: #4f46e5;
    font-size: 24px;
    font-weight: 400;
    margin: 0;
}

.interview-action-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: auto;
    margin-bottom: 24px;
}

.interview-action-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.interview-action-card:hover {
    border-color: #4f46e5;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.1);
    transform: translateY(-2px);
}

.interview-action-icon {
    font-size: 1.5rem;
    color: #4f46e5;
    margin: 0 auto 1rem;
}

.interview-action-card h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.interview-input-area {
    border-top: 1px solid #e9ecef;
    padding: 20px 24px;
    background: #f8f9fa;
    position: relative;
}

.interview-try-me-bubble {
    position: absolute;
    top: -50px;
    right: 40px;
    background: #4f46e5;
    color: white;
    padding: 14px 20px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
    z-index: 100;
    animation: bubblePulse 1.5s infinite;
}

.interview-try-me-bubble::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #4f46e5;
}

.interview-try-me-bubble.hidden {
    display: none;
}

.interview-input-container {
    display: flex;
    align-items: center;
    gap: 16px;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 16px 20px;
    transition: all 0.3s ease;
}

.interview-input-container:hover {
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.interview-input-container input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    color: #374151;
    pointer-events: none;
    font-weight: 500;
}

.interview-send-btn {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: #4f46e5;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    animation: pulse 1.5s infinite;
    position: relative;
}


@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(79, 70, 229, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(79, 70, 229, 0);
    }
}

@keyframes bubbleBounce {
    0%, 20%, 80%, 100% {
        opacity: 0;
        transform: translateY(0);
    }
    40%, 60% {
        opacity: 1;
        transform: translateY(-5px);
    }
}

.interview-send-btn:hover {
    background: #4338ca;
}

/* Lottie Animation */
.interview-lottie-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .interview-container {
        flex-direction: column;
        height: auto;
        max-height: 90vh;
    }

    .interview-sidebar {
        display: none;
    }

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

@media (max-width: 640px) {
    .interview-action-cards {
        display: none;
    }

    .interview-ai-greeting {
        flex-direction: column;
        gap: 12px;
    }

    .interview-tabs {
        padding: 16px;
        gap: 6px;
    }

    .interview-tab {
        padding: 12px 16px;
        font-size: 13px;
    }
}


/* ========================================
   BLUE CARD INTERACTIVE
======================================== */

.blue-card-interactive {
    max-width: 1200px;
    margin: 0 auto;
    background: blue;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.interactive-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.interactive-btn {
    padding: 12px 24px;
    border: 2px solid white;
    border-radius: 12px;
    background: transparent;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.interactive-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.interactive-btn.active {
    background: white;
    color: blue;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.dynamic-content {
    transition: all 0.3s ease;
}

/* Responsive design */
@media (max-width: 768px) {
    .blue-card-interactive {
        padding: 2rem;
    }

    .interactive-buttons {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .interactive-btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    .card-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .card-image img {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .blue-card-interactive {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .interactive-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }

    .interactive-btn {
        width: 100%;
        padding: 12px 16px;
    }

    .card-image img {
        width: 120px;
        height: 120px;
    }
}

/* Smooth transitions for dynamic content */
.dynamic-content h2,
.dynamic-content p,
.dynamic-content button {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-image img {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.interactive-btn.transitioning {
    pointer-events: none;
}

/* ========================================
   FOOTER
======================================== */

/* Footer Styles */
.footer {
    background: #0000FFFF;
    color: white;
    padding: 4rem 0 2rem 0;
    margin-top: 6rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo img {
    margin-right: 0.5rem;
}

.footer-description {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.footer-cta {
    margin-bottom: 1.5rem;
}

.footer-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: white;
    text-decoration: none;
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: white;
}

/* Trust badges */
.trust-badges {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    border: none;
}

.trust-badge i {
    color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: none;
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem 0;
    }

    .footer-container {
        padding: 0 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-social {
        justify-content: center;
    }

    .trust-badges {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
}

/* ========================================
   PERSONALIZATION CARDS STYLES
======================================== */

.personalization-grid-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.personalization-grid-container.reveal {
    opacity: 1;
    transform: translateY(0);
}

.personalization-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.personalization-row-1 {
    display: grid;
    grid-template-columns: 2fr 2fr;
    gap: 24px;
}

.personalization-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}

.personalization-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 400px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
    overflow: hidden;
}

.personalization-card.reveal {
    opacity: 1;
    transform: translateY(0);
}

.personalization-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.personalization-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 32px;
}

.personalization-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 12px;
    line-height: 1.3;
}

.personalization-card p {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    flex: 1;
}

.personalization-card-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 24px;
    align-self: flex-start;
    border: 1px solid black;
    border-radius: 20px;
}

.personalization-card-button:hover {
    transform: translateX(4px);
}

.personalization-card-button.purple {
    color: black;
}

.personalization-card-button.purple:hover {
    color: black;
}

.personalization-card-button.green {
    color: #059669;
}

.personalization-card-button.green:hover {
    color: #047857;
}

.personalization-arrow {
    font-size: 16px;
    transition: transform 0.2s ease;
}

.personalization-card-button:hover .personalization-arrow {
    transform: translateX(3px);
}

.personalization-card-image {
    margin: 0;
    text-align: center;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.personalization-card.reveal .personalization-card-image {
    opacity: 1;
    transform: scale(1);
}

.personalization-card-image img {
    width: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 0;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}


/* ========================================
   FEATURED CARD STYLING
======================================== */

.personalization-card-featured {
    background: linear-gradient(135deg, #f0f9f0 0%, #e8f5e8 100%);
    border: 1px solid #d1e7dd;
    position: relative;
}

.personalization-card-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #22c55e, #16a34a);
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.personalization-card-featured h3 {
    color: #166534;
}

.personalization-card-featured p {
    color: #15803d;
}

.personalization-card-featured .personalization-card-button.purple {
    color: #15803d;
}

.personalization-card-featured .personalization-card-button.purple:hover {
    color: #14532d;
}

/* ========================================
   STAGGERED ANIMATION DELAYS
======================================== */

.personalization-row-1 .personalization-card:nth-child(1) {
    transition-delay: 0.1s;
}

.personalization-row-1 .personalization-card:nth-child(2) {
    transition-delay: 0.2s;
}

.personalization-row-2 .personalization-card:nth-child(1) {
    transition-delay: 0.3s;
}

.personalization-row-2 .personalization-card:nth-child(2) {
    transition-delay: 0.4s;
}

.personalization-row-2 .personalization-card:nth-child(3) {
    transition-delay: 0.5s;
}

/* Image animation delays */
.personalization-row-1 .personalization-card:nth-child(1) .personalization-card-image {
    transition-delay: 0.6s;
}

.personalization-row-1 .personalization-card:nth-child(2) .personalization-card-image {
    transition-delay: 0.7s;
}

.personalization-row-2 .personalization-card:nth-child(1) .personalization-card-image {
    transition-delay: 0.8s;
}

.personalization-row-2 .personalization-card:nth-child(2) .personalization-card-image {
    transition-delay: 0.9s;
}

.personalization-row-2 .personalization-card:nth-child(3) .personalization-card-image {
    transition-delay: 1.0s;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */

/* Tablets (768px and below) */
@media (max-width: 768px) {
    .personalization-grid-container {
        padding: 0 15px;
    }

    .personalization-row-1 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .personalization-row-2 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .personalization-card {
        min-height: 320px;
    }

    .personalization-card-content {
        padding: 24px;
    }

    .personalization-card h3 {
        font-size: 18px;
    }

    .personalization-card p {
        font-size: 15px;
    }

    .personalization-card-image img {
        height: 120px;
    }
}

/* Mobile phones (480px and below) */
@media (max-width: 480px) {
    .personalization-grid-container {
        padding: 0 12px;
    }

    .personalization-grid {
        gap: 16px;
    }

    .personalization-row-1,
    .personalization-row-2 {
        gap: 16px;
    }

    .personalization-card {
        min-height: 280px;
    }

    .personalization-card-content {
        padding: 20px;
    }

    .personalization-card h3 {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .personalization-card p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .personalization-card-button {
        font-size: 13px;
        padding: 8px 12px;
        margin-bottom: 20px;
    }

    .personalization-card-image img {
        height: 100px;
    }
}

/* Very small phones (360px and below) */
@media (max-width: 360px) {
    .personalization-grid-container {
        padding: 0 10px;
    }

    .personalization-card {
        min-height: 260px;
    }

    .personalization-card-content {
        padding: 16px;
    }

    .personalization-card h3 {
        font-size: 16px;
    }

    .personalization-card p {
        font-size: 13px;
        line-height: 1.5;
    }

    .personalization-card-image img {
        height: 80px;
    }
}


/* ========================================
   LEFT TEXT SECTION STYLES
======================================== */

.left-text-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.left-text-container.reveal {
    opacity: 1;
    transform: translateY(0);
}

.left-text-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 400px;
}

.left-text-info {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s,
    transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}

.left-text-container.reveal .left-text-info {
    opacity: 1;
    transform: translateX(0);
}

.left-text-title {
    font-size: clamp(2rem, 5vw, 2rem);
    font-weight: 500;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.left-text-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
    max-width: 500px;
}

.left-text-image {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateX(30px) scale(0.95);
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s,
    transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s;
}

.left-text-container.reveal .left-text-image {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.left-text-image img {
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.left-text-image img:hover {
    transform: scale(1.02);
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */

/* Tablets (1024px and below) */
@media (max-width: 1024px) {
    .left-text-content {
        gap: 3rem;
    }

    .left-text-subtitle {
        max-width: 450px;
    }

    .left-text-image img {
        max-width: 400px;
    }
}

/* Mobile landscape and small tablets (768px and below) */
@media (max-width: 768px) {
    .left-text-container {
        padding: 0 15px;
    }

    .left-text-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .left-text-info {
        order: 1;
        transform: translateY(-20px);
    }

    .left-text-container.reveal .left-text-info {
        transform: translateY(0);
    }

    .left-text-image {
        order: 2;
        transform: translateY(20px) scale(0.95);
    }

    .left-text-container.reveal .left-text-image {
        transform: translateY(0) scale(1);
    }

    .left-text-subtitle {
        max-width: 100%;
        margin: 0 auto;
    }

    .left-text-image img {
        max-width: 350px;
    }
}

/* Mobile phones (480px and below) */
@media (max-width: 480px) {
    .left-text-container {
        padding: 0 12px;
    }

    .left-text-content {
        gap: 2rem;
        min-height: 300px;
    }

    .left-text-title {
        margin-bottom: 1rem;
    }

    .left-text-image img {
        max-width: 300px;
        border-radius: 12px;
    }
}

/* Very small phones (360px and below) */
@media (max-width: 360px) {
    .left-text-container {
        padding: 0 10px;
    }

    .left-text-content {
        gap: 1.5rem;
    }

    .left-text-image img {
        max-width: 280px;
        border-radius: 10px;
    }
}

/* ========================================
   ALTERNATIVE LAYOUTS
======================================== */

/* Pokud chceš obrázek vlevo a text vpravo, přidej třídu .left-text-reverse */
.left-text-reverse .left-text-content {
    grid-template-columns: 1fr 1fr;
}

.left-text-reverse .left-text-info {
    order: 2;
    transform: translateX(30px);
}

.left-text-reverse .left-text-image {
    order: 1;
    transform: translateX(-30px) scale(0.95);
}

.left-text-reverse.reveal .left-text-info {
    transform: translateX(0);
}

.left-text-reverse.reveal .left-text-image {
    transform: translateX(0) scale(1);
}

/* Na mobilu zůstává text nahoře i u reverse varianty */
@media (max-width: 768px) {
    .left-text-reverse .left-text-info {
        order: 1;
        transform: translateY(-20px);
    }

    .left-text-reverse .left-text-image {
        order: 2;
        transform: translateY(20px) scale(0.95);
    }

    .left-text-reverse.reveal .left-text-info {
        transform: translateY(0);
    }

    .left-text-reverse.reveal .left-text-image {
        transform: translateY(0) scale(1);
    }
}


/* ========================================
   RIGHT TEXT SECTION STYLES
======================================== */

.right-text-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.right-text-container.reveal {
    opacity: 1;
    transform: translateY(0);
}

.right-text-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 400px;
}

.right-text-image {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateX(-30px) scale(0.95);
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s,
    transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}

.right-text-container.reveal .right-text-image {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.right-text-image img {
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.right-text-image img:hover {
    transform: scale(1.02);
}

.right-text-info {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s,
    transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s;
}

.right-text-container.reveal .right-text-info {
    opacity: 1;
    transform: translateX(0);
}

.right-text-title {
    font-size: clamp(2rem, 5vw, 2rem);
    font-weight: 500;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.right-text-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
    max-width: 500px;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */

/* Tablets (1024px and below) */
@media (max-width: 1024px) {
    .right-text-content {
        gap: 3rem;
    }

    .right-text-subtitle {
        max-width: 450px;
    }

    .right-text-image img {
        max-width: 400px;
    }
}

/* Mobile landscape and small tablets (768px and below) */
@media (max-width: 768px) {
    .right-text-container {
        padding: 0 15px;
    }

    .right-text-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .right-text-info {
        order: 1;
        transform: translateY(-20px);
    }

    .right-text-container.reveal .right-text-info {
        transform: translateY(0);
    }

    .right-text-image {
        order: 2;
        transform: translateY(20px) scale(0.95);
    }

    .right-text-container.reveal .right-text-image {
        transform: translateY(0) scale(1);
    }

    .right-text-subtitle {
        max-width: 100%;
        margin: 0 auto;
    }

    .right-text-image img {
        max-width: 350px;
    }
}

/* Mobile phones (480px and below) */
@media (max-width: 480px) {
    .right-text-container {
        padding: 0 12px;
    }

    .right-text-content {
        gap: 2rem;
        min-height: 300px;
    }

    .right-text-title {
        margin-bottom: 1rem;
    }

    .right-text-image img {
        max-width: 300px;
        border-radius: 12px;
    }
}

/* Very small phones (360px and below) */
@media (max-width: 360px) {
    .right-text-container {
        padding: 0 10px;
    }

    .right-text-content {
        gap: 1.5rem;
    }

    .right-text-image img {
        max-width: 280px;
        border-radius: 10px;
    }
}

/* ========================================
   COMPANIES
======================================== */

/* CSS */
.testimonial {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

.testimonial__title {
    font-size: 1.75rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.testimonial__logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.testimonial__logos a {
    /* jednotný box pro každé logo */
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial__logos img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.testimonial__logos a:hover img {
    filter: grayscale(0%);
}

/* Responsivní */
@media (max-width: 768px) {
    .testimonial__title {
        font-size: 1.5rem;
    }
    .testimonial__logos a {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .testimonial__title {
        font-size: 1.25rem;
    }
    .testimonial__logos {
        gap: 1rem;
    }
    .testimonial__logos a {
        width: 60px;
        height: 60px;
    }
}

.section-spacing-large {
    padding: 5rem 0;
}

@media (max-width: 768px) {
    .section-spacing-large {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .section-spacing-large {
        padding: 2rem 0;
    }
}




