/* CSS Custom Properties */
:root {
    --primary-color: #2dd4bf;
    --primary-dark: #14b8a6;
    --secondary-color: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --bg-card: #ffffff;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --border-color: #e2e8f0;
    --gradient-primary: linear-gradient(135deg, #2dd4bf 0%, #14b8a6 100%);
    --gradient-secondary: linear-gradient(135deg, #64748b 0%, #475569 100%);
    --shadow-soft: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Clean Background */
.stars-background {
    display: none;
}

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

@media (max-width: 1240px) {
    .container {
        min-width: auto;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--text-primary);
}

.nav-brand i {
    color: var(--primary-color);
    font-size: 1.4rem;
    animation: clockTick 2s infinite;
    transform-origin: center;
}

@keyframes clockTick {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(6deg); }
    50% { transform: rotate(0deg); }
    75% { transform: rotate(-6deg); }
    100% { transform: rotate(0deg); }
}

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

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--text-primary);
    background: rgba(99, 102, 241, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

.cta-button {
    background: var(--gradient-primary);
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4);
    background: linear-gradient(135deg, #7c3aed 0%, #6366f1 100%);
}

.cta-button:hover::before {
    left: 100%;
}

.mobile-menu-toggle {
    display: none;
    color: var(--text-primary);
    font-size: 1.2rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0 50px;
    background: #ffffff;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* Interactive Scattered Coding Symbols Background */
.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
    font-family: 'Courier New', monospace;
}

.star {
    position: absolute;
    color: #000000;
    opacity: 0.25;
    transition: all 0.3s ease;
    animation: gentleTwinkle 6s infinite ease-in-out;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

/* Alternate animation patterns for variety */
.star:nth-child(2n) {
    animation: gentleFloat 8s infinite ease-in-out;
}

.star:nth-child(3n) {
    animation: gentleDrift 7s infinite ease-in-out;
}

.star:nth-child(5n) {
    animation: gentleWander 9s infinite ease-in-out;
}

/* Different symbol sizes */
.star.small {
    font-size: 20px;
}

.star.medium {
    font-size: 28px;
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
}

.star.large {
    font-size: 36px;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}

.star.extra-large {
    font-size: 44px;
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
}

.star.huge {
    font-size: 52px;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}



/* Enhanced symbol animation with movement */
@keyframes gentleTwinkle {
    0% {
        opacity: 0.25;
        transform: scale(1) rotate(0deg) translate(0px, 0px);
    }
    25% {
        opacity: 0.35;
        transform: scale(1.05) rotate(45deg) translate(5px, -3px);
    }
    50% {
        opacity: 0.15;
        transform: scale(0.95) rotate(90deg) translate(-3px, 8px);
    }
    75% {
        opacity: 0.3;
        transform: scale(1.02) rotate(135deg) translate(7px, 2px);
    }
    100% {
        opacity: 0.25;
        transform: scale(1) rotate(180deg) translate(0px, 0px);
    }
}

/* Additional movement animations */
@keyframes gentleFloat {
    0% {
        opacity: 0.2;
        transform: scale(1) rotate(0deg) translate(0px, 0px);
    }
    33% {
        opacity: 0.4;
        transform: scale(1.1) rotate(120deg) translate(-8px, 5px);
    }
    66% {
        opacity: 0.15;
        transform: scale(0.9) rotate(240deg) translate(4px, -7px);
    }
    100% {
        opacity: 0.2;
        transform: scale(1) rotate(360deg) translate(0px, 0px);
    }
}

@keyframes gentleDrift {
    0% {
        opacity: 0.3;
        transform: scale(1) rotate(0deg) translate(0px, 0px);
    }
    25% {
        opacity: 0.25;
        transform: scale(0.95) rotate(90deg) translate(6px, 3px);
    }
    50% {
        opacity: 0.4;
        transform: scale(1.08) rotate(180deg) translate(-2px, -6px);
    }
    75% {
        opacity: 0.2;
        transform: scale(1.02) rotate(270deg) translate(-5px, 4px);
    }
    100% {
        opacity: 0.3;
        transform: scale(1) rotate(360deg) translate(0px, 0px);
    }
}

@keyframes gentleWander {
    0% {
        opacity: 0.28;
        transform: scale(1) rotate(0deg) translate(0px, 0px);
    }
    20% {
        opacity: 0.35;
        transform: scale(1.03) rotate(72deg) translate(3px, -4px);
    }
    40% {
        opacity: 0.18;
        transform: scale(0.92) rotate(144deg) translate(-6px, 2px);
    }
    60% {
        opacity: 0.32;
        transform: scale(1.06) rotate(216deg) translate(2px, 7px);
    }
    80% {
        opacity: 0.22;
        transform: scale(0.98) rotate(288deg) translate(-4px, -3px);
    }
    100% {
        opacity: 0.28;
        transform: scale(1) rotate(360deg) translate(0px, 0px);
    }
}

/* Mouse interaction effects */
.star:hover {
    opacity: 0.5;
    transform: scale(1.2) rotate(45deg) translate(0px, 0px) !important;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.3) !important;
}

/* Hero Social Buttons */
.hero-social {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-float-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.social-btn {
    background: #6b7280;
    color: white;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-5px) scale(1.1);
    background: #374151;
    border-color: #9ca3af;
    box-shadow: 0 8px 30px rgba(107, 114, 128, 0.4);
    animation-play-state: paused;
}

.instagram-btn {
    background: #6b7280;
    color: white;
}

.instagram-btn:hover {
    transform: translateY(-5px) scale(1.1);
    background: #374151;
    box-shadow: 0 8px 30px rgba(107, 114, 128, 0.4);
    animation-play-state: paused;
}

.facebook-btn {
    background: #6b7280;
    color: white;
}

.facebook-btn:hover {
    transform: translateY(-5px) scale(1.1);
    background: #374151;
    box-shadow: 0 8px 30px rgba(107, 114, 128, 0.4);
    animation-play-state: paused;
}

.youtube-btn {
    background: #6b7280;
    color: white;
}

.youtube-btn:hover {
    transform: translateY(-5px) scale(1.1);
    background: #374151;
    box-shadow: 0 8px 30px rgba(107, 114, 128, 0.4);
    animation-play-state: paused;
}

/* Language Selector in Navbar */
.language-selector-nav {
    background: none;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 15px;
}

.language-selector-nav:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-1px);
}



/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-social {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }

    .social-float-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .language-selector-nav {
        margin-left: 10px;
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

/* Section Symbols - Used throughout the website */
.section-symbols {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
    font-family: 'Courier New', monospace;
}

.section-symbol {
    position: absolute;
    color: #000000;
    opacity: 0.15;
    font-weight: 400;
    animation: sectionTwinkle 6s infinite ease-in-out;
    transition: all 0.3s ease;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Enhanced animations for section symbols */
.section-symbol:nth-child(2n) {
    animation: sectionFloat 8s infinite ease-in-out;
}

.section-symbol:nth-child(4n) {
    animation: sectionDrift 7s infinite ease-in-out;
}

/* Subtle animation for section symbols */
@keyframes sectionTwinkle {
    0%, 100% {
        opacity: 0.15;
        transform: scale(1) rotate(0deg);
    }
    25% {
        opacity: 0.25;
        transform: scale(1.1) rotate(15deg);
    }
    50% {
        opacity: 0.1;
        transform: scale(0.9) rotate(30deg);
    }
    75% {
        opacity: 0.2;
        transform: scale(1.05) rotate(45deg);
    }
}

@keyframes sectionFloat {
    0% {
        opacity: 0.12;
        transform: scale(1) rotate(0deg) translate(0px, 0px);
    }
    33% {
        opacity: 0.22;
        transform: scale(1.08) rotate(60deg) translate(-3px, 2px);
    }
    66% {
        opacity: 0.08;
        transform: scale(0.92) rotate(120deg) translate(2px, -3px);
    }
    100% {
        opacity: 0.12;
        transform: scale(1) rotate(180deg) translate(0px, 0px);
    }
}

@keyframes sectionDrift {
    0% {
        opacity: 0.18;
        transform: scale(1) rotate(0deg) translate(0px, 0px);
    }
    25% {
        opacity: 0.13;
        transform: scale(0.95) rotate(45deg) translate(3px, 1px);
    }
    50% {
        opacity: 0.23;
        transform: scale(1.05) rotate(90deg) translate(-1px, -2px);
    }
    75% {
        opacity: 0.15;
        transform: scale(1.02) rotate(135deg) translate(-2px, 2px);
    }
    100% {
        opacity: 0.18;
        transform: scale(1) rotate(180deg) translate(0px, 0px);
    }
}

/* Section symbols use same size classes as hero symbols */
.section-symbol.small {
    font-size: 20px;
}

.section-symbol.medium {
    font-size: 28px;
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
}

.section-symbol.large {
    font-size: 36px;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}

.section-symbol.extra-large {
    font-size: 44px;
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
}

.section-symbol.huge {
    font-size: 52px;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

/* Hero Tools Section */
.hero-tools {
    margin-top: 20px;
    animation: fadeInUp 1s ease 0.6s both;
}

.tools-label {
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-bottom: 12px;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-tools-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    max-width: 500px;
    margin: 0;
}

.hero-tool-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 8px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-primary);
    min-width: 0;
}

.hero-tool-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.hero-tool-icon {
    width: 35px;
    height: 35px;
    margin-bottom: 6px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: white;
    font-size: 1rem;
    font-weight: bold;
}

.hero-tool-icon.replit { background: var(--gradient-primary); }
.hero-tool-icon.bolt { background: var(--gradient-primary); }
.hero-tool-icon.lovable { background: var(--gradient-primary); }
.hero-tool-icon.cursor { background: var(--gradient-primary); }
.hero-tool-icon.chatgpt { background: var(--gradient-primary); }

.hero-tool-name {
    font-size: 0.7rem;
    font-weight: 500;
    text-align: center;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-video {
    width: 100%;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
    color: var(--text-primary);
    position: relative;
    min-height: 12rem;
    overflow: hidden;
}

/* Mobile Video Section - Hidden by default */
.mobile-video-section {
    display: none;
    margin: 30px 0 20px;
    text-align: center;
}

.mobile-workspace-video {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-large);
    max-width: 400px;
    object-fit: cover;
}

.title-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    transform: translateY(0);
}

.title-text.active {
    opacity: 1;
}

.title-text:first-child {
    opacity: 1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    animation: fadeInUp 1s ease 0.4s both;
    justify-content: flex-start;
}

.primary-button {
    background: var(--gradient-primary);
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-large);
}

.secondary-button {
    background: transparent;
    border: 2px solid var(--border-color);
    padding: 13px 28px;
    border-radius: 12px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background: var(--bg-card);
    border-color: var(--primary-color);
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

/* Features Intro Section */
.features-intro {
    animation: fadeInUp 1s ease 0.6s both;
}

.features-intro h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 30px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.feature-column h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.feature-dot {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: bold;
}

.feature-item span:not(.feature-dot) {
    color: var(--text-primary);
    font-size: 1rem;
}

.feature-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.hero-image {
    display: flex;
    justify-content: center;
    animation: fadeInRight 1s ease 0.8s both;
    position: relative;
}

.workspace-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-large);
    max-width: 500px;
}

.workspace-video {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-large);
    border: none;
    object-fit: cover;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-large);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
}

/* Simple Testimonial */
.simple-testimonial {
    margin-top: 30px;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 16px 24px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    animation: fadeInUp 1s ease 0.5s both;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    max-width: 400px;
    margin-left: 0;
    margin-right: auto;
}

.simple-testimonial::before {
    content: '"';
    position: absolute;
    left: -15px;
    top: -5px;
    font-size: 3rem;
    color: #94a3b8;
    font-family: serif;
    line-height: 1;
}

.simple-testimonial::after {
    content: '"';
    position: absolute;
    right: -15px;
    bottom: -15px;
    font-size: 3rem;
    color: #94a3b8;
    font-family: serif;
    line-height: 1;
}

.testimonial-count {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.testimonial-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
}

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

@media (max-width: 768px) {
    .simple-testimonial {
        margin-top: 25px;
        padding: 18px 25px;
        gap: 10px;
        max-width: 350px;
    }
    
    .simple-testimonial::before {
        left: -12px;
        top: -8px;
        font-size: 2.5rem;
    }
    
    .simple-testimonial::after {
        right: -12px;
        bottom: -18px;
        font-size: 2.5rem;
    }
    
    .testimonial-count {
        font-size: 1.6rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
}

/* Hero Social Proof - Minimalistic Design */
.hero-social-proof {
    margin-top: 30px;
    padding: 15px 0;
    border-top: 1px solid rgba(203, 213, 225, 0.3);
    background: transparent;
}

.social-proof-content {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
}

.proof-stats {
    display: flex;
    gap: 30px;
    align-items: center;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    background: transparent;
    border: none;
    transition: opacity 0.3s ease;
}

.stat-item:hover {
    opacity: 0.8;
}

.stat-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

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

.proof-badges {
    display: flex;
    gap: 15px;
    align-items: center;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(45, 212, 191, 0.1);
    border: 1px solid rgba(45, 212, 191, 0.2);
    border-radius: 15px;
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.badge-item:hover {
    background: rgba(45, 212, 191, 0.15);
    border-color: var(--primary-color);
}

.badge-item i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* AI Tools Merge Section */
.ai-tools-merge {
    display: flex;
    align-items: center;
    gap: 12px;
}

.merge-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-right: 8px;
}

.tool-icons {
    display: flex;
    gap: 8px;
    align-items: center;
}

.tool-icons i {
    color: var(--primary-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.tool-icons i:hover {
    color: #26a69a;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .hero-social-proof {
        margin-top: 20px;
        padding: 12px 0;
    }
    
    .social-proof-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .proof-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .stat-item {
        flex-direction: column;
        gap: 2px;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
        text-align: center;
    }
    
    .proof-badges {
        gap: 10px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .badge-item {
        padding: 5px 10px;
        font-size: 0.75rem;
    }
}

/* Service Section */
.service-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.feature-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

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

.service-showcase {
    text-align: center;
    margin-top: 60px;
}

.ai-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-large);
}

/* Tools Section */
.tools-section {
    padding: 80px 0;
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

.tools-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.tools-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.tool-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 15px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    transition: all 0.3s ease;
    ```python
    text-decoration: none;
    color: var(--text-primary);
}

.tool-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.tool-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.tool-icon.replit { background: linear-gradient(135deg, #F26207 0%, #FF8A00 100%); }
.tool-icon.bolt { background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%); }
.tool-icon.lovable { background: linear-gradient(135deg, #EC4899 0%, #BE185D 100%); }
.tool-icon.cursor { background: linear-gradient(135deg, #000000 0%, #374151 100%); }
.tool-icon.chatgpt { background: linear-gradient(135deg, #10A37F 0%, #059669 100%); }

.tool-name {
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    color: var(--text-secondary);
}

/* Webinar Section */
.webinar-section {
    padding: 100px 0;
    background: var(--bg-white);
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.webinar-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.webinar-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 50px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.webinar-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.webinar-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
}

.webinar-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
}

.feature-item i {
    color: var(--primary-color);
}

.webinar-card {
    width: 100%;
    margin: 0 0 60px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    position: relative;
}

/* Koalendar Widget Styling */
#inline-widget-web-za-den-webinar {
    width: 100%;
    max-width: none;
    margin: 40px 0 60px;
    padding: 20px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    overflow: hidden;
}

/* Override Koalendar default styles to match our theme */
#inline-widget-web-za-den-webinar iframe {
    border-radius: 15px !important;
    background: transparent !important;
    width: 100% !important;
    height: auto !important;
    min-height: 700px !important;
    border: none !important;
    overflow: hidden !important;
}

/* Ensure the widget container scales properly */
#inline-widget-web-za-den-webinar > div {
    width: 100% !important;
    overflow: hidden !important;
}

.webinar-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.webinar-title h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

.cohort-number {
    background: var(--gradient-primary);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.webinar-date {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.webinar-details {
    margin-bottom: 30px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.detail-item i {
    color: var(--primary-color);
    width: 16px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.sold-out {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.fully-booked-btn {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    background: var(--bg-light);
    color: var(--text-muted);
    border-radius: 12px;
    font-size: 1rem;
    cursor: not-allowed;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Pricing Section */
.pricing-section {
    margin: 60px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.pricing-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.pricing-section .section-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 968px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

.pricing-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
    border-color: var(--primary-color);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 25px;
}

.pricing-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.pricing-icon.video {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.pricing-icon.webinar {
    background: var(--gradient-primary);
}

.pricing-icon.person {
    background: linear-gradient(135deg, #845df4 0%, #845df4 100%);
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.original-price {
    font-size: 1.2rem;
    color: #ef4444;
    text-decoration: line-through;
    font-weight: 500;
}

.discounted-price {
    font-size: 2.5rem;
    color: #10b981;
    font-weight: 700;
}

.pricing-discount {
    background: #10b981;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.pricing-duration {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.pricing-content {
    flex: 1;
    margin-bottom: 30px;
}

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

.pricing-subtitle {
    color: var(--text-secondary);
    font-style: italic;
    font-size: 0.95rem;
    margin-bottom: 20px;
    text-align: center;
}

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

.pricing-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 0;
}

.feature-checkmark {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.feature-text {
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.4;
}

.feature-text.highlight {
    background: linear-gradient(135deg, var(--primary-color), #8b5cf6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.feature-text.premium {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.pricing-action {
    margin-top: auto;
}

.pricing-button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.video-btn {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

.video-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.3);
}

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

.webinar-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.person-btn {
    background: linear-gradient(135deg, #845df4 0%, #845df4 100%);
    color: white;
}

.person-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(132, 93, 244, 0.3);
}

.contact-section {
    text-align: center;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
}

.contact-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-section p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.contact-button {
    background: var(--gradient-secondary);
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideIn 0.3s ease;
    box-shadow: var(--shadow-large);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.close {
    color: var(--text-secondary);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--text-primary);
}

.modal-body {
    padding: 30px;
}

.modal-body p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    background: var(--bg-white);
    color: var(--text-primary);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    background: var(--gradient-primary);
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.1rem;
    margin-top: 10px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

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



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

.modal-header {
    padding: 30px 30px 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--text-primary);
}

.modal-body {
    padding: 30px;
}

.contact-form {
    margin-top: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-white);
    color: var(--text-primary);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-button {
    background: var(--gradient-primary);
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.1rem;
    width: 100%;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 20px;
    }

    .modal-header {
        padding: 20px 25px;
    }

    .modal-body {
        padding: 25px;
    }
}

/* Instructors Section */
.instructors-section {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.instructor-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instructor-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
}

.instructor-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 30px;
    text-align: center;
}

.instructor-image {
    position: relative;
    width: 200px;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
    border-radius: 15px;
}

.instructor-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instructor-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instructor-card:hover .instructor-overlay {
    opacity: 1;
}

.linkedin-link {
    background: var(--primary-color);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.linkedin-link:hover {
    transform: scale(1.1);
}

.instructor-info {
    flex: 1;
    text-align: center;
}

@media (max-width: 968px) {
    .instructors-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .instructor-content {
        gap: 20px;
        padding: 25px 20px;
    }

    .instructor-image {
        width: 180px;
        height: 180px;
    }
}

.instructor-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.instructor-title {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 20px;
}

.instructor-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 30px;
}

.instructor-stats {
    display: flex;
    gap: 30px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 5px;
}

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

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.testimonial-content {
    margin-bottom: 30px;
}

.quote-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.testimonial-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.author-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

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

.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.brand-logo i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.footer-brand p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.link-group h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.link-group a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.link-group a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.footer-legal {
    display: flex;
    gap: 30px;
}

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

.footer-legal a:hover {
    color: var(--text-secondary);
}

.footer-copyright p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

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

/* Responsive Design */
@media (max-width: 968px) {
    .nav-links {
        display: none;
    }

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

    .hero-content {
        display: flex;
        flex-direction: column;
        gap: 0;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

@media (max-width: 768px) {
    .pricing-card {
        padding: 30px 25px;
    }

    .pricing-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .pricing-price {
        font-size: 2rem;
    }

    .pricing-section .section-header h2 {
        font-size: 2rem;
    }

    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 400px;
    }

    .tool-item {
        padding: 20px 10px;
    }

    .tool-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    #inline-widget-web-za-den-webinar {
        margin: 20px auto 40px;
        padding: 20px;
        min-height: 500px;
    }

    .hero-title {
        font-size: 2rem;
        height: auto;
        min-height: 3.2rem;
    }

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

    .primary-button,
    .secondary-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    /* Mobile layout with proper ordering */
    .hero-content {
        display: block;
        text-align: center;
    }

    .hero-text {
        margin-bottom: 20px;
    }

    .hero-image {
        display: none; /* Hide desktop video on mobile */
    }

    .mobile-video-section {
        display: block; /* Show mobile video */
        margin: 20px 0 15px;
    }

    .hero-tools {
        margin-top: 20px;
        order: unset;
    }

    .hero-tools-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        max-width: 300px;
    }

    .hero-tool-item {
        padding: 12px 8px;
    }

    .hero-tool-icon {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    .hero-tool-name {
        font-size: 0.7rem;
    }

    .tools-label {
        font-size: 0.75rem;
        margin-bottom: 10px;
    }

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

    .webinar-features {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .waitlist-form {
        flex-direction: column;
    }

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

    .section-header h2 {
        font-size: 2rem;
    }

    .webinar-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .webinar-card,
    .waitlist-section {
        padding: 30px 20px;
    }

    .instructor-info {
        padding: 25px 20px;
    }

    .testimonial-card {
        padding: 30px 20px;
    }
}

/* Cookies Consent Bar */
.cookies-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    backdrop-filter: blur(20px);
    z-index: 10000;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookies-bar.show {
    transform: translateY(0);
}

.cookies-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookies-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.cookies-text p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.cookies-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.cookies-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

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

.cookies-btn.accept:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.cookies-btn.decline {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.cookies-btn.decline:hover {
    background: var(--bg-darker);
    color: var(--text-primary);
}

.cookies-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

@media (max-width: 768px) {
    .cookies-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .cookies-actions {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .cookies-btn {
        width: 100%;
        max-width: 200px;
    }
}

/* Scroll reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

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