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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: white;
    color: #1e293b;
    line-height: 1.16;
    overflow-x: hidden;
}

.grey-text {
    color: #6a6a6a;
}


.gradient-text {
    /* 1. Definice samotného gradientu */
    background: linear-gradient(90deg,#1179fc,#dc82fc);

    /* 2. Oříznutí pozadí na tvar textu */
    -webkit-background-clip: text;
    background-clip: text;

    /* 3. Zprůhlednění barvy textu, aby byl vidět gradient */
    color: transparent;
}

/* Hero Benefits */
.hero-benefits {
    display: flex;
    gap: 2rem;
    justify-content: left;
    align-items: center;
    margin-top: 3rem;
    opacity: 0;
    transform: scale(0.8);
    animation: popUp 0.6s ease-out 1.1s forwards;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.benefit-icon {
    width: 20px;
    height: 20px;
    background: blue;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    color: white;
    font-size: 14px;
}

.benefit-text {
    font-size: 1rem;
    color: #1e293b;
    font-weight: 400;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .hero-benefits {
        gap: 1.5rem;
    }

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

/* Responsive - Mobile */
@media (max-width: 768px) {
    .hero-benefits {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .benefit-item {
        gap: 0.6rem;
    }

    .benefit-icon {
        width: 28px;
        height: 28px;
    }

    .benefit-icon i {
        font-size: 16px;
    }

    .benefit-text {
        font-size: 0.9rem;
    }
}

/* Responsive - Small Mobile */
@media (max-width: 480px) {
    .hero-benefits {
        margin-top: 1.2rem;
        gap: 0.8rem;
    }

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

    .benefit-icon i {
        font-size: 14px;
    }

    .benefit-text {
        font-size: 0.85rem;
    }
}

.button-wrapper {
    display: flex;
    justify-content: center;
}

/* Tlačítko */
.convert-btn {
    background-color: transparent;
    color: white;
    border: 1px solid white;
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
}

/* Hover efekt */
.convert-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Responzivní úpravy */
@media (max-width: 480px) {
    .convert-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
}


/* Modal Overlay */
.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.video-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Modal Content */
.modal-content {
    position: relative;
    background: white;
    border: 8px solid white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: scaleIn 0.3s ease;
    max-width: 95vw;
    max-height: 95vh;
}

/* Close Button */
.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    transition: all 0.3s ease;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: white;
    transform: scale(1.1);
}

/* YouTube Iframe */
.youtube-iframe {
    width: 1000px;
    height: 563px;
    border: none;
    border-radius: 12px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .youtube-iframe {
        width: 700px;
        height: 394px;
    }
}

@media (max-width: 768px) {
    .youtube-iframe {
        width: 85vw;
        height: calc(85vw * 0.5625); /* 16:9 aspect ratio */
        max-width: 600px;
        max-height: 338px;
    }

    .modal-close {
        top: -35px;
        right: -5px;
        width: 30px;
        height: 30px;
        font-size: 16px;
    }

    .modal-content {
        border: 6px solid white;
    }
}

@media (max-width: 480px) {
    .youtube-iframe {
        width: 90vw;
        height: calc(90vw * 0.5625);
        max-width: 500px;
        max-height: 281px;
    }

    .modal-close {
        top: -30px;
        right: 0;
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .modal-content {
        border: 5px solid white;
    }
}



.black-btn {
    margin-top: 2rem;
    background-color: transparent;
    color: black;
    border: 1px solid black;
    border-radius: 50px;
    padding: 20px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 8px; /* mezera mezi textem a ikonou */
}

/* Hover efekt */
.black-btn:hover {
    background-color: blue;
    color: white;
    border: none;
    transform: scale(1.05);
}

/* Ikona uvnitř */
.black-btn i {
    font-size: 18px;
}




/* Responzivní úpravy */
@media (max-width: 480px) {
    .black-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
}




/* ========================================
   LAYOUT CONTAINERS
   ======================================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========================================
   HEADER AND NAVIGATION
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
}

.header.scrolled {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    height: 40px;
    width: auto;
}

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

.nav-link {
    text-decoration: none;
    color: black;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: blue;
}

.auth-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.login-btn {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.login-btn:hover {
    color: #3b82f6;
}

.demo-btn {
    background: #c1e5ff;
    color: blue;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 20px;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.try-free-btn {
    background: blue;
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 20px;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.try-free-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.try-free-btn:hover::after {
    transform: translateX(3px);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    position: relative;
    z-index: 1001;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #64748b;
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    transform-origin: center;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: #1e293b;
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
    background: #1e293b;
}

/* ========================================
   DROPDOWN MENU STYLES
   ======================================== */
.nav-item {
    position: relative;
}

.nav-item.has-dropdown .nav-link {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.dropdown-arrow {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

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

/* Dropdown Container */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 1rem);
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1000;
}

.nav-item.has-dropdown:hover .dropdown-menu,
.nav-item.has-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    top: calc(100% + 0.5rem);
}

.dropdown-content {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    min-width: 600px;
    border: 1px solid #e2e8f0;
}

/* Dropdown Sections */
.dropdown-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.dropdown-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0 0.75rem;
    margin-bottom: 0.5rem;
}

/* Dropdown Items */
.dropdown-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: #f8fafc;
    transform: translateX(2px);
}

.dropdown-item-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.dropdown-item-icon i {
    font-size: 1.4rem;
}

/* Icon Colors */
.icon-blue { color: #3b82f6; }
.icon-purple { color: #8b5cf6; }
.icon-green { color: #10b981; }
.icon-orange { color: #f59e0b; }
.icon-red { color: #ef4444; }
.icon-pink { color: #ec4899; }
.icon-teal { color: #14b8a6; }
.icon-yellow { color: #eab308; }
.icon-indigo { color: #6366f1; }
.icon-linkedin { color: #0077b5; }
.icon-youtube { color: #ff0000; }
.icon-cyan { color: #06b6d4; }
.icon-darkblue { color: blue; }

.dropdown-item-content {
    flex: 1;
}

.dropdown-item-title {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
}

/* Featured Card */
.dropdown-featured {
    margin-top: 1rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    border-radius: 12px;
    border: 1px solid #e0f2fe;
}

.featured-badge {
    display: inline-block;
    background: linear-gradient(45deg, #2196F3, #8E2DE2);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.featured-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.featured-description {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.featured-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: #3b82f6;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.2s ease;
}

.featured-link:hover {
    gap: 0.5rem;
}

.featured-link i {
    font-size: 0.9rem;
}

/* ========================================
   MOBILE DROPDOWN STYLES
   ======================================== */
@media (max-width: 768px) {
    .nav-item.has-dropdown .nav-link {
        width: 100%;
        justify-content: space-between;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: all;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-item.has-dropdown.active .dropdown-menu {
        max-height: 1000px;
    }

    .dropdown-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        min-width: auto;
        width: 100%;
        padding: 1.5rem 1rem;
        margin-top: 0.5rem;
        box-shadow: none;
        border: none;
        border-top: 1px solid #e2e8f0;
        border-radius: 0;
        background: #f8fafc;
    }

    .dropdown-section {
        gap: 0.25rem;
    }

    .dropdown-label {
        padding: 0 0.5rem;
        margin-bottom: 0.25rem;
        font-size: 0.7rem;
    }

    .dropdown-item {
        padding: 0.75rem 0.5rem;
    }

    .dropdown-item-icon {
        width: 36px;
        height: 36px;
    }

    .dropdown-item-icon i {
        font-size: 1.2rem;
    }

    .dropdown-item-title {
        font-size: 0.95rem;
    }

    .dropdown-featured {
        margin-top: 0.5rem;
        padding: 1rem;
    }

    .featured-badge {
        font-size: 0.65rem;
        padding: 0.2rem 0.5rem;
    }

    .featured-title {
        font-size: 0.95rem;
    }

    .featured-description {
        font-size: 0.8rem;
    }

    .featured-link {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .dropdown-content {
        padding: 1rem 0.75rem;
    }

    .dropdown-item {
        gap: 0.75rem;
    }

    .dropdown-item-icon {
        width: 32px;
        height: 32px;
    }

    .dropdown-item-icon i {
        font-size: 1.1rem;
    }
}

/* Simple dropdown variant (pro Resources) */
.dropdown-content-simple {
    grid-template-columns: 1fr;
    min-width: 320px;
    gap: 0.5rem;
}

.dropdown-content-simple .dropdown-section {
    gap: 0.25rem;
}

.dropdown-content-simple .dropdown-item {
    padding: 0.875rem;
}

@media (max-width: 768px) {
    .dropdown-content-simple {
        min-width: auto;
    }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    min-height: 100vh;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    padding-bottom: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    z-index: 0;
    bottom: 0;
    left: 0;
    width: 40vw;
    height: 40vh;
    background: radial-gradient(
            circle at bottom left,
            rgba(17,121,252,0.22),
            rgba(220,130,252,0.18),
            transparent 75%
    );
    filter: blur(100px);
    transform: translateZ(0);
    pointer-events: none;
}





.hero-content {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: flex-start;
    padding-top: 8rem;
    position: relative;
    z-index: 3;
}

.content-left {
    flex: 1;
    max-width: 600px;
}

/* Hero Video */
.hero-video {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50vw;
    height: 70vh;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    animation: fadeIn 0.8s ease-out 1.1s forwards;
    z-index: 1;
}

/* ========================================
   HERO CONTENT ELEMENTS
   ======================================== */
/* New Badge */
.new-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.8);
    animation: popUp 0.6s ease-out 0.3s forwards;
}

.new-badge::before {
    content: 'New';
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.5rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    margin-right: 0.75rem;
    font-weight: 700;
}

.new-badge::after {
    content: '→';
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.new-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.3);
}

.new-badge:hover::after {
    transform: translateX(3px);
}

/* Typography */
.main-title {
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    font-weight: 500;
    line-height: 1.1;
    color: #1e293bd9;
    margin-bottom: 2rem;
    opacity: 0;
    transform: scale(0.8);
    animation: popUp 0.6s ease-out 0.5s forwards;
}

.subtitle {
    font-size: clamp(1rem, 4vw, 1.2rem);
    font-weight: 200;
    line-height: 1.16;
    color: #64748b;
    margin-bottom: 4.5rem;
    opacity: 0;
    transform: scale(0.8);
    animation: popUp 0.6s ease-out 0.7s forwards;
}

/* ========================================
   TYPING EFFECT STYLES
   ======================================== */
.typing-container {
    position: relative;
    display: inline-block;
}

.typing-text {
    position: relative;
}

.typing-cursor {
    display: inline-block;
    width: 2px;
    height: 1em;
    background-color: blue;
    margin-left: 2px;
    animation: blink 1s infinite;
    vertical-align: text-top;
    margin-top: 0.3rem;
}

/* Animace blikání kurzoru */
@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* ========================================
   BUTTONS
   ======================================== */
.primary-btn {
    background: blue;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.8);
    animation: popUp 0.6s ease-out 0.9s forwards;
    margin-right: 1rem;
}

.primary-btn:hover {
    background: #2563eb;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.secondary-btn {
    background: #dadada;
    color: black;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.8);
    animation: popUp 0.6s ease-out 0.9s forwards;
    margin-right: 1rem;
}

.secondary-btn:hover {
    background: #d1d5db;
    transform: translateY(-2px) scale(1.05);
    color: black !important;
}

/* ========================================
   SOCIAL PROOF SECTION
   ======================================== */

.social-proof-heading {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    font-size: 1.1rem;
    font-weight: 500;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.social-proof-heading::before,
.social-proof-heading::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent 0%, #cbd5e1 50%, transparent 100%);
    max-width: 150px;
}

.social-proof-heading::before {
    background: linear-gradient(to left, #cbd5e1 0%, transparent 100%);
}

.social-proof-heading::after {
    background: linear-gradient(to right, #cbd5e1 0%, transparent 100%);
}

.social-proof-section {
    padding: 4rem 0;
    background: #f8fafc;
    margin-top: 0;
}

.social-proof-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

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

.client-logo {
    height: 60px;
    width: auto;
    filter: grayscale(100%) contrast(1.1) brightness(0.7);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logo:hover {
    filter: grayscale(100%) contrast(1.1) brightness(0.8);
    opacity: 0.9;
    transform: scale(1.05);
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes popUp {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* ========================================
   FEATURE CARDS SECTION
   ======================================== */
.feature-cards-section {
    padding: 6rem 0;
    background: white;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.feature-cards-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}


.feature-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 4rem auto;
}

.feature-header-wrapper .feature-cards-title {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
}

.feature-header-wrapper .black-btn {
    margin-top: 0;
    flex-shrink: 0;
}

.feature-cards-title {
    text-align: left;
    font-size: clamp(1.4rem, 3.2vw, 2.8rem);
    font-weight: 500;
    color: #1e293b;
}

.feature-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.feature-cards-section.animate-in .feature-card:nth-child(1) {
    animation: slideInUp 0.6s ease 0.2s forwards;
}

.feature-cards-section.animate-in .feature-card:nth-child(2) {
    animation: slideInUp 0.6s ease 0.4s forwards;
}

.feature-cards-section.animate-in .feature-card:nth-child(3) {
    animation: slideInUp 0.6s ease 0.6s forwards;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 16px 16px 0 0;
    padding: 12px;
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    transition: transform 0.3s ease;
}

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

.feature-card-content {
    padding: 1.5rem;
}

.feature-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.feature-card-description {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

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

/* ========================================
   RESPONSIVE DESIGN - TABLET
   ======================================== */
@media (max-width: 1024px) {
    .feature-cards-section {
        padding: 5rem 0;
    }

    .feature-cards-subtitle {
        margin-bottom: 3.5rem;
    }

    .feature-cards-grid {
        gap: 1.5rem;
        max-width: 900px;
    }

    .feature-image-container {
        padding: 10px;
    }

    .feature-image {
        border-radius: 10px;
    }

    .feature-card-content {
        padding: 1.25rem;
    }

    .feature-card-title {
        font-size: 1.2rem;
    }

    .feature-card-description {
        font-size: 0.9rem;
    }
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE
   ======================================== */
@media (max-width: 768px) {
    .feature-cards-section {
        padding: 4rem 0;
    }

    .feature-cards-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
        padding: 0 1rem;
    }

    .feature-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .feature-image-container {
        padding: 12px;
    }

    .feature-image {
        border-radius: 12px;
    }

    .feature-card-content {
        padding: 1.5rem 1.2rem;
    }

    .feature-card-title {
        font-size: 1.15rem;
    }

    .feature-card-description {
        font-size: 0.9rem;
    }
}

/* ========================================
   RESPONSIVE DESIGN - SMALL MOBILE
   ======================================== */
@media (max-width: 480px) {
    .feature-cards-section {
        padding: 3rem 0;
    }

    .feature-cards-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .feature-cards-grid {
        gap: 1.2rem;
    }

    .feature-image-container {
        padding: 10px;
    }

    .feature-image {
        border-radius: 10px;
    }

    .feature-card-content {
        padding: 1.2rem 1rem;
    }

    .feature-card-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .feature-card-description {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}

/* ========================================
   RESPONSIVE DESIGN - EXTRA SMALL MOBILE
   ======================================== */
@media (max-width: 360px) {
    .feature-cards-section {
        padding: 2.5rem 0;
    }

    .feature-cards-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.8rem;
    }

    .feature-cards-grid {
        gap: 1rem;
    }

    .feature-image-container {
        padding: 8px;
    }

    .feature-image {
        border-radius: 8px;
    }

    .feature-card-content {
        padding: 1rem 0.8rem;
    }

    .feature-card-title {
        font-size: 1rem;
    }

    .feature-card-description {
        font-size: 0.8rem;
    }
}

/* ========================================
   SOLUTION SECTION
   ======================================== */
.solution-section {
    padding: 10rem 0;
    background: white;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.solution-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.solution-title {
    text-align: center;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 500;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.solution-description {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    max-width: 400px;
    margin: 0 auto 4rem auto;
    line-height: 1.5;
}

.solution-cards {
    display: flex;
    gap: 1.5rem;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

.solution-card {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: white;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
}

.solution-section.animate-in .solution-card:nth-child(1) {
    animation: slideInUp 0.6s ease 0.2s forwards;
}

.solution-section.animate-in .solution-card:nth-child(2) {
    animation: slideInUp 0.6s ease 0.4s forwards;
}

.solution-card-main {
    flex: 0 0 70%;
}

.solution-card-ai {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    flex: 0 0 30%;
    color: white;
}

.solution-card-ai .card-description {
    color: #636363;
}

.solution-card-ai .card-title{
    color: black;
}

.card-image {
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    min-height: 250px;
}

.card-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.card-content {
    padding: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.solution-card-ai .card-content {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.card-description {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
}

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

/* ========================================
   RESPONSIVE DESIGN - DESKTOP/TABLET
   ======================================== */
@media (max-width: 1024px) {
    .container,
    .nav-container {
        padding: 0 1.5rem;
    }

    .nav-menu {
        gap: 2rem;
    }

    .social-proof-content {
        gap: 3rem;
    }

    .hero-video {
        width: 55vw;
        height: 65vh;
    }

    .solution-section {
        padding: 5rem 0;
    }

    .solution-description {
        font-size: 1rem;
        max-width: 600px;
        margin-bottom: 3.5rem;
    }

    .solution-cards {
        flex-direction: column;
        gap: 1.5rem;
    }

    .solution-card-main,
    .solution-card-ai {
        flex: none;
    }

    .card-image {
        min-height: 200px;
        padding: 1.2rem;
    }

    .card-content {
        padding: 1.2rem;
    }
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE
   ======================================== */
@media (max-width: 768px) {
    .container,
    .nav-container {
        padding: 0 1rem;
    }

    .solution-title {
        text-align: left;
    }

    /* Zajistit že hamburger menu je vždy viditelné */
    .nav-container {
        padding: 0 1rem;
        position: relative;
    }

    .mobile-menu-btn {
        display: flex;
        margin-left: auto;
        flex-shrink: 0;
    }

    /* Skrýt desktop navigaci na mobilu */
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 0;
        gap: 0;
        transition: left 0.3s ease;
        overflow-y: auto;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        border-bottom: 1px solid #e2e8f0;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-link {
        display: block;
        padding: 1.5rem 2rem;
        font-size: 1.2rem;
        font-weight: 600;
        color: #1e293b;
        width: 100%;
        text-align: left;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover {
        background: rgba(59, 130, 246, 0.05);
        color: #3b82f6;
    }

    /* Skrýt desktop auth buttons na mobilu */
    .auth-buttons {
        display: none;
    }

    /* Přidat mobile auth buttons do menu */
    .nav-menu::after {
        content: '';
        display: block;
        padding: 2rem;
        border-top: 1px solid #e2e8f0;
        margin-top: auto;
        background: none;
    }

    /* Hero Section Mobile */
    .hero-section {
        padding-bottom: 0;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        justify-content: center;
        align-items: center;
        padding-top: 4rem;
        min-height: auto;
        padding-bottom: 0;
    }

    .content-left {
        order: 1;
        max-width: 100%;
        margin-bottom: 5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero-video {
        position: static;
        width: 100%;
        height: auto;
        max-height: 50vh;
        object-fit: contain;
        margin: 0;
        display: block;
    }

    /* Mobile Buttons */
    .hero-buttons {
        display: flex;
        gap: 1rem;
        justify-content: center;
        align-items: center;
        width: 100%;
        flex-wrap: nowrap;
    }

    .primary-btn,
    .secondary-btn {
        flex: 1;
        margin: 0;
        text-align: center;
        padding: 0.9rem 1rem;
        font-size: 0.95rem;
    }

    /* Social Proof Mobile */
    .social-proof-section {
        padding: 2rem 0;
        margin-top: 0;
    }

    .social-proof-heading {
        font-size: 1rem;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .social-proof-heading::before,
    .social-proof-heading::after {
        max-width: 80px;
    }

    .social-proof-content {
        gap: 2rem;
    }

    .client-logo {
        height: 50px;
    }

    /* Solution Section Mobile */
    .solution-section {
        padding: 4rem 0;
    }

    .solution-description {
        font-size: 0.95rem;
        max-width: 500px;
        margin-bottom: 3rem;
        line-height: 1.4;
    }

    .solution-cards {
        gap: 1.5rem;
    }

    .card-image {
        min-height: 170px;
        padding: 1rem;
    }

    .card-content {
        padding: 1.5rem 1rem;
    }

    .card-title {
        font-size: 1.3rem;
    }

    .card-description {
        font-size: 0.9rem;
    }
}

/* ========================================
   RESPONSIVE DESIGN - SMALL MOBILE
   ======================================== */
@media (max-width: 480px) {
    .nav-container {
        height: 70px;
        padding: 0 0.75rem;
    }

    .hero-section {
        padding-top: 70px;
        padding-bottom: 0;
    }

    .hero-content {
        min-height: auto;
        padding-top: 3rem;
        gap: 1.5rem;
        padding-bottom: 0;
    }

    .content-left {
        margin-bottom: 3rem;
    }

    .nav-menu {
        top: 70px;
        height: calc(100vh - 70px);
    }

    .nav-link {
        padding: 1.2rem 1.5rem;
        font-size: 1.1rem;
    }

    .try-free-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .login-btn {
        font-size: 0.9rem;
    }

    .new-badge {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
        margin-bottom: 1.5rem;
    }

    .primary-btn,
    .secondary-btn {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }

    .main-title {
        margin-bottom: 1rem;
    }

    .subtitle {
        margin-bottom: 2rem;
    }

    .social-proof-section {
        padding: 1.5rem 0;
        margin-top: 0;
    }

    .social-proof-heading {
        font-size: 0.9rem;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .social-proof-heading::before,
    .social-proof-heading::after {
        max-width: 50px;
    }

    .social-proof-content {
        gap: 1.5rem;
    }

    .client-logo {
        height: 40px;
    }

    .hero-video {
        max-height: 40vh;
        margin: 0;
    }

    /* Solution Section Small Mobile */
    .solution-section {
        padding: 3rem 0;
    }

    .solution-description {
        font-size: 0.9rem;
        max-width: 320px;
        margin-bottom: 2rem;
        line-height: 1.4;
        padding: 0 1rem;
    }

    .solution-cards {
        gap: 1rem;
    }

    .card-image {
        min-height: 150px;
        padding: 1rem;
    }

    .card-content {
        padding: 1rem;
    }

    .card-title {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .card-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

/* ========================================
   RESPONSIVE DESIGN - EXTRA SMALL MOBILE
   ======================================== */
@media (max-width: 360px) {
    .nav-container {
        padding: 0 0.5rem;
    }

    .solution-section {
        padding: 2.5rem 0;
    }

    .solution-description {
        font-size: 0.85rem;
        max-width: 280px;
        line-height: 1.3;
        margin-bottom: 1.8rem;
    }

    .card-image {
        min-height: 130px;
        padding: 0.8rem;
    }

    .card-content {
        padding: 0.8rem;
    }

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

    .card-description {
        font-size: 0.8rem;
    }
}



/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials-section {
    background: #f8fafc;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
    overflow: hidden;
    padding-bottom: 4rem;
}

.testimonials-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.testimonials-slider {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    overflow: visible;
}

.testimonials-slider-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide {
    flex: 0 0 1000px;
    max-width: 1000px;
}

.testimonial-card {
    display: flex;
    gap: 3rem;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    align-items: center;
    height: 450px;
}

.testimonial-image {
    flex: 0 0 350px;
    height: 350px;
    overflow: hidden;
    border-radius: 16px;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 350px;
    justify-content: space-between;
}

.quote-icon {
    font-size: 3rem;
    color: blue;
    margin-bottom: 1rem;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 1.5rem;
    flex: 1;
}

.testimonial-text strong {
    color: #1e293b;
    font-weight: 600;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.testimonial-author {
    flex: 1;
}

.author-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.author-position {
    font-size: 1rem;
    color: #64748b;
    margin: 0;
}

.testimonial-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.testimonial-next i {
    font-size: 1.2rem;
    color: #1e293b;
    transition: all 0.3s ease;
}

.testimonial-next:hover {
    background: blue;
    border-color: blue;
    transform: scale(1.1);
}

.testimonial-next:hover i {
    color: white;
}

/* ========================================
   RESPONSIVE DESIGN - TABLET
   ======================================== */
@media (max-width: 1024px) {
    .testimonials-section {
        padding: 5rem 0;
    }

    .testimonials-slider {
        padding: 0 1.5rem;
    }

    .testimonial-slide {
        flex: 0 0 calc(100vw - 3rem);
        max-width: 900px;
    }

    .testimonial-card {
        gap: 2rem;
        padding: 2rem;
        height: 400px;
    }

    .testimonial-image {
        flex: 0 0 300px;
        height: 300px;
    }

    .testimonial-content {
        height: 300px;
    }

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

/* ========================================
   RESPONSIVE DESIGN - MOBILE
   ======================================== */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 4rem 0;
    }

    .testimonials-slider {
        padding: 0 1rem;
    }

    .testimonial-slide {
        flex: 0 0 calc(100vw - 2rem);
    }

    .testimonial-card {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
        height: auto;
    }

    .testimonial-image {
        flex: none;
        width: 280px;
        height: 280px;
        margin: 0 auto;
    }

    .testimonial-content {
        height: auto;
    }

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

    .author-name {
        font-size: 1.1rem;
    }

    .author-position {
        font-size: 0.95rem;
    }

    .testimonial-next {
        width: 45px;
        height: 45px;
    }
}

/* ========================================
   RESPONSIVE DESIGN - SMALL MOBILE
   ======================================== */
@media (max-width: 480px) {
    .testimonials-section {
        padding: 3rem 0;
    }

    .testimonial-card {
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .quote-icon {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }

    .testimonial-image {
        width: 250px;
        height: 250px;
    }

    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .author-name {
        font-size: 1rem;
    }

    .author-position {
        font-size: 0.9rem;
    }

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

    .testimonial-next i {
        font-size: 1rem;
    }
}





/* ========================================
   HOW IT WORKS SECTION
   ======================================== */
.how-it-works-section {
    padding: 6rem 0;
    background: white;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.how-it-works-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.how-it-works-title {
    text-align: center;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 500;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.how-it-works-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto 4rem auto;
    line-height: 1.6;
}

.how-it-works-video-container {
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
}

.how-it-works-section.animate-in .how-it-works-video-container {
    animation: slideInUp 0.6s ease 0.3s forwards;
}

.how-it-works-video {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

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

/* ========================================
   RESPONSIVE DESIGN - TABLET
   ======================================== */
@media (max-width: 1024px) {
    .how-it-works-section {
        padding: 5rem 0;
    }

    .how-it-works-subtitle {
        margin-bottom: 3.5rem;
    }

    .how-it-works-video-container {
        max-width: 900px;
    }
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE
   ======================================== */
@media (max-width: 768px) {
    .how-it-works-section {
        padding: 4rem 0;
    }

    .how-it-works-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
        padding: 0 1rem;
    }

    .how-it-works-video-container {
        max-width: 100%;
        padding: 0 1rem;
    }
}

/* ========================================
   RESPONSIVE DESIGN - SMALL MOBILE
   ======================================== */
@media (max-width: 480px) {
    .how-it-works-section {
        padding: 3rem 0;
    }

    .how-it-works-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .how-it-works-video {
        border-radius: 8px;
    }
}

/* ========================================
   RESPONSIVE DESIGN - EXTRA SMALL MOBILE
   ======================================== */
@media (max-width: 360px) {
    .how-it-works-section {
        padding: 2.5rem 0;
    }

    .how-it-works-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.8rem;
    }

    .how-it-works-video {
        border-radius: 6px;
    }
}

/* ========================================
   HOW IT WORKS BOTTOM CARDS
   ======================================== */
.how-it-works-bottom-cards {
    display: flex;
    gap: 2rem;
    max-width: 1000px;
    margin: 4rem auto 0 auto;
    opacity: 0;
    transform: translateY(20px);
}

.how-it-works-section.animate-in .how-it-works-bottom-cards {
    animation: slideInUp 0.6s ease 0.5s forwards;
}

.how-it-works-bottom-card {
    flex: 1;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: white;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
}

.how-it-works-section.animate-in .how-it-works-bottom-card:nth-child(1) {
    animation: slideInUp 0.6s ease 0.6s forwards;
}

.how-it-works-section.animate-in .how-it-works-bottom-card:nth-child(2) {
    animation: slideInUp 0.6s ease 0.7s forwards;
}

.how-it-works-bottom-card .card-image {
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem;
    min-height: 350px;
}

.how-it-works-bottom-card .card-img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.how-it-works-bottom-card .card-content {
    padding: 2rem;
    border-top: 1px solid #e2e8f0;
}

.how-it-works-bottom-card .card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.how-it-works-bottom-card .card-description {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ========================================
   RESPONSIVE DESIGN - TABLET
   ======================================== */
@media (max-width: 1024px) {
    .how-it-works-bottom-cards {
        max-width: 900px;
        margin-top: 3.5rem;
        gap: 1.8rem;
    }

    .how-it-works-bottom-card .card-image {
        min-height: 240px;
        padding: 1.8rem;
    }

    .how-it-works-bottom-card .card-content {
        padding: 1.8rem;
    }
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE
   ======================================== */
@media (max-width: 768px) {
    .how-it-works-bottom-cards {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 3rem;
        padding: 0 1rem;
    }

    .how-it-works-bottom-card .card-image {
        min-height: 200px;
        padding: 1.5rem;
    }

    .how-it-works-bottom-card .card-content {
        padding: 1.8rem 1.2rem;
    }

    .how-it-works-bottom-card .card-title {
        font-size: 1.2rem;
    }

    .how-it-works-bottom-card .card-description {
        font-size: 0.9rem;
    }
}

/* ========================================
   RESPONSIVE DESIGN - SMALL MOBILE
   ======================================== */
@media (max-width: 480px) {
    .how-it-works-bottom-cards {
        margin-top: 2rem;
        gap: 1rem;
    }

    .how-it-works-bottom-card .card-image {
        min-height: 140px;
        padding: 1rem;
    }

    .how-it-works-bottom-card .card-content {
        padding: 1rem;
    }

    .how-it-works-bottom-card .card-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .how-it-works-bottom-card .card-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

/* ========================================
   RESPONSIVE DESIGN - EXTRA SMALL MOBILE
   ======================================== */
@media (max-width: 360px) {
    .how-it-works-bottom-cards {
        margin-top: 1.8rem;
    }

    .how-it-works-bottom-card .card-image {
        min-height: 120px;
        padding: 0.8rem;
    }

    .how-it-works-bottom-card .card-content {
        padding: 0.8rem;
    }

    .how-it-works-bottom-card .card-title {
        font-size: 1rem;
    }

    .how-it-works-bottom-card .card-description {
        font-size: 0.8rem;
    }
}

/* ========================================
   PHOTO SECTION
   ======================================== */
.photo-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1e1e50 50%, #8a00ff 100%);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
    margin: 6rem auto 0; /* vrchní okraj + horizontální centrování */
    max-width: 1200px;   /* maximální šířka */
    border-radius: 20px;
    width: 100%;         /* aby se přizpůsobilo menším obrazovkám */
}


.photo-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.photo-section-title {
    text-align: center;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 500;
    color: white;
    margin-bottom: 1.5rem;
}

.photo-section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #f5f5f5;
    max-width: 600px;
    margin: 0 auto 4rem auto;
    line-height: 1.6;
}

.photo-section-image-container {
    max-width: 1000px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
}

.photo-section.animate-in .photo-section-image-container {
    animation: slideInUp 0.6s ease 0.3s forwards;
}

.photo-section-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.2);
}

.photo-section .button-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(20px);
}

.photo-section.animate-in .button-wrapper {
    animation: slideInUp 0.6s ease 0.4s forwards;
}

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

/* ========================================
   RESPONSIVE DESIGN - TABLET
   ======================================== */
@media (max-width: 1024px) {
    .photo-section {
        padding: 5rem 0;
    }

    .photo-section-subtitle {
        margin-bottom: 3.5rem;
    }

    .photo-section-image-container {
        max-width: 900px;
    }
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE
   ======================================== */
@media (max-width: 768px) {
    .photo-section {
        padding: 4rem 0;
    }

    .photo-section-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
        padding: 0 1rem;
    }

    .photo-section-image-container {
        max-width: 100%;
        padding: 0 1rem;
    }

    .photo-section-image {
        box-shadow: 0 12px 50px rgba(0, 0, 0, 0.15);
    }
}

/* ========================================
   RESPONSIVE DESIGN - SMALL MOBILE
   ======================================== */
@media (max-width: 480px) {
    .photo-section {
        padding: 3rem 0;
    }

    .photo-section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .photo-section-image {
        border-radius: 8px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    }
}

/* ========================================
   RESPONSIVE DESIGN - EXTRA SMALL MOBILE
   ======================================== */
@media (max-width: 360px) {
    .photo-section {
        padding: 2.5rem 0;
    }

    .photo-section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.8rem;
    }

    .photo-section-image {
        border-radius: 6px;
    }
}

/* ========================================
   CAMPAIGNS SECTION
   ======================================== */
.campaigns-section {
    padding: 6rem 0;
    background: white;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.campaigns-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.campaigns-section-title {
    text-align: center;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 500;
    color: #1e293b;
    line-height: 1.16;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5rem;
    margin-bottom: 6rem;
}

/* ========================================
   CAMPAIGNS VIDEO STYLES
   ======================================== */
.campaigns-video-container {
    max-width: 1200px;
    margin: 0 auto 6rem auto;
    position: relative;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
}

.campaigns-section.animate-in .campaigns-video-container {
    animation: slideInUp 0.6s ease 0.3s forwards;
}

.campaigns-video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 1.8 / 1;
}

.campaigns-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 6rem;
    opacity: 0;
    transform: translateY(20px);
}

.campaigns-section.animate-in .campaigns-row:nth-child(3) {
    animation: slideInUp 0.6s ease 0.5s forwards;
}

.campaigns-section.animate-in .campaigns-row:nth-child(4) {
    animation: slideInUp 0.6s ease 0.7s forwards;
}

.campaigns-row:last-child {
    margin-bottom: 0;
}

.campaigns-row-reverse {
    flex-direction: row-reverse;
}

.campaigns-content {
    flex: 0 0 45%;
    max-width: 500px;
}

.campaigns-image {
    flex: 0 0 55%;
    max-width: 650px;
}

.campaigns-item-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.campaigns-item-description {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.6;
}

.campaigns-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

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

/* ========================================
   RESPONSIVE DESIGN - TABLET
   ======================================== */
@media (max-width: 1024px) {
    .campaigns-section {
        padding: 5rem 0;
    }

    .campaigns-video-container {
        max-width: 95%;
        margin-bottom: 5rem;
    }

    .campaigns-row {
        gap: 3rem;
        margin-bottom: 5rem;
    }

    .campaigns-content {
        flex: 0 0 40%;
        max-width: 450px;
    }

    .campaigns-image {
        flex: 0 0 60%;
        max-width: 600px;
    }

    .campaigns-item-title {
        font-size: 1.8rem;
    }

    .campaigns-item-description {
        font-size: 1.1rem;
    }
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE
   ======================================== */
@media (max-width: 768px) {
    .campaigns-section {
        padding: 4rem 0;
    }

    .campaigns-video-container {
        max-width: 95%;
        margin: 0 auto 4rem auto;
        border-radius: 8px;
    }


    .campaigns-section-title {
        text-align: left;
        max-width: 300px;
    }

    .campaigns-video {
        border-radius: 8px;
    }

    .campaigns-row,
    .campaigns-row-reverse {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 4rem;
        text-align: center;
    }

    .campaigns-content {
        max-width: 100%;
    }

    .campaigns-image {
        max-width: 100%;
    }

    .campaigns-item-title {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .campaigns-item-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .campaigns-img {
        border-radius: 8px;
    }
}

/* ========================================
   RESPONSIVE DESIGN - SMALL MOBILE
   ======================================== */
@media (max-width: 480px) {
    .campaigns-section {
        padding: 3rem 0;
    }

    .campaigns-video-container {
        max-width: 92%;
        margin-bottom: 3rem;
        border-radius: 6px;
    }

    .campaigns-video {
        border-radius: 6px;
    }

    .campaigns-row {
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .campaigns-item-title {
        font-size: 1.4rem;
    }

    .campaigns-item-description {
        font-size: 0.95rem;
    }

    .campaigns-img {
        border-radius: 6px;
    }
}

/* ========================================
   RESPONSIVE DESIGN - EXTRA SMALL MOBILE
   ======================================== */
@media (max-width: 360px) {
    .campaigns-section {
        padding: 2.5rem 0;
    }

    .campaigns-video-container {
        max-width: 90%;
        margin-bottom: 2.5rem;
        border-radius: 5px;
    }

    .campaigns-video {
        border-radius: 5px;
    }

    .campaigns-row {
        gap: 1.2rem;
        margin-bottom: 2.5rem;
    }

    .campaigns-item-title {
        font-size: 1.3rem;
    }

    .campaigns-item-description {
        font-size: 0.9rem;
    }
}

/* ========================================
   CAMPAIGNS CTA SECTION
   ======================================== */
.campaigns-cta-section {
    max-width: 1100px;
    margin: auto;
    padding: 6rem 2rem;
    border-radius: 20px;
    background: linear-gradient(135deg, #0a0a14 0%, #1e1e50 50%, #c800ff 100%);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}


.campaigns-cta-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.campaigns-cta-title {
    text-align: center;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 500;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.campaigns-cta-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #f5f5f5;
    max-width: 700px;
    margin: 0 auto 4rem auto;
    line-height: 1.6;
}

.campaigns-cta-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.campaigns-cta-section.animate-in .campaigns-cta-image-container {
    animation: slideInUp 0.6s ease 0.3s forwards;
}

.campaigns-cta-image {
    width: 40%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    padding-bottom: 2rem;
    max-width: 500px;
}


.meetings-cta-image {
    width: 70%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    display: block;
}

.button-wrapper {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
}

.campaigns-cta-section.animate-in .button-wrapper {
    animation: slideInUp 0.6s ease 0.5s forwards;
}

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

/* ========================================
   RESPONSIVE DESIGN - TABLET
   ======================================== */
@media (max-width: 1024px) {
    .campaigns-cta-section {
        padding: 5rem 0;
    }

    .campaigns-cta-subtitle {
        max-width: 600px;
        margin-bottom: 3.5rem;
    }

    .campaigns-cta-image-container {
        max-width: 900px;
        margin-bottom: 3.5rem;
    }
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE
   ======================================== */
@media (max-width: 768px) {
    .campaigns-cta-section {
        padding: 4rem 0;
    }

    .campaigns-cta-subtitle {
        font-size: 1rem;
        max-width: 100%;
        margin-bottom: 3rem;
        padding: 0 1rem;
    }

    .campaigns-cta-image-container {
        max-width: 100%;
        margin-bottom: 3rem;
        padding: 0 1rem;
    }

    .campaigns-cta-image {
        border-radius: 8px;
    }
}

/* ========================================
   RESPONSIVE DESIGN - SMALL MOBILE
   ======================================== */
@media (max-width: 480px) {
    .campaigns-cta-section {
        padding: 3rem 0;
    }

    .campaigns-cta-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .campaigns-cta-image-container {
        margin-bottom: 2rem;
    }

    .campaigns-cta-image {
        border-radius: 6px;
    }
}

/* ========================================
   RESPONSIVE DESIGN - EXTRA SMALL MOBILE
   ======================================== */
@media (max-width: 360px) {
    .campaigns-cta-section {
        padding: 2.5rem 0;
    }

    .campaigns-cta-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .campaigns-cta-image-container {
        margin-bottom: 1.5rem;
    }

    .campaigns-cta-image {
        border-radius: 5px;
    }
}

/* ========================================
   TODOLIST SECTION
   ======================================== */
.todolist-section {
    padding: 6rem 0;
    background: white;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
    margin-top: 4rem;
}

.todolist-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.todolist-title {
    text-align: center;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 500;
    color: rgb(30, 41, 59);
    margin-bottom: 3rem;
    line-height: 1.2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.todolist-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: rgb(100, 116, 139);
    max-width: 600px;
    line-height: 1.6;
    margin: 0px auto 4rem;
}

.todolist-image-container {
    max-width: 1000px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
}

.todolist-section.animate-in .todolist-image-container {
    animation: slideInUp 0.6s ease 0.3s forwards;
}

.todolist-image {
    width: 80%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

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

/* ========================================
   RESPONSIVE DESIGN - TABLET
   ======================================== */
@media (max-width: 1024px) {
    .todolist-section {
        padding: 5rem 0;
    }

    .todolist-title {
        margin-bottom: 1.5rem;
    }

    .todolist-subtitle {
        margin-bottom: 3.5rem;
    }

    .todolist-image-container {
        max-width: 900px;
    }
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE
   ======================================== */
@media (max-width: 768px) {
    .todolist-section {
        padding: 4rem 0;
    }

    .todolist-title {
        margin-bottom: 1.5rem;
    }

    .todolist-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
        padding: 0 1rem;
    }

    .todolist-image-container {
        max-width: 100%;
        padding: 0 1rem;
    }

    .todolist-image {
        box-shadow: 0 12px 50px rgba(0, 0, 0, 0.08);
    }
}

/* ========================================
   RESPONSIVE DESIGN - SMALL MOBILE
   ======================================== */
@media (max-width: 480px) {
    .todolist-section {
        padding: 3rem 0;
    }

    .todolist-title {
        margin-bottom: 1.5rem;
    }

    .todolist-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .todolist-image {
        border-radius: 8px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    }
}

/* ========================================
   RESPONSIVE DESIGN - EXTRA SMALL MOBILE
   ======================================== */
@media (max-width: 360px) {
    .todolist-section {
        padding: 2.5rem 0;
    }

    .todolist-title {
        margin-bottom: 1.5rem;
    }

    .todolist-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.8rem;
    }

    .todolist-image {
        border-radius: 6px;
    }
}

/* ========================================
   OUTREACH CAMPAIGNS SECTION
   ======================================== */
.outreach-section {
    margin-top: 6rem 0;
    background: white;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.outreach-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.outreach-title {
    text-align: center;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 500;
    color: #1e293b;
    margin-bottom: 5.5rem;
    line-height: 1.2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   TABS NAVIGATION
   ======================================== */
.outreach-tabs {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.outreach-tab {
    background: transparent;
    border: none;
    padding: 1rem 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
}

.outreach-tab i {
    font-size: 1.1rem;
}

.outreach-tab:hover {
    color: #1e293b;
}

.outreach-tab.active {
    color: #1e293b;
    font-weight: 600;
    border-bottom: 2px solid #3b82f6;
}

.outreach-tab.active i {
    color: #3b82f6;
}




/* ========================================
   INTERVIEWS SECTION
   ======================================== */
.interviews-section {
    background: white;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
    padding-top: 3rem;
}

.interviews-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   INTERVIEWS HEADER
   ======================================== */
.interviews-header {
    text-align: center;
    margin-bottom: 4rem;
}

.interviews-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 500;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 4rem;
}

.interviews-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.16;
    padding-bottom: 2rem;
}

/* ========================================
   INTERVIEWS CARDS
   ======================================== */
.interviews-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(20px);
}

.interviews-section.animate-in .interviews-card:nth-child(2) {
    animation: slideInUp 0.6s ease 0.3s forwards;
}

.interviews-section.animate-in .interviews-card:nth-child(4) {
    animation: slideInUp 0.6s ease 0.7s forwards;
}

.interviews-card-image {
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
}

.interviews-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.interviews-card-content {
    text-align: left;
}

.interviews-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.interviews-card-description {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 700px;
}

/* ========================================
   INTERVIEWS TEXT BLOCK
   ======================================== */
.interviews-text-block {
    margin: 4rem 0;
    opacity: 0;
    transform: translateY(20px);
}

.interviews-section.animate-in .interviews-text-block {
    animation: slideInUp 0.6s ease 0.5s forwards;
}

.interviews-block-title {
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 500;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    max-width: 900px;
}

.interviews-block-description {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 800px;
}

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

/* ========================================
   RESPONSIVE DESIGN - TABLET
   ======================================== */
@media (max-width: 1024px) {
    .interviews-section {
        padding: 5rem 0;
    }

    .interviews-header {
        margin-bottom: 3.5rem;
    }

    .interviews-card {
        padding: 1.8rem;
        margin-bottom: 3.5rem;
        max-width: 900px;
    }

    .interviews-card-image {
        margin-bottom: 1.8rem;
    }

    .interviews-card-title {
        font-size: 1.4rem;
    }

    .interviews-card-description {
        font-size: 0.95rem;
    }

    .interviews-text-block {
        margin-bottom: 3.5rem;
    }

    .interviews-block-title {
        margin-bottom: 1.2rem;
    }

    .interviews-block-description {
        font-size: 1rem;
    }
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE
   ======================================== */
@media (max-width: 768px) {
    .interviews-section {
        padding: 4rem 0;
    }

    .interviews-header {
        margin-bottom: 3rem;
        padding: 0 1rem;
        text-align: left;
    }

    .interviews-subtitle {
        font-size: 1rem;
    }

    .outreach-title {
        text-align: left;
    }

    .interviews-card {
        padding: 1.5rem;
        margin-bottom: 3rem;
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .interviews-card-image {
        margin-bottom: 1.5rem;
    }

    .interviews-card-title {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .interviews-card-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .interviews-text-block {
        margin-bottom: 3rem;
        padding: 0 1rem;
    }

    .interviews-block-title {
        margin-bottom: 1rem;
    }

    .interviews-block-description {
        font-size: 0.95rem;
    }
}

/* ========================================
   RESPONSIVE DESIGN - SMALL MOBILE
   ======================================== */
@media (max-width: 480px) {
    .interviews-section {
        padding: 3rem 0;
    }

    .interviews-header {
        margin-bottom: 2rem;
        text-align: left;
    }

    .interviews-subtitle {
        font-size: 0.95rem;
    }

    .interviews-card {
        padding: 1.2rem;
        margin-bottom: 2rem;
    }

    .interviews-card-image {
        margin-bottom: 1.2rem;
    }

    .interviews-card-title {
        font-size: 1.2rem;
    }

    .interviews-card-description {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .interviews-text-block {
        margin-bottom: 2rem;
    }

    .interviews-block-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

/* ========================================
   RESPONSIVE DESIGN - EXTRA SMALL MOBILE
   ======================================== */
@media (max-width: 360px) {
    .interviews-section {
        padding: 2.5rem 0;
    }

    .interviews-header {
        margin-bottom: 1.8rem;
        text-align: left;
    }

    .interviews-card {
        padding: 1rem;
        margin-bottom: 1.8rem;
    }

    .interviews-card-image {
        margin-bottom: 1rem;
    }

    .interviews-card-title {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }

    .interviews-card-description {
        font-size: 0.8rem;
    }

    .interviews-text-block {
        margin-bottom: 1.8rem;
    }

    .interviews-block-title {
        margin-bottom: 0.8rem;
    }

    .interviews-block-description {
        font-size: 0.85rem;
    }
}

.demo-link {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.demo-link:hover {
    color: #3b82f6;
}

/* ========================================
   OUTREACH VIDEO STYLES
   ======================================== */
.outreach-video-container {
    max-width: 1200px;
    margin: 3rem auto 0 auto;
    position: relative;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
}

.outreach-section.animate-in .outreach-video-container {
    animation: slideInUp 0.6s ease 0.3s forwards;
}

.outreach-video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 1.8 / 1;
}

/* ========================================
   RESPONSIVE DESIGN - TABLET
   ======================================== */
@media (max-width: 1024px) {
    .outreach-video-container {
        max-width: 95%;
        margin-top: 2.5rem;
    }
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE
   ======================================== */
@media (max-width: 768px) {
    .outreach-video-container {
        max-width: 100%;
        margin: 0 auto 4rem auto;
        border-radius: 8px;
        padding: 0;
    }

    .outreach-video {
        border-radius: 8px;
        width: 100%;
    }
}

/* ========================================
   RESPONSIVE DESIGN - SMALL MOBILE
   ======================================== */
@media (max-width: 480px) {
    .outreach-video-container {
        max-width: 100%;
        margin-bottom: 3rem;
        border-radius: 6px;
        padding: 0;
    }

    .outreach-video {
        border-radius: 6px;
    }
}

/* ========================================
   RESPONSIVE DESIGN - EXTRA SMALL MOBILE
   ======================================== */
@media (max-width: 360px) {
    .outreach-video-container {
        max-width: 90%;
        margin-top: 1.2rem;
        border-radius: 5px;
    }

    .outreach-video {
        border-radius: 5px;
    }
}

/* ========================================
   LEAD SEARCH SECTION
   ======================================== */
.lead-search-section {
    padding: 4rem 0;
    background: white;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.lead-search-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.lead-search-section .solution-cards {
    display: flex;
    gap: 1.5rem;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

.lead-search-section .solution-card {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: white;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
}

.lead-search-section.animate-in .solution-card:nth-child(1) {
    animation: slideInUp 0.6s ease 0.2s forwards;
}

.lead-search-section.animate-in .solution-card:nth-child(2) {
    animation: slideInUp 0.6s ease 0.4s forwards;
}

.lead-search-section .solution-card-main {
    flex: 0 0 70%;
}

.lead-search-section .solution-card-ai {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    flex: 0 0 30%;
    color: white;
}

.lead-search-section .solution-card-ai .card-description {
    color: #636363;
}

.lead-search-section .solution-card-ai .card-title {
    color: black;
}

/* ========================================
   RESPONSIVE DESIGN - TABLET
   ======================================== */
@media (max-width: 1024px) {
    .lead-search-section {
        padding: 3.5rem 0;
    }

    .lead-search-section .solution-cards {
        flex-direction: column;
        gap: 1.5rem;
    }

    .lead-search-section .solution-card-main,
    .lead-search-section .solution-card-ai {
        flex: none;
    }
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE
   ======================================== */
@media (max-width: 768px) {
    .lead-search-section {
        padding: 3rem 0;
    }

    .lead-search-section .solution-cards {
        gap: 1.5rem;
        padding: 0 1rem;
    }
}

/* ========================================
   RESPONSIVE DESIGN - SMALL MOBILE
   ======================================== */
@media (max-width: 480px) {
    .lead-search-section {
        padding: 2.5rem 0;
    }

    .lead-search-section .solution-cards {
        gap: 1.2rem;
    }
}

/* ========================================
   TALENT POOL SECTION
   ======================================== */
.talent-pool-section {
    padding: 6rem 0;
    background: white;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.talent-pool-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.talent-pool-section-title {
    text-align: center;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 500;
    color: #1e293b;
    margin-bottom: 3rem;
    line-height: 1.2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5rem;
}

/* ========================================
   TALENT POOL VIDEO STYLES
   ======================================== */
.talent-pool-video-container {
    max-width: 1200px;
    margin: 0 auto 6rem auto;
    position: relative;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
}

.talent-pool-section.animate-in .talent-pool-video-container {
    animation: slideInUp 0.6s ease 0.3s forwards;
}

.talent-pool-video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 1.8 / 1;
}

.talent-pool-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 6rem;
    opacity: 0;
    transform: translateY(20px);
}

.talent-pool-section.animate-in .talent-pool-row:nth-child(3) {
    animation: slideInUp 0.6s ease 0.5s forwards;
}

.talent-pool-section.animate-in .talent-pool-row:nth-child(4) {
    animation: slideInUp 0.6s ease 0.7s forwards;
}

.talent-pool-row:last-child {
    margin-bottom: 0;
}

.talent-pool-row-reverse {
    flex-direction: row-reverse;
}

.talent-pool-content {
    flex: 0 0 45%;
    max-width: 500px;
}

.talent-pool-image {
    flex: 0 0 55%;
    max-width: 650px;
}

.talent-pool-item-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.talent-pool-item-description {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.6;
}

.talent-pool-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

/* ========================================
   RESPONSIVE DESIGN - TABLET
   ======================================== */
@media (max-width: 1024px) {
    .talent-pool-section {
        padding: 5rem 0;
    }

    .talent-pool-video-container {
        max-width: 95%;
        margin-bottom: 5rem;
    }

    .talent-pool-row {
        gap: 3rem;
        margin-bottom: 5rem;
    }

    .talent-pool-content {
        flex: 0 0 40%;
        max-width: 450px;
    }

    .talent-pool-image {
        flex: 0 0 60%;
        max-width: 600px;
    }

    .talent-pool-item-title {
        font-size: 1.8rem;
    }

    .talent-pool-item-description {
        font-size: 1.1rem;
    }
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE
   ======================================== */
@media (max-width: 768px) {
    .talent-pool-section {
        padding: 4rem 0;
    }

    .talent-pool-video-container {
        max-width: 95%;
        margin: 0 auto 4rem auto;
        border-radius: 8px;
    }

    .talent-pool-video {
        border-radius: 8px;
    }

    .talent-pool-row,
    .talent-pool-row-reverse {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 4rem;
        text-align: center;
    }

    .talent-pool-content {
        max-width: 100%;
    }

    .talent-pool-image {
        max-width: 100%;
    }

    .talent-pool-item-title {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .talent-pool-item-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .talent-pool-img {
        border-radius: 8px;
    }
}

/* ========================================
   RESPONSIVE DESIGN - SMALL MOBILE
   ======================================== */
@media (max-width: 480px) {
    .talent-pool-section {
        padding: 3rem 0;
    }

    .talent-pool-video-container {
        max-width: 92%;
        margin-bottom: 3rem;
        border-radius: 6px;
    }

    .talent-pool-video {
        border-radius: 6px;
    }

    .talent-pool-row {
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .talent-pool-item-title {
        font-size: 1.4rem;
    }

    .talent-pool-item-description {
        font-size: 0.95rem;
    }

    .talent-pool-img {
        border-radius: 6px;
    }
}

/* ========================================
   RESPONSIVE DESIGN - EXTRA SMALL MOBILE
   ======================================== */
@media (max-width: 360px) {
    .talent-pool-section {
        padding: 2.5rem 0;
    }

    .talent-pool-video-container {
        max-width: 90%;
        margin-bottom: 2.5rem;
        border-radius: 5px;
    }

    .talent-pool-video {
        border-radius: 5px;
    }

    .talent-pool-row {
        gap: 1.2rem;
        margin-bottom: 2.5rem;
    }

    .talent-pool-item-title {
        font-size: 1.3rem;
    }

    .talent-pool-item-description {
        font-size: 0.9rem;
    }
}

/* ========================================
   AI APPS SUITE SECTION
   ======================================== */
.ai-apps-suite-section {
    padding: 6rem 0;
    background: white;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.ai-apps-suite-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.ai-apps-suite-title {
    text-align: center;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 500;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.ai-apps-suite-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto 4rem auto;
    line-height: 1.6;
}

.ai-apps-suite-video-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
}

.ai-apps-suite-section.animate-in .ai-apps-suite-video-container {
    animation: slideInUp 0.6s ease 0.3s forwards;
}

.ai-apps-suite-video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16 / 9;
}

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

/* ========================================
   RESPONSIVE DESIGN - TABLET
   ======================================== */
@media (max-width: 1024px) {
    .ai-apps-suite-section {
        padding: 5rem 0;
    }

    .ai-apps-suite-subtitle {
        max-width: 600px;
        margin-bottom: 3.5rem;
    }

    .ai-apps-suite-video-container {
        max-width: 95%;
    }
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE
   ======================================== */
@media (max-width: 768px) {
    .ai-apps-suite-section {
        padding: 4rem 0;
    }

    .ai-apps-suite-subtitle {
        font-size: 1rem;
        max-width: 90%;
        margin-bottom: 3rem;
        padding: 0 1rem;
    }

    .ai-apps-suite-video-container {
        max-width: 95%;
        margin: 0 auto;
        border-radius: 12px;
    }

    .ai-apps-suite-video {
        border-radius: 12px;
    }
}

/* ========================================
   RESPONSIVE DESIGN - SMALL MOBILE
   ======================================== */
@media (max-width: 480px) {
    .ai-apps-suite-section {
        padding: 3rem 0;
    }

    .ai-apps-suite-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .ai-apps-suite-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .ai-apps-suite-video-container {
        max-width: 92%;
        border-radius: 10px;
    }

    .ai-apps-suite-video {
        border-radius: 10px;
    }
}

/* ========================================
   RESPONSIVE DESIGN - EXTRA SMALL MOBILE
   ======================================== */
@media (max-width: 360px) {
    .ai-apps-suite-section {
        padding: 2.5rem 0;
    }

    .ai-apps-suite-title {
        font-size: 1.8rem;
    }

    .ai-apps-suite-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .ai-apps-suite-video-container {
        max-width: 90%;
        border-radius: 8px;
    }

    .ai-apps-suite-video {
        border-radius: 8px;
    }
}

/* ========================================
   FOOTER GRADIENT
   ======================================== */
.footer-gradient {
    height: 200px;
    background: linear-gradient(180deg,
    rgba(59, 130, 246, 0.15) 0%,
    rgba(139, 92, 246, 0.12) 30%,
    rgba(255, 255, 255, 0) 100%
    );
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: linear-gradient(180deg,
    rgba(59, 130, 246, 0.08) 0%,
    rgba(139, 92, 246, 0.06) 15%,
    rgba(255, 255, 255, 1) 35%
    );
    padding: 6rem 0 2rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    height: 50px;
    width: 200px;
}

.footer-copyright {
    font-size: 0.9rem;
    color: #1e293b;
    line-height: 1.6;
}

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

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e293b;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
}

.social-link i {
    font-size: 1.2rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3b82f6;
}

/* ========================================
   RESPONSIVE DESIGN - TABLET
   ======================================== */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE
   ======================================== */
@media (max-width: 768px) {
    .footer-gradient {
        height: 100px;
    }

    .footer {
        padding: 3rem 0 1.5rem 0;
    }

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

    .footer-brand {
        grid-column: 1;
        text-align: center;
        align-items: center;
    }

    .footer-column {
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .footer-gradient {
        height: 80px;
    }

    .footer {
        padding: 2rem 0 1rem 0;
    }

    .footer-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .footer-links {
        gap: 0.5rem;
    }

    .footer-links a {
        font-size: 0.9rem;
    }
}

.tags-arc-container {
    position: static;
    width: 100%;
}

.tags-arc {
    position: relative;
    top: 0;
    left: 50%;
    width: 800px;
    min-height: 140px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 1.5rem;
    transform: translateX(-50%);
}

.tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    color: white;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    --arc-shift: 0px;
    transform: translateY(var(--arc-shift));
    transform-origin: center center;
}

.tag-pill i {
    font-size: 1.2rem;
}

.tags-arc .tag-pill:nth-child(1) { --arc-shift: 40px; }
.tags-arc .tag-pill:nth-child(2) { --arc-shift: 20px; }
.tags-arc .tag-pill:nth-child(3) { --arc-shift: 0px; }
.tags-arc .tag-pill:nth-child(4) { --arc-shift: 20px; }
.tags-arc .tag-pill:nth-child(5) { --arc-shift: 40px; }

.tags-arc.bounce-active .tag-pill:nth-child(1) { animation: smoothBounce 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; animation-delay: 0s; }
.tags-arc.bounce-active .tag-pill:nth-child(2) { animation: smoothBounce 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; animation-delay: 0.05s; }
.tags-arc.bounce-active .tag-pill:nth-child(3) { animation: smoothBounce 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; animation-delay: 0.1s; }
.tags-arc.bounce-active .tag-pill:nth-child(4) { animation: smoothBounce 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; animation-delay: 0.15s; }
.tags-arc.bounce-active .tag-pill:nth-child(5) { animation: smoothBounce 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; animation-delay: 0.2s; }

.tag-find   { background: #3b82f6; }
.tag-reach  { background: #8b5cf6; }
.tag-meet   { background: #ec4899; }
.tag-submit { background: #f59e0b; }
.tag-win    { background: #10b981; }

@keyframes smoothBounce {
    0% {
        transform: translateY(calc(var(--arc-shift) - 100px));
        opacity: 0;
    }
    40% {
        transform: translateY(calc(var(--arc-shift) + 25px));
        opacity: 1;
    }
    55% {
        transform: translateY(calc(var(--arc-shift) - 10px));
    }
    70% {
        transform: translateY(calc(var(--arc-shift) + 8px));
    }
    85% {
        transform: translateY(calc(var(--arc-shift) - 4px));
    }
    95% {
        transform: translateY(calc(var(--arc-shift) + 2px));
    }
    100% {
        transform: translateY(var(--arc-shift));
    }
}

@media (max-width: 1024px) {
    .tags-arc-container { display: none; }
}