/* ===============================================
   VIBE CODING - Modern Landing Page
   Inspired by naucidizajn.com style
   Color: Warm Coral/Orange accent
   =============================================== */

:root {
    /* Background Colors */
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-tertiary: #1a1a24;
    --bg-card: #16161f;

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --text-muted: #6b6b7b;

    /* Accent Colors - Warm Coral/Orange */
    --accent: #ff6b4a;
    --accent-light: #ff8a70;
    --accent-dark: #e55a3a;
    --accent-glow: rgba(255, 107, 74, 0.3);

    /* Gradient */
    --gradient-accent: linear-gradient(135deg, #ff6b4a 0%, #ff9f6a 50%, #ffc04a 100%);
    --gradient-text: linear-gradient(135deg, #ff6b4a, #ff9f6a, #ffcc6a);

    /* Borders */
    --border-color: rgba(255, 255, 255, 0.08);
    --border-light: rgba(255, 255, 255, 0.12);

    /* Spacing */
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Transitions removed - no scroll animations */
    --transition: none;
    --transition-fast: none;
}

/* ===============================================
   BASE STYLES
   =============================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

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

/* ===============================================
   ANNOUNCEMENT BANNER (Marquee)
   =============================================== */

.announcement-bar {
    background: var(--gradient-accent);
    padding: 12px 0;
    overflow: hidden;
}

.ticker-wrap {
    width: 100%;
    overflow: hidden;
}

.ticker {
    display: flex;
    gap: 60px;
    white-space: nowrap;
    will-change: transform;
}

.ticker-item {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--bg-primary);
    flex-shrink: 0;
}

.ticker-item::after {
    content: '•';
    margin-left: 60px;
    opacity: 0.5;
}

/* ===============================================
   NAVBAR
   =============================================== */

.navbar {
    position: relative;
    padding: 20px 0;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo span {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-icon {
    display: none;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===============================================
   BUTTONS
   =============================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--bg-primary);
    box-shadow: 0 4px 24px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px var(--accent-glow);
}

.btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-secondary);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

.btn-nav {
    padding: 12px 24px;
    font-size: 0.9rem;
}

/* ===============================================
   HERO SECTION
   =============================================== */

.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
    background: var(--bg-primary);
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-gradient {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 140%;
    height: 80%;
    /* Premium Aurora Gradient */
    background: radial-gradient(circle at 50% 30%, rgba(255, 107, 74, 0.25) 0%, rgba(255, 107, 74, 0.1) 40%, transparent 70%),
        radial-gradient(circle at 80% 10%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 20% 10%, rgba(56, 189, 248, 0.15) 0%, transparent 50%);
    opacity: 1;
    filter: blur(80px);
}

.hero-grid {
    position: absolute;
    inset: 0;
    /* Clean, subtle grid */
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse 90% 80% at 50% 20%, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 20%, black 40%, transparent 100%);
}

/* Add subtle noise texture to the whole page for premium feel */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    z-index: -1;
    pointer-events: none;
    mix-blend-mode: overlay;
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: -40px;
    margin-bottom: 32px;
    font-weight: 500;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 12px var(--accent);
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(0.9);
    }
}

.hero-title {
    font-size: clamp(2.75rem, 7vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 40px;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-video {
    margin: 0 auto 40px;
    max-width: 900px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}

.hero-video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4),
                0 0 0 1px var(--border-color);
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    border-radius: var(--radius);
    z-index: 100;
}

.video-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.video-play-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease;
    cursor: pointer;
    pointer-events: auto;
    position: relative;
    z-index: 10;
}

.video-play-button:hover {
    transform: scale(1.08);
}

.video-play-button svg {
    filter: drop-shadow(0 10px 30px rgba(255, 107, 74, 0.6));
    transition: transform 0.3s ease;
}

.video-play-button:hover svg {
    transform: scale(1.05);
    filter: drop-shadow(0 12px 40px rgba(255, 107, 74, 0.8));
}

.play-text {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}

.video-placeholder {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.video-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 107, 74, 0.1), rgba(255, 159, 106, 0.05));
    pointer-events: none;
}

.video-placeholder-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--text-muted);
}

.video-placeholder-content svg {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    color: var(--accent);
    opacity: 0.6;
}

.video-placeholder-content p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.video-placeholder-content span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 48px;
    font-weight: 400;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Animations removed for better performance */
.animate-in {
    opacity: 1;
    transform: none;
}

.delay-1,
.delay-2,
.delay-3,
.delay-4 {
    /* No delays */
}

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

.stats-section {
    padding: 60px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    display: block;
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: var(--border-light);
}

/* ===============================================
   DEMO SECTION
   =============================================== */

.demo-section {
    padding: 0 0 120px;
    background: var(--bg-primary);
}

.demo-header {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.demo-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    line-height: 1.2;
}

.demo-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.6;
}

.demo-window {
    background: var(--bg-card);
    border: 2px solid rgba(255, 107, 74, 0.3);
    border-radius: var(--radius-lg);
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.1),
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 100px var(--accent-glow),
        0 0 0 1px rgba(255, 107, 74, 0.1);
}

.demo-window::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    z-index: 1;
}

.window-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--bg-tertiary), rgba(255, 107, 74, 0.05));
    border-bottom: 1px solid rgba(255, 107, 74, 0.2);
}

.window-dots {
    display: flex;
    gap: 8px;
}

.window-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f57;
}

.dot.yellow {
    background: #febc2e;
}

.dot.green {
    background: #28c840;
}

.window-title {
    color: var(--accent-light);
    font-size: 0.85rem;
    font-weight: 600;
}

.window-content {
    padding: 32px;
}

.chat-conversation {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 24px;
}

.chat-bubble {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.chat-avatar {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--bg-tertiary);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.chat-bubble.ai .chat-avatar {
    background: var(--gradient-accent);
    border-color: rgba(255, 107, 74, 0.4);
    box-shadow: 0 0 20px rgba(255, 107, 74, 0.3);
}

.chat-text {
    flex: 1;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    transition: var(--transition);
}

.chat-bubble.ai .chat-text {
    border-color: rgba(255, 107, 74, 0.2);
    background: linear-gradient(135deg, var(--bg-tertiary), rgba(255, 107, 74, 0.05));
}

.chat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.chat-bubble.ai .chat-label {
    color: var(--accent);
}

.chat-text p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.chat-bubble.user .chat-text p {
    color: var(--text-primary);
    font-style: italic;
}

.chat-bubble.ai .chat-text p {
    color: var(--text-primary);
}

.code-block {
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 107, 74, 0.2);
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(255, 107, 74, 0.1));
    border-bottom: 1px solid rgba(255, 107, 74, 0.2);
}

.code-file {
    color: var(--accent-light);
    font-size: 0.85rem;
    font-weight: 600;
}

.code-lang {
    font-size: 0.75rem;
    color: var(--bg-primary);
    background: var(--gradient-accent);
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(255, 107, 74, 0.3);
}

.code-content {
    padding: 20px;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Courier New', monospace;
    font-size: 0.85rem;
    line-height: 1.8;
    color: var(--text-secondary);
    overflow-x: auto;
}

.code-keyword {
    color: #ff79c6;
}

.code-function {
    color: #50fa7b;
}

.code-string {
    color: #f1fa8c;
}

.code-tag {
    color: #ff79c6;
}

.code-attr {
    color: #50fa7b;
}

.code-comment {
    color: #6272a4;
}

.demo-note {
    padding: 20px 24px;
    text-align: center;
    border-top: 1px solid rgba(255, 107, 74, 0.2);
    background: rgba(255, 107, 74, 0.05);
}

.demo-note p {
    font-size: 1rem;
    color: var(--text-secondary);
    font-style: italic;
    margin: 0;
    line-height: 1.6;
}

/* ===============================================
   SECTION HEADERS
   =============================================== */

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

.section-tag {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(255, 107, 74, 0.1);
    border: 1px solid rgba(255, 107, 74, 0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--accent);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

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

.section-desc strong {
    color: var(--text-primary);
}

/* ===============================================
   WHAT IS SECTION (Features)
   =============================================== */

.what-is-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(255, 107, 74, 0.3), rgba(255, 159, 106, 0.25));
    position: relative;
}

.what-is-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 50%, rgba(255, 107, 74, 0.4), transparent);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 40px;
    transition: border-color 0.2s ease, transform 0.2s ease;
    position: relative;
    z-index: 1;
}

.feature-card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
}

.feature-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--bg-card), var(--bg-tertiary));
    border-color: rgba(255, 107, 74, 0.2);
}

.feature-card.featured:hover {
    border-color: rgba(255, 107, 74, 0.4);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    font-weight: 700;
}

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

/* ===============================================
   WHY LEARN FROM US SECTION
   =============================================== */

.why-learn-section {
    padding: 120px 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.why-learn-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(255, 107, 74, 0.1), transparent 70%);
    pointer-events: none;
}

.experience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.experience-image-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.experience-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--gradient-accent);
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--bg-primary);
    box-shadow: 0 8px 32px rgba(255, 107, 74, 0.4);
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

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

.experience-image {
    width: 100%;
    max-width: 500px;
    border-radius: var(--radius-lg);
    border: 2px solid rgba(255, 107, 74, 0.3);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 80px rgba(255, 107, 74, 0.3);
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.experience-image:hover {
    transform: scale(1.02);
}

.experience-caption {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-primary);
    margin-top: 16px;
    font-style: italic;
    font-weight: 500;
}

.experience-glow {
    position: absolute;
    inset: -40px;
    background: radial-gradient(circle, var(--accent-glow), transparent 70%);
    filter: blur(60px);
    opacity: 0.6;
    z-index: 0;
    pointer-events: none;
}

.experience-text {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.experience-stat h3 {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.experience-comparison {
    display: flex;
    gap: 20px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 107, 74, 0.2);
    border-radius: var(--radius);
    padding: 28px;
    transition: all 0.3s ease;
}

.experience-comparison:hover {
    border-color: rgba(255, 107, 74, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 107, 74, 0.15);
}

.comparison-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.comparison-content h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--accent-light);
    font-weight: 700;
}

.comparison-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

.comparison-content p:last-child {
    margin-bottom: 0;
}

.comparison-content strong {
    color: var(--text-primary);
    font-weight: 700;
}

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

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: rgba(255, 107, 74, 0.05);
    border: 1px solid rgba(255, 107, 74, 0.15);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(255, 107, 74, 0.1);
    border-color: rgba(255, 107, 74, 0.3);
    transform: translateY(-4px);
}

.highlight-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.highlight-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.experience-quote {
    background: linear-gradient(135deg, var(--bg-tertiary), rgba(255, 107, 74, 0.05));
    border-left: 4px solid var(--accent);
    border-radius: var(--radius-sm);
    padding: 24px 28px;
}

.experience-quote p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    font-style: italic;
    margin: 0;
}

/* Responsive */
@media (max-width: 968px) {
    .experience-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .experience-image-wrapper {
        order: -1;
    }
    
    .experience-badge {
        position: static;
        display: inline-block;
        margin-bottom: 16px;
        transform: none;
    }
    
    .experience-highlights {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .why-learn-section {
        padding: 80px 0;
    }
    
    .experience-image-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .experience-badge {
        position: static;
        display: inline-block;
        margin-bottom: 16px;
        transform: none;
    }
    
    .experience-image {
        max-width: 100%;
    }
    
    .experience-caption {
        margin-top: 16px;
        font-size: 0.85rem;
        order: 3;
    }
    
    .experience-stat h3 {
        font-size: 2.5rem;
    }
    
    .stat-subtitle {
        font-size: 1rem;
    }
    
    .comparison-icon {
        font-size: 2rem;
    }
    
    .comparison-content h4 {
        font-size: 1.1rem;
    }
    
    .comparison-content p {
        font-size: 0.95rem;
    }
    
    .highlight-number {
        font-size: 2rem;
    }
    
    .experience-quote {
        padding: 20px;
    }
    
    .experience-quote p {
        font-size: 1rem;
    }
}

/* ===============================================
   PATHS SECTION
   =============================================== */

.paths-section {
    padding: 120px 0;
    background: var(--bg-primary);
}

.paths-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.path-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 48px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.path-card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
}

.path-number {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1;
    letter-spacing: -0.03em;
}

.path-icon-wrapper {
    width: 72px;
    height: 72px;
    background: var(--gradient-accent);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.path-icon {
    font-size: 2rem;
}

.path-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    font-weight: 700;
}

.path-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 24px;
    line-height: 1.7;
}

.path-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255, 107, 74, 0.1);
    border: 1px solid rgba(255, 107, 74, 0.2);
    border-radius: var(--radius-sm);
    color: var(--accent-light);
    font-weight: 600;
    font-size: 0.95rem;
}

/* ===============================================
   PLAN SECTION (Timeline)
   =============================================== */

.plan-section {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent), var(--border-color));
}

.timeline-item {
    display: flex;
    gap: 32px;
    padding-bottom: 40px;
    position: relative;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    width: 56px;
    height: 56px;
    background: var(--bg-card);
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.timeline-marker span {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
}

.timeline-content {
    flex: 1;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 28px;
    transition: var(--transition);
}

.timeline-content:hover {
    border-color: var(--border-light);
}

.timeline-content h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
    font-weight: 700;
}

.timeline-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===============================================
   TESTIMONIALS SECTION
   =============================================== */

.testimonials-section {
    padding: 120px 0;
    background: var(--bg-primary);
}

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

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 36px;
    position: relative;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.testimonial-card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
}

.testimonial-card.featured {
    background: linear-gradient(135deg, var(--bg-card), var(--bg-tertiary));
    border-color: rgba(255, 107, 74, 0.2);
}

.testimonial-quote {
    font-size: 4rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
    opacity: 0.5;
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--bg-primary);
}

.author-info strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 2px;
}

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

/* ===============================================
   PRICING SECTION
   =============================================== */

.pricing-section {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 56px;
    max-width: 560px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
}

.pricing-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 8px 16px;
    background: rgba(255, 107, 74, 0.15);
    color: var(--accent);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 12px;
}

.currency {
    font-size: 2rem;
    color: var(--text-muted);
    font-weight: 600;
}

.amount {
    font-size: 5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.period {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.price-note {
    color: var(--text-secondary);
    font-size: 1rem;
}

.pricing-features {
    margin-bottom: 40px;
}

.pricing-feature {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.pricing-feature:last-child {
    border-bottom: none;
}

.feature-check {
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 74, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent);
}

.pricing-feature strong {
    display: block;
    margin-bottom: 4px;
    font-size: 1rem;
}

.pricing-feature p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* ===============================================
   OBJECTION SECTION
   =============================================== */

.objection-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255, 107, 74, 0.3), rgba(255, 159, 106, 0.25));
    position: relative;
}

.objection-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 50%, rgba(255, 107, 74, 0.4), transparent);
    pointer-events: none;
}

.objection-card {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-card);
    border: 2px solid rgba(255, 107, 74, 0.5);
    border-radius: var(--radius-lg);
    padding: 56px;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 32px rgba(255, 107, 74, 0.2);
}

.objection-icon {
    font-size: 3rem;
    margin-bottom: 24px;
}

.objection-card h2 {
    font-size: 1.75rem;
    margin-bottom: 28px;
    color: var(--text-primary);
    font-weight: 700;
}

.objection-card p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.objection-highlight {
    display: inline-block;
    margin-top: 20px;
    padding: 20px 32px;
    background: rgba(255, 107, 74, 0.1);
    border: 1px solid rgba(255, 107, 74, 0.2);
    border-radius: var(--radius);
}

.objection-highlight span {
    color: var(--accent-light);
    font-weight: 700;
    font-size: 1.15rem;
}

/* ===============================================
   CASE STUDY SECTIONS
   =============================================== */

.case-study-section {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.case-study-section:nth-child(even) {
    background: var(--bg-primary);
}

.case-study-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.case-study-reverse .case-study-content {
    direction: rtl;
}

.case-study-reverse .case-study-content>* {
    direction: ltr;
}

.case-study-image,
.case-study-video {
    position: relative;
}

.case-study-screenshot {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-study-screenshot:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--text-muted);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.image-placeholder svg {
    width: 64px;
    height: 64px;
    opacity: 0.5;
}

.image-placeholder p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin: 0;
}

.image-placeholder span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.video-placeholder-vertical {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    aspect-ratio: 9 / 16;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.video-placeholder-vertical .video-placeholder-content {
    text-align: center;
    color: var(--text-muted);
}

.video-placeholder-vertical .video-placeholder-content svg {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    opacity: 0.5;
    color: var(--accent);
}

.video-placeholder-vertical .video-placeholder-content p {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin: 0 0 4px;
}

.video-placeholder-vertical .video-placeholder-content span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.testimonial-video {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    aspect-ratio: 9 / 16;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    object-fit: cover;
    transition: transform 0.3s ease;
}

.testimonial-video:hover {
    transform: scale(1.02);
}

.case-video-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .case-video-wrapper {
        max-width: 100%;
        width: 100%;
    }
    
    .case-video-wrapper .testimonial-video {
        width: 100%;
        max-width: 100%;
        border-radius: 12px;
    }
    
    .case-study-video {
        width: 100%;
    }
    
    .case-study-image {
        width: 100%;
    }
    
    .case-study-screenshot {
        max-width: 100%;
        width: 100%;
    }
    
    .case-study-content {
        gap: 32px;
    }
    
    .case-study-text {
        text-align: center;
    }
    
    .case-study-text .section-title {
        text-align: center;
    }
}

.case-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: var(--radius-lg);
    z-index: 10;
    transition: opacity 0.3s ease;
}

.case-video-overlay:hover {
    background: rgba(0, 0, 0, 0.4);
}

.case-video-overlay .video-play-button svg {
    width: 80px;
    height: 80px;
}

.case-video-wrapper .testimonial-video {
    display: block;
}

.case-study-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.case-study-text .section-tag {
    margin-bottom: 0;
}

.case-study-text .section-title {
    margin-bottom: 0;
    text-align: left;
}

.case-study-text p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
}

.case-study-stats {
    display: flex;
    gap: 32px;
    margin-top: 8px;
}

.case-stat {
    display: flex;
    flex-direction: column;
}

.case-stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 4px;
}

.case-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.case-study-highlight {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(255, 107, 74, 0.1);
    border: 1px solid rgba(255, 107, 74, 0.2);
    border-radius: var(--radius);
    margin-top: 8px;
}

.case-study-highlight span {
    font-size: 2rem;
}

.case-study-highlight strong {
    display: block;
    font-size: 1.1rem;
    color: var(--accent-light);
    margin-bottom: 4px;
}

.case-study-highlight p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* ===============================================
   MENTORS SECTION
   =============================================== */

.mentors-section {
    padding: 120px 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.mentors-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 107, 74, 0.08), transparent 70%);
    pointer-events: none;
}

.mentors-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 64px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.mentor-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.mentor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mentor-card:hover {
    border-color: rgba(255, 107, 74, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(255, 107, 74, 0.15);
}

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

.mentor-image {
    margin-bottom: 32px;
    position: relative;
}

.mentor-image img {
    width: 240px;
    height: 320px;
    object-fit: cover;
    object-position: center top;
    border: 3px solid rgba(255, 107, 74, 0.3);
    background-clip: padding-box;
    border-radius: 16px;
    display: block;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.mentor-image .image-placeholder {
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    border: 3px solid transparent;
    background-clip: padding-box;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.mentor-image .image-placeholder::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, rgba(255, 107, 74, 0.4), rgba(255, 159, 106, 0.4));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.6;
}

.mentor-image .image-placeholder svg {
    width: 64px;
    height: 64px;
    opacity: 0.5;
    color: var(--text-muted);
}

.mentor-info {
    text-align: center;
}

.mentor-info h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.mentor-role {
    font-size: 1rem;
    font-weight: 600;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    display: inline-block;
}

.mentor-bio {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 968px) {
    .mentors-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 600px;
    }

    .mentor-card {
        padding: 40px 32px;
    }
}

@media (max-width: 768px) {
    .mentor-card {
        padding: 32px 24px;
    }

    .mentor-image .image-placeholder {
        width: 140px;
        height: 140px;
    }

    .mentor-info h3 {
        font-size: 1.5rem;
    }

    .mentor-bio {
        font-size: 1rem;
    }
}

/* ===============================================
   TESTIMONIALS SCREENSHOTS SECTION
   =============================================== */

.testimonials-screenshots-section {
    padding: 120px 0;
    background: var(--bg-primary);
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.screenshot-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.screenshot-item:hover {
    transform: translateY(-4px);
    border-color: var(--border-light);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.testimonial-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    display: block;
}

.screenshot-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.screenshot-placeholder:hover {
    border-color: var(--border-light);
    transform: translateY(-2px);
}

.screenshot-placeholder svg {
    width: 32px;
    height: 32px;
    opacity: 0.4;
    color: var(--text-muted);
}

.testimonial-screenshot {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.testimonial-screenshot:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* ===============================================
   LIGHTBOX / IMAGE MODAL
   =============================================== */

.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

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

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 50px rgba(255, 107, 74, 0.3);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 48px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.2s ease;
    z-index: 10001;
    line-height: 1;
    user-select: none;
}

.lightbox-close:hover {
    color: var(--accent);
}

/* ===============================================
   WORST CASE SECTION
   =============================================== */

.worst-case-section {
    padding: 100px 0;
    background: linear-gradient(135deg, 
        rgba(255, 107, 74, 0.15) 0%, 
        rgba(255, 159, 106, 0.1) 50%,
        rgba(255, 192, 74, 0.08) 100%);
    position: relative;
}

.worst-case-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top right, rgba(255, 107, 74, 0.2) 0%, transparent 50%),
                radial-gradient(ellipse at bottom left, rgba(255, 192, 74, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.worst-case-card {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(26, 26, 36, 0.95) 0%, rgba(18, 18, 24, 0.98) 100%);
    border-radius: 24px;
    border: 1px solid rgba(255, 107, 74, 0.3);
    padding: 60px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 107, 74, 0.15),
                0 0 0 1px rgba(255, 107, 74, 0.1);
}

.worst-case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--primary-orange) 0%, 
        var(--primary-coral) 50%, 
        var(--accent-yellow) 100%);
}

.worst-case-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 74, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.worst-case-icon {
    font-size: 4rem;
    margin-bottom: 24px;
    animation: float 3s ease-in-out infinite;
}

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

.worst-case-card h2 {
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 32px;
    text-shadow: 0 2px 20px rgba(255, 107, 74, 0.5);
    line-height: 1.2;
}

.worst-case-content p {
    font-size: 1.35rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
}

.worst-case-content p strong {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.4rem;
}

.worst-case-list {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.worst-case-item {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
    padding: 20px;
    background: rgba(255, 107, 74, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 74, 0.1);
    transition: all 0.3s ease;
}

.worst-case-item:hover {
    background: rgba(255, 107, 74, 0.1);
    border-color: rgba(255, 107, 74, 0.3);
    transform: translateX(8px);
}

.worst-case-item .check-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-coral));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.25rem;
}

.worst-case-item span:last-child {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.worst-case-highlight {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-top: 40px !important;
    padding: 24px 30px;
    background: rgba(255, 107, 74, 0.2);
    border-left: 4px solid var(--primary-orange);
    border-radius: 8px;
    text-shadow: 0 1px 10px rgba(255, 107, 74, 0.3);
}

@media (max-width: 768px) {
    .worst-case-card {
        padding: 40px 30px;
    }

    .worst-case-card h2 {
        font-size: 2.25rem;
    }

    .worst-case-content p {
        font-size: 1.15rem;
    }

    .worst-case-content p strong {
        font-size: 1.2rem;
    }

    .worst-case-item span:last-child {
        font-size: 1rem;
    }

    .worst-case-highlight {
        font-size: 1.2rem !important;
    }
}

/* ===============================================
   CTA SECTION
   =============================================== */

.cta-section {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(255, 107, 74, 0.1), transparent);
    pointer-events: none;
}

.cta-card {
    background: var(--bg-card);
    border: 2px solid rgba(255, 107, 74, 0.3);
    border-radius: var(--radius-xl);
    padding: 72px 56px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(255, 107, 74, 0.15), 0 0 0 1px rgba(255, 107, 74, 0.1);
}

.cta-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.cta-circle {
    position: absolute;
    border-radius: 50%;
    background: var(--accent-glow);
    filter: blur(100px);
    opacity: 0.8;
}

.cta-circle:first-child {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -150px;
}

.cta-circle:last-child {
    width: 350px;
    height: 350px;
    bottom: -150px;
    left: -120px;
}

.cta-content {
    position: relative;
}

.cta-card h2 {
    font-size: 2.25rem;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-card>p,
.cta-content>p:first-of-type {
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.signup-form {
    display: grid;
    gap: 16px;
    max-width: 400px;
    margin: 0 auto;
}

.form-group input {
    width: 100%;
    padding: 18px 24px;
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 107, 74, 0.2);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.form-group input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow), 0 4px 12px rgba(255, 107, 74, 0.2);
}

.form-note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ===============================================
   CTA MINI SECTION
   =============================================== */

.cta-mini-section {
    padding: 80px 0;
    background: var(--bg-primary);
    position: relative;
}

.cta-mini-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(255, 107, 74, 0.05), transparent);
    pointer-events: none;
}

.cta-mini-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
    border: 2px solid rgba(255, 107, 74, 0.3);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(255, 107, 74, 0.1);
    transition: all 0.3s ease;
}

.cta-mini-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(255, 107, 74, 0.2);
}

.cta-mini-card h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.cta-mini-card p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.cta-mini-card .btn {
    display: inline-flex;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-mini-section {
        padding: 60px 0;
    }

    .cta-mini-card {
        padding: 40px 28px;
    }

    .cta-mini-card h3 {
        font-size: 1.5rem;
    }

    .cta-mini-card p {
        font-size: 1rem;
        margin-bottom: 24px;
    }
}

/* ===============================================
   THANK YOU SECTION
   =============================================== */

.thank-you-section {
    padding: 150px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: var(--bg-primary);
}

.thank-you-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: rgba(20, 20, 30, 0.95);
    border-radius: 24px;
    border: 2px solid rgba(255, 107, 74, 0.5);
    padding: 60px 50px;
    box-shadow: 0 20px 60px rgba(255, 107, 74, 0.25),
                0 0 40px rgba(255, 107, 74, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.thank-you-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--primary-orange) 0%, 
        var(--primary-coral) 50%, 
        var(--accent-yellow) 100%);
}

.thank-you-icon {
    font-size: 5rem;
    margin-bottom: 24px;
    animation: scaleIn 0.5s ease;
}

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

.thank-you-card h1 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ff6b4a, #ff8e6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 107, 74, 0.3);
}

.thank-you-card p {
    font-size: 1.25rem;
    color: #e0e0e0;
    margin-bottom: 16px;
    line-height: 1.8;
    font-weight: 400;
}

.thank-you-card .btn {
    margin-top: 32px;
}

@media (max-width: 768px) {
    .thank-you-section {
        padding: 100px 0;
    }

    .thank-you-card {
        padding: 40px 30px;
    }

    .thank-you-card h1 {
        font-size: 2rem;
    }

    .thank-you-card p {
        font-size: 1.125rem;
    }

    .thank-you-icon {
        font-size: 4rem;
    }
}

/* ===============================================
   PS SECTION
   =============================================== */

.ps-section {
    padding: 80px 0;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
}

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

.ps-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.ps-content strong {
    color: var(--text-primary);
}

/* ===============================================
   FAQ SECTION
   =============================================== */

.faq-section {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
}

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

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--border-light);
}

.faq-item.active {
    border-color: rgba(255, 107, 74, 0.3);
    box-shadow: 0 4px 16px rgba(255, 107, 74, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
}

.faq-question:hover {
    color: var(--accent-light);
}

.faq-question span {
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    flex-shrink: 0;
    color: var(--accent);
    transition: transform 0.3s ease;
}

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

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

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

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

/* Responsive */
@media (max-width: 768px) {
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }

    .faq-answer p {
        font-size: 0.95rem;
    }
}

.faq-contact {
    max-width: 800px;
    margin: 48px auto 0;
    text-align: center;
    padding: 24px;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
}

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

.faq-contact a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.faq-contact a:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

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

.footer {
    padding: 60px 0 40px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 16px;
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

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

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

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card.featured {
        grid-column: span 1;
    }

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

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

@media (max-width: 768px) {
    .navbar {
        display: none;
    }

    .nav-links {
        display: none;
    }

    .btn-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: none;
    }

    .hero {
        padding: 40px 0 80px;
        background: var(--bg-primary);
    }
    
    .hero-gradient {
        opacity: 0.8;
        background: radial-gradient(circle at 50% 30%, rgba(255, 107, 74, 0.15) 0%, transparent 60%),
            radial-gradient(circle at 80% 10%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 20% 10%, rgba(56, 189, 248, 0.1) 0%, transparent 50%);
    }

    .hero-badge {
        margin-top: 0;
    }

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

    .hero-video {
        margin-bottom: 32px;
    }

    .video-play-button svg {
        width: 90px;
        height: 90px;
    }

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

    .video-placeholder-content svg {
        width: 48px;
        height: 48px;
    }

    .video-placeholder-content p {
        font-size: 1rem;
    }

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

    .hero-cta .btn {
        width: 100%;
        max-width: 340px;
    }

    .stats-grid {
        flex-direction: column;
        gap: 32px;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }

    .demo-header {
        margin-bottom: 32px;
        padding: 0 16px;
    }

    .demo-title {
        font-size: 1.75rem;
    }

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

    .demo-window {
        margin-top: 0;
    }

    .window-content {
        padding: 20px;
    }

    .chat-bubble {
        flex-direction: column;
        gap: 12px;
    }

    .path-card {
        padding: 36px;
    }

    .path-number {
        font-size: 3rem;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-marker {
        width: 40px;
        height: 40px;
    }

    .timeline-item {
        gap: 20px;
    }

    .timeline-content {
        padding: 20px;
    }

    .pricing-card {
        padding: 40px 24px;
    }

    .amount {
        font-size: 4rem;
    }

    .objection-card {
        padding: 40px 24px;
    }

    .cta-card {
        padding: 48px 24px;
    }

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

    .footer-brand {
        text-align: center;
    }

    .footer-brand p {
        max-width: 100%;
    }

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

    .case-study-reverse .case-study-content {
        direction: ltr;
    }

    .case-study-text .section-title {
        text-align: center;
    }

    .case-study-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .video-placeholder-vertical {
        max-width: 250px;
    }

    .screenshots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .screenshots-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
}

/* Mobile - Carousel Style */
@media (max-width: 768px) {
    .screenshots-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        gap: 16px;
        padding: 0 20px 20px 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        margin-top: 48px;
    }

    /* Hide scrollbar for Chrome, Safari and Opera */
    .screenshots-grid::-webkit-scrollbar {
        display: none;
    }

    .screenshot-item {
        flex: 0 0 85%;
        scroll-snap-align: center;
        max-width: 400px;
    }

    .testimonial-screenshot {
        aspect-ratio: 4 / 3;
        width: 100%;
    }

    /* Add scroll indicators */
    .testimonials-screenshots-section {
        position: relative;
    }

    .testimonials-screenshots-section::after {
        content: '← Prevuci prstom →';
        display: block;
        text-align: center;
        color: var(--text-muted);
        font-size: 0.85rem;
        margin-top: 16px;
        opacity: 0.6;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .feature-card,
    .path-card,
    .testimonial-card {
        padding: 28px;
    }
}