/* ===== PROFESSIONAL STYLES - EMERALD GREEN THEME ===== */
:root {
    --bg-cream: #FFFDF7;
    --bg-white: #FFFDF7;
    --bg-light: #FFF9ED;
    --bg-dark: #0a0a0a;
    --bg-card: #ffffff;
    --text-dark: #0f172a;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --accent: #10b981;
    --accent-light: #34d399;
    --accent-dark: #059669;
    --accent-glow: rgba(16, 185, 129, 0.15);
    --success: #10b981;
    --border: rgba(0, 0, 0, 0.08);
    --border-light: rgba(0, 0, 0, 0.05);
    --gradient: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 25px 60px rgba(0, 0, 0, 0.15);
    --glass: rgba(20, 20, 20, 0.7);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #FFFDF7;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== ADVANCED MOTION ANIMATIONS ===== */
@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

@keyframes floatReverse {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(30px) rotate(-5deg);
    }
}

@keyframes pulse {

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

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes moveHorizontal {
    0% {
        transform: translateX(-100px);
    }

    50% {
        transform: translateX(100px);
    }

    100% {
        transform: translateX(-100px);
    }
}

@keyframes moveVertical {
    0% {
        transform: translateY(-50px);
    }

    50% {
        transform: translateY(50px);
    }

    100% {
        transform: translateY(-50px);
    }
}

@keyframes rotateShape {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* ===== ANIMATED BACKGROUND ===== */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.4) 0%, rgba(5, 150, 105, 0.3) 100%);
    top: -200px;
    right: -200px;
    animation: float 15s ease-in-out infinite, pulse 8s ease-in-out infinite;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.3) 0%, rgba(16, 185, 129, 0.2) 100%);
    bottom: -150px;
    left: -150px;
    animation: floatReverse 18s ease-in-out infinite, moveHorizontal 20s ease-in-out infinite;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(4, 120, 87, 0.2) 0%, rgba(16, 185, 129, 0.2) 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 12s ease-in-out infinite;
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    background: var(--gradient);
    opacity: 0.1;
}

.shape-1 {
    width: 60px;
    height: 60px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 20%;
    left: 10%;
    animation: float 10s ease-in-out infinite, rotateShape 20s linear infinite;
}

.shape-2 {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    top: 60%;
    right: 15%;
    animation: floatReverse 12s ease-in-out infinite;
}

.shape-3 {
    width: 80px;
    height: 80px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    top: 30%;
    right: 30%;
    animation: float 14s ease-in-out infinite, rotateShape 25s linear infinite reverse;
}

.shape-4 {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    bottom: 30%;
    left: 25%;
    animation: moveVertical 8s ease-in-out infinite;
}

.shape-5 {
    width: 50px;
    height: 50px;
    border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
    top: 70%;
    left: 60%;
    animation: floatReverse 16s ease-in-out infinite, rotateShape 30s linear infinite;
}

/* ===== SCROLL ANIMATIONS ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays for children */
.animate-on-scroll:nth-child(1) {
    transition-delay: 0s;
}

.animate-on-scroll:nth-child(2) {
    transition-delay: 0.1s;
}

.animate-on-scroll:nth-child(3) {
    transition-delay: 0.2s;
}

.animate-on-scroll:nth-child(4) {
    transition-delay: 0.3s;
}

.animate-on-scroll:nth-child(5) {
    transition-delay: 0.4s;
}

.animate-on-scroll:nth-child(6) {
    transition-delay: 0.5s;
}

/* ===== NAVIGATION (GLASSMORPHISM) ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(30, 101, 109, 0.85);
    /* Semi-transparent teal */
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background: rgba(22, 78, 84, 0.95);
    /* Darker teal with more opacity */
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
}

.logo-icon {
    font-size: 28px;
}

.logo-text {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
    position: relative;
}

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

.nav-links a:hover {
    color: white;
}

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

/* Auth Buttons */
.nav-auth-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-login-btn {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-login-btn:hover {
    color: white;
}

.nav-signup-btn {
    padding: 10px 24px;
    background: white;
    /* User requested White */
    color: #1E656D;
    /* Teal text to match header */
    text-decoration: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-signup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background: #f8fafc;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 24px;
    cursor: pointer;
}

/* ===== HERO SECTION (CREAM/IVORY) ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 24px 100px;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    background: linear-gradient(180deg, #FFFDF7 0%, #FFF9EE 100%);
}

/* Soft gradient background */
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -20%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(5, 150, 105, 0.1) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    flex: 1;
    max-width: 560px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-dark);
    margin-bottom: 28px;
}

.hero-badge::before {
    content: '✨';
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -2px;
    color: var(--text-dark);
}

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

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

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

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--text-dark);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-large {
    padding: 18px 40px;
    font-size: 17px;
}

.btn-arrow {
    transition: transform 0.2s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* Download button special styles */
.btn-download:hover .btn-arrow {
    transform: translateY(3px);
    animation: bounceDown 0.5s ease-in-out infinite;
}

@keyframes bounceDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(3px);
    }
}

.btn-icon {
    font-size: 18px;
}

/* Professional Download Button */
.btn-download-pro {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    text-decoration: none;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-download-pro:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
}

.btn-download-pro .windows-icon {
    width: 28px;
    height: 28px;
    opacity: 0.9;
}

.btn-download-pro .btn-text-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.btn-download-pro .btn-subtitle {
    font-size: 11px;
    font-weight: 500;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-download-pro .btn-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.1;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 40px;
}

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

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

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

/* Hero Visual - App Preview (FLOATING ANIMATION) */
.hero-visual {
    flex: 1;
    max-width: 520px;
}

.app-preview {
    background: #0F172A;
    /* Rich Dark Slate */
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.5);
    /* Colored shadow */
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease;
    animation: floatCard 6s ease-in-out infinite;
    /* Added floating */
}

.app-preview:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    animation-play-state: paused;
    /* Pause float on hover */
}

.preview-toolbar {
    padding: 14px 18px;
    background: #1E293B;
    /* Lighter Slate */
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.preview-title {
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    /* Pure White */
    letter-spacing: 0.5px;
}

.preview-content {
    padding: 28px;
    background: #0F172A;
    /* Match card bg */
}

.preview-question {
    background: #1E293B;
    /* Lighter Slate */
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.6;
    color: #ffffff;
    /* Pure White */
}

.q-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.preview-answer {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.08) 100%);
    border-radius: 16px;
    padding: 20px;
    font-size: 15px;
    line-height: 1.7;
    border-left: 4px solid var(--accent);
    color: #ffffff;
    /* Pure White */
}

.a-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--success);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.preview-answer p {
    margin-bottom: 10px;
    color: var(--text-secondary);
}

/* ===== HERO CHAT CARD (Parakeet Style) ===== */
.hero-chat-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    width: 100%;
    max-width: 480px;
    animation: floatCard 4s ease-in-out infinite;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.chat-header {
    padding: 16px 20px;
    background: #F8FAFC;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-dot {
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.chat-title {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 14px;
    flex: 1;
}

.chat-status {
    font-size: 12px;
    color: var(--accent);
}

.chat-messages {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.chat-question,
.chat-answer {
    display: flex;
    gap: 12px;
}

.chat-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    flex-shrink: 0;
}

.chat-avatar.q {
    background: #E0E7FF;
    color: #4338CA;
}

.chat-avatar.a {
    background: var(--accent-glow);
    color: var(--accent);
}

.chat-bubble {
    padding: 14px 18px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.6;
}

.question-bubble {
    background: #F8FAFC;
    border: 1px solid var(--border-light);
}

.question-bubble p {
    margin: 0;
    color: var(--text-dark);
}

.answer-bubble {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(5, 150, 105, 0.05) 100%);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.answer-bubble p {
    margin: 0 0 8px;
    color: var(--text-secondary);
}

.answer-bubble p:last-child {
    margin-bottom: 0;
}

.answer-bubble strong {
    color: var(--accent);
}

.chat-typing {
    padding: 16px 24px;
    border-top: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 8px;
    background: #FAFAFA;
}

.typing-dot {
    width: 6px;
    height: 6px;
    background: var(--text-muted);
    border-radius: 50%;
    animation: typingBounce 1.4s infinite both;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingBounce {

    0%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }
}

.typing-text {
    font-size: 13px;
    color: var(--text-muted);
    margin-left: 4px;
}

/* ===== SECTIONS COMMON ===== */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.section-badge {
    display: inline-block;
    padding: 8px 18px;
    background: var(--accent-glow);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 12px;
    /* Reduced from 20px */
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

/* Holographic Shine Animation */
.section-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            transparent 0%,
            rgba(255, 255, 255, 0.6) 50%,
            transparent 100%);
    transform: skewX(-25deg);
    animation: holographicShine 3s infinite ease-in-out;
    pointer-events: none;
}

@keyframes holographicShine {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 12px;
    /* Reduced from 20px */
    letter-spacing: -1px;
    color: var(--text-dark);
}

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

/* ===== FEATURES ===== */
.features {
    padding: 120px 0;
    background: var(--bg-light);
}

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

.feature-card {
    background: #6A8283;
    /* User requested Teal/Grey */
    border-radius: 24px;
    padding: 36px;
    transition: all 0.4s ease;
    border: 1px solid transparent;
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-glow);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-glow);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
    color: white;
}

.feature-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    /* Light text for contrast */
    line-height: 1.7;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 60px 0;
    background: white;
}

.steps-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
}

.how-it-works .section-header {
    margin-bottom: 30px;
    /* Reduced gap between title and steps */
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 320px;
    padding: 10px 20px;
    /* Reduced from 40px 24px */
}

.step-number {
    width: 72px;
    height: 72px;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin-bottom: 28px;
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.3);
}

.step-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--text-dark);
}

.step-content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.step-connector {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
    margin-top: 56px;
    border-radius: 2px;
}

/* ===== PRICING ===== */
.pricing {
    padding: 60px 0;
    background: var(--bg-light);
}

.pricing .section-header {
    margin-bottom: 40px;
    /* Reduced from 80px */
}

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

.pricing-card {
    background: #6A8283;
    /* User requested Teal/Grey */
    border-radius: 24px;
    padding: 36px;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
    border-color: var(--accent);
    box-shadow: 0 8px 40px rgba(99, 102, 241, 0.2);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    background: var(--gradient);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    color: white;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

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

.pricing-header h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.price-amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-dark);
}

.pricing-duration {
    font-size: 15px;
    color: rgba(0, 0, 0, 0.6);
    /* Darker text */
    margin-top: 8px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 28px;
}

.pricing-features li {
    padding: 12px 0;
    font-size: 15px;
    color: rgba(0, 0, 0, 0.7);
    /* Darker text */
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li::before {
    content: '✓';
    color: var(--success);
    font-weight: 700;
}

.pricing-card .btn {
    width: 100%;
}

.pricing-card .btn-primary {
    background: black;
    /* User requested Black */
    color: white;
    /* User requested White */
    border: none;
}

.pricing-card .btn-primary:hover {
    background: #333;
    /* Dark Grey hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* ===== FAQ ===== */
.faq {
    padding: 60px 0;
    /* Reduced from 120px */
    background: white;
}

.faq-list {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-light);
}

.faq-question {
    width: 100%;
    padding: 28px 0;
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s ease;
}

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

.faq-icon {
    font-size: 20px;
    color: var(--accent);
    transition: transform 0.3s ease;
    font-weight: 400;
}

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

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

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding-bottom: 28px;
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===== CTA ===== */
.cta {
    padding: 60px 0;
    /* Reduced from 120px */
    background: linear-gradient(180deg, #FFF9EE 0%, #FEF3E2 100%);
    text-align: center;
}

.cta h2 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.cta p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

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

.cta .btn-primary:hover {
    background: var(--accent-dark);
    color: white;
}

/* ===== FOOTER ===== */
.footer {
    padding: 32px 0 0;
    background: #0F172A;
    color: white;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    gap: 80px;
}

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

.footer-brand .logo-text {
    font-size: 22px;
    background: white;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-brand p {
    margin-top: 20px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

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

.footer-column h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 24px;
    color: white;
}

.footer-column a {
    display: block;
    padding: 10px 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    margin-top: 40px;
    padding: 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
    }

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

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

    .hero-visual {
        max-width: 100%;
    }

    .app-preview {
        transform: none;
    }

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

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

    .steps-container {
        flex-direction: column;
        align-items: center;
    }

    .step-connector {
        width: 3px;
        height: 50px;
        margin-top: 0;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

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

    .hero-title {
        font-size: 40px;
    }

    .section-title {
        font-size: 32px;
    }

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

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

    .footer-links {
        flex-direction: column;
        gap: 40px;
    }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: 120px 0;
    background: white;
}

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

.testimonial-card {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

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

.testimonial-card.featured {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(5, 150, 105, 0.05) 100%);
    border-color: var(--accent);
}

.testimonial-stars {
    font-size: 18px;
    margin-bottom: 16px;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-style: italic;
}

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

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

.author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
}

.author-title {
    font-size: 13px;
    color: var(--text-muted);
}

.testimonial-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 20px;
}

.t-stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.t-stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--accent);
}

.t-stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

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

    .testimonial-stats {
        flex-direction: column;
        gap: 30px;
    }
}

/* ===== DEMO VIDEO SECTION ===== */
.demo-section {
    padding: 120px 0;
    background: var(--bg-light);
}

.demo-video-container {
    max-width: 900px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: #0f172a;
}

.video-placeholder {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    cursor: pointer;
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: var(--accent);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.4);
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 15px 50px rgba(16, 185, 129, 0.5);
}

.play-icon {
    font-size: 32px;
    color: white;
    margin-left: 5px;
}

.video-duration {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
}

.demo-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.demo-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: white;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
}

.demo-feature-icon {
    font-size: 20px;
}

@media (max-width: 768px) {
    .demo-features {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}

/* ===== COMPARISON TABLE ===== */
.compare-section {
    padding: 120px 0;
    background: white;
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    min-width: 700px;
}

.comparison-table th,
.comparison-table td {
    padding: 20px 24px;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

.comparison-table th {
    background: var(--bg-light);
    font-weight: 600;
    font-size: 15px;
    color: var(--text-dark);
}

.comparison-table th.feature-col {
    text-align: left;
    width: 220px;
}

.comparison-table th.oculis-col {
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
}

.brand-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-weight: 700;
    color: var(--accent);
}

.comparison-table td {
    font-size: 15px;
    color: var(--text-secondary);
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--text-dark);
}

.comparison-table td.oculis-col {
    background: rgba(16, 185, 129, 0.03);
}

.comparison-table tbody tr:hover {
    background: var(--bg-light);
}

.check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--success-light);
    color: var(--success);
    border-radius: 50%;
    font-weight: 700;
}

.cross {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #FEE2E2;
    color: #DC2626;
    border-radius: 50%;
    font-weight: 700;
}

.partial {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #FEF3C7;
    color: #D97706;
    border-radius: 50%;
    font-weight: 700;
}

@media (max-width: 768px) {

    .comparison-table th,
    .comparison-table td {
        padding: 14px 12px;
        font-size: 13px;
    }
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 20px 24px;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    display: block;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

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

.cookie-content p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

.cookie-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.cookie-link {
    font-size: 14px;
    color: var(--accent);
    text-decoration: underline;
}

/* ===== TOAST NOTIFICATIONS ===== */
.toast-container {
    position: fixed;
    top: 100px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toast {
    min-width: 300px;
    padding: 16px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

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

.toast.success {
    border-left: 4px solid var(--success);
}

.toast.error {
    border-left: 4px solid #DC2626;
}

.toast.info {
    border-left: 4px solid var(--accent);
}

.toast-icon {
    font-size: 20px;
}

.toast-message {
    flex: 1;
    font-size: 14px;
    color: var(--text-dark);
}

.toast-close {
    background: none;
    border: none;
    font-size: 18px;
    color: var(--text-muted);
    cursor: pointer;
}

/* ===== LOADING SKELETON ===== */
.skeleton {
    background: linear-gradient(90deg, var(--bg-light) 25%, #e2e8f0 50%, var(--bg-light) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 8px;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.skeleton-text {
    height: 16px;
    margin-bottom: 8px;
}

.skeleton-title {
    height: 32px;
    width: 60%;
    margin-bottom: 16px;
}

.skeleton-card {
    height: 200px;
    border-radius: 16px;
}

/* Testimonials Section Background */
.testimonials {
    background: #f5f5f5;
    padding: 80px 0;
}

.testimonial-card {
    background: #FFF3E0 !important;
}

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

/* Pricing Guarantee Text */
.pricing-guarantee {
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: 32px;
    padding: 16px;
    background: var(--accent-glow);
    border-radius: 8px;
    font-weight: 500;
}