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

:root {
    /* Gradient Colors */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-warm: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    --gradient-cool: linear-gradient(135deg, #30cfd0 0%, #330867 100%);

    /* Colors */
    --color-primary: #667eea;
    --color-secondary: #764ba2;
    --color-accent: #4facfe;
    --color-text: #2d3748;
    --color-text-light: #718096;
    --color-bg: #ffffff;
    --color-bg-light: #f7fafc;
    --color-border: #e2e8f0;

    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;

    /* Spacing */
    --section-padding: 100px 20px;
    --container-width: 1200px;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 2;
    opacity: 0.4;
}

/* Animated Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

/* Particle Canvas */
#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Tech Grid Lines */
.tech-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
}

.grid-line {
    position: absolute;
    animation: grid-pulse 4s ease-in-out infinite;
}

.grid-line-1 {
    width: 1px;
    height: 100%;
    left: 20%;
    background: linear-gradient(180deg, transparent, rgba(167,139,250,0.3), transparent);
    animation-delay: 0s;
}

.grid-line-1::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(167,139,250,0.8);
    border-radius: 50%;
    left: -2.5px;
    box-shadow: 0 0 10px rgba(167,139,250,0.8);
    animation: move-vertical 5s linear infinite;
}

.grid-line-2 {
    width: 100%;
    height: 1px;
    top: 30%;
    background: linear-gradient(90deg, transparent, rgba(139,192,250,0.3), transparent);
    animation-delay: 1s;
}

.grid-line-2::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(139,192,250,0.8);
    border-radius: 50%;
    top: -2.5px;
    box-shadow: 0 0 10px rgba(139,192,250,0.8);
    animation: move-horizontal 6s linear infinite;
}

.grid-line-3 {
    width: 1px;
    height: 100%;
    right: 25%;
    background: linear-gradient(180deg, transparent, rgba(250,139,192,0.3), transparent);
    animation-delay: 2s;
}

.grid-line-3::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(250,139,192,0.8);
    border-radius: 50%;
    left: -2.5px;
    box-shadow: 0 0 10px rgba(250,139,192,0.8);
    animation: move-vertical 7s linear infinite 2s;
}

.grid-line-4 {
    width: 100%;
    height: 1px;
    bottom: 35%;
    background: linear-gradient(90deg, transparent, rgba(250,192,139,0.3), transparent);
    animation-delay: 3s;
}

.grid-line-4::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(250,192,139,0.8);
    border-radius: 50%;
    top: -2.5px;
    box-shadow: 0 0 10px rgba(250,192,139,0.8);
    animation: move-horizontal 8s linear infinite 3s;
}

@keyframes move-vertical {
    0% {
        top: 0;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

@keyframes move-horizontal {
    0% {
        left: 0;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

@keyframes grid-pulse {
    0%, 100% {
        opacity: 0.1;
    }
    50% {
        opacity: 0.3;
    }
}

/* Mouse Follower Glow */
.mouse-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(167,139,250,0.1) 30%, transparent 70%);
    pointer-events: none;
    z-index: 3;
    transition: transform 0.15s ease-out;
    opacity: 0;
    filter: blur(40px);
}


/* Gradient Animation */
@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Navigation */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 50px;
    position: relative;
    z-index: 100;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 80px;
    width: auto;
    display: block;
}

.nav-logo-mobile {
    display: none;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    padding: 6px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.lang-btn {
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.7);
    font-weight: 600;
    font-size: 14px;
    padding: 6px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.lang-btn:hover {
    color: white;
    background: rgba(255,255,255,0.1);
}

.lang-btn.active {
    background: rgba(255,255,255,0.25);
    color: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.nav-cta {
    background: rgba(255,255,255,0.2);
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.3);
}

.nav-cta:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

/* Hero Content */
.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 50px 20px;
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    max-width: 900px;
    letter-spacing: -2px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.gradient-text {
    background: linear-gradient(90deg, #fff 0%, #f0e7ff 25%, #fff 50%, #f0e7ff 75%, #fff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    animation: gradient-shimmer 3s ease-in-out infinite;
}

@keyframes gradient-shimmer {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 700px;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 80px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Buttons */
.btn {
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.4), 0 5px 15px rgba(0,0,0,0.2);
    animation: pulse-glow 2s ease-in-out infinite;
}

/* Primary button inside featured pricing card */
.pricing-card.featured .btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
}

.pricing-card.featured .btn-primary:hover {
    background: linear-gradient(135deg, #5568d3 0%, #6941a0 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.5), 0 5px 15px rgba(0,0,0,0.2);
    animation: none;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(102, 126, 234, 0.4), 0 5px 15px rgba(0,0,0,0.2);
    }
    50% {
        box-shadow: 0 10px 50px rgba(102, 126, 234, 0.6), 0 5px 20px rgba(0,0,0,0.3);
    }
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

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

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

.btn-large {
    padding: 20px 50px;
    font-size: 18px;
}

/* Search Demo - Typing Animation */
.search-demo {
    width: 100%;
    max-width: 700px;
    margin-top: 30px;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.search-demo-box {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 60px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.search-demo-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
}

.search-icon {
    font-size: 24px;
    flex-shrink: 0;
    opacity: 0.7;
}

.search-demo-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 18px;
    color: var(--color-text);
    outline: none;
    font-family: var(--font-primary);
    padding: 8px 0;
    caret-color: transparent;
}

.typing-cursor {
    display: inline-block;
    width: 2px;
    height: 24px;
    background: var(--color-primary);
    animation: blink 1s step-end infinite;
    margin-left: -2px;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 80px;
    margin-top: 20px;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: fadeInUp 1s ease-out 1s both;
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 20px;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: scroll-down 2s ease-in-out infinite;
}

@keyframes scroll-down {
    0% {
        opacity: 0;
        top: 8px;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        top: 30px;
    }
}

/* Section Styles */
.section-title {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: -1px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--color-text-light);
    margin-bottom: 60px;
}

/* Container Variants */
.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Screenshot Hero Section */
.screenshot-hero {
    padding: 120px 20px;
    background: var(--color-bg-light);
    overflow: hidden;
}

.screenshot-hero-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.screenshot-hero-text h2 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: -1px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.screenshot-hero-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 30px;
}

.feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.feature-list li {
    font-size: 16px;
    padding: 10px 0;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-list .check {
    color: #48bb78;
    font-weight: 700;
    font-size: 18px;
}

/* API Section */
.api-section {
    padding: 120px 20px;
    background: var(--color-bg-light);
}

.api-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.api-text h2 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: -1px;
    color: var(--color-text);
}

.api-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.api-features {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.api-feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.api-feature-icon {
    font-size: 32px;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.api-feature-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--color-text);
}

.api-feature-item p {
    font-size: 15px;
    color: var(--color-text-light);
    margin: 0;
    line-height: 1.6;
}

/* Code Block Styling */
.code-block {
    background: #1e1e1e;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.code-header {
    background: #2d2d2d;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #3d3d3d;
}

.code-title {
    color: #e0e0e0;
    font-size: 14px;
    font-weight: 600;
}

.code-lang {
    color: #888;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.code-block pre {
    margin: 0;
    padding: 25px;
    overflow-x: auto;
}

.code-block code {
    font-family: 'Monaco', 'Menlo', 'Consolas', monospace;
    font-size: 13px;
    line-height: 1.7;
    color: #d4d4d4;
    display: block;
}

/* Competitive Positioning Section */
.competitive-section {
    padding: 120px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}

.competitive-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

/* Pain Points Grid */
.pain-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 100px;
}

@media (max-width: 1024px) {
    .pain-points {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pain-point-card {
    background: white;
    padding: 35px 28px;
    border-radius: 16px;
    border: 2px solid #fee;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pain-point-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ef4444, #dc2626);
}

.pain-point-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(239, 68, 68, 0.15);
    border-color: #fecaca;
}

.pain-icon {
    font-size: 36px;
    margin-bottom: 18px;
}

.pain-point-card h4 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-text);
}

.pain-point-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-light);
    margin: 0;
}

/* Comparison Table */
.comparison-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.comparison-title {
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comparison-table {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border: 2px solid var(--color-border);
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 700;
    font-size: 15px;
}

.comparison-header .comparison-cell {
    padding: 24px 20px;
    text-align: center;
}

.comparison-header .feature-cell {
    text-align: left;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.solution-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.solution-badge.native {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
}

.solution-badge.thirdparty {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
}

.solution-badge.ours {
    background: rgba(255,255,255,0.95);
    color: #667eea;
    border: 2px solid white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    border-bottom: 1px solid var(--color-border);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row:nth-child(even) {
    background: #fafbfc;
}

.comparison-cell {
    padding: 22px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.comparison-cell.feature-cell {
    justify-content: flex-start;
    font-weight: 600;
    color: var(--color-text);
}

.comparison-cell.highlight {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
    position: relative;
}

.comparison-cell.highlight::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-primary);
}

.check-icon {
    color: #10b981;
    font-size: 24px;
    font-weight: 700;
}

.cross-icon {
    color: #ef4444;
    font-size: 24px;
    font-weight: 700;
}

.text-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.text-badge.partial {
    background: #fef3c7;
    color: #d97706;
}

.text-badge.na {
    background: #f3f4f6;
    color: #9ca3af;
}

.text-badge.limited {
    background: #fee2e2;
    color: #dc2626;
}

.text-badge.varies {
    background: #e0e7ff;
    color: #6366f1;
}

.comparison-cta {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.comparison-note {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-cta .btn {
    margin-top: 10px;
}

/* Responsive Competitive Section */
@media (max-width: 1024px) {
    .comparison-header,
    .comparison-row {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }

    .comparison-cell {
        padding: 18px 12px;
        font-size: 14px;
    }

    .solution-badge {
        font-size: 11px;
        padding: 6px 10px;
    }
}

@media (max-width: 768px) {
    .competitive-section {
        padding: 80px 20px;
    }

    .pain-points {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 60px;
    }

    .comparison-title {
        font-size: 26px;
    }

    .comparison-table {
        overflow-x: auto;
        border-radius: 12px;
    }

    .comparison-header,
    .comparison-row {
        grid-template-columns: 180px 100px 100px 100px;
        min-width: 580px;
    }

    .comparison-cell {
        padding: 16px 10px;
        font-size: 13px;
    }

    .comparison-cell.feature-cell {
        font-size: 13px;
    }

    .solution-badge {
        font-size: 10px;
        padding: 5px 8px;
    }

    .check-icon,
    .cross-icon {
        font-size: 20px;
    }

    .comparison-note {
        font-size: 16px;
    }

    .pain-point-card {
        padding: 28px 24px;
    }

    .pain-point-card h4 {
        font-size: 17px;
    }
}

/* Screenshot Split Sections */
.screenshot-split {
    padding: 120px 20px;
    background: white;
}

.screenshot-split:nth-of-type(even) {
    background: var(--color-bg-light);
}

.screenshot-split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.screenshot-split.reverse .screenshot-split-content {
    direction: rtl;
}

.screenshot-split.reverse .screenshot-split-text,
.screenshot-split.reverse .screenshot-split-image {
    direction: ltr;
}

.eyebrow {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.screenshot-split-text h2 {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: -1px;
    color: var(--color-text);
}

.screenshot-split-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.stats-inline {
    display: flex;
    gap: 50px;
    margin-top: 35px;
}

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

.stat-inline strong {
    font-size: 32px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-inline span {
    font-size: 14px;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Screenshot Box Variants */
.screenshot-box {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border: 1px solid var(--color-border);
    background: white;
    transition: all 0.5s ease;
}

.screenshot-box svg,
.screenshot-box video {
    width: 100%;
    height: auto;
    display: block;
}

.screenshot-box.elevated {
    box-shadow: 0 30px 80px rgba(102, 126, 234, 0.25);
    transform: perspective(1000px) rotateY(-5deg);
}

.screenshot-box.elevated:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-10px);
    box-shadow: 0 40px 100px rgba(102, 126, 234, 0.3);
}

.screenshot-box.floating {
    box-shadow: 0 25px 70px rgba(79, 172, 254, 0.2);
    animation: float 6s ease-in-out infinite;
}

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

.screenshot-box.tilted {
    transform: perspective(1000px) rotateY(5deg) rotateX(-2deg);
    box-shadow: 0 30px 80px rgba(250, 112, 154, 0.2);
}

.screenshot-box.tilted:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    box-shadow: 0 40px 100px rgba(250, 112, 154, 0.25);
}

/* Full-width Screenshot Section */
.screenshot-fullwidth {
    padding: 120px 20px;
    background: white;
}

.screenshot-fullwidth-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.screenshot-fullwidth-header h2 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: var(--color-text);
}

.screenshot-fullwidth-header p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-text-light);
}

.screenshot-box-large {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.15);
    border: 1px solid var(--color-border);
    background: white;
    transition: all 0.5s ease;
}

.screenshot-box-large:hover {
    transform: translateY(-10px);
    box-shadow: 0 50px 120px rgba(0,0,0,0.2);
}

.screenshot-box-large svg,
.screenshot-box-large video {
    width: 100%;
    height: auto;
    display: block;
}

/* Features Section */
.features {
    padding: var(--section-padding);
    background: var(--color-bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

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

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

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

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}

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

/* How It Works */
.how-it-works {
    padding: var(--section-padding);
    background: white;
}

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

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    font-size: 36px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.step h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.step p {
    color: var(--color-text-light);
    line-height: 1.7;
}

/* Pricing Section */
.pricing {
    padding: var(--section-padding);
    background: var(--color-bg-light);
}

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

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 2px solid var(--color-border);
    position: relative;
}

.pricing-card.featured {
    border: 2px solid var(--color-primary);
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.2);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.pricing-header h3 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
}

.price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
}

.currency {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text-light);
    margin-top: 5px;
}

.amount {
    font-size: 56px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.period {
    font-size: 16px;
    color: var(--color-text-light);
    margin-top: 15px;
}

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

.pricing-features li {
    padding: 12px 0;
    color: var(--color-text);
    font-size: 15px;
}

.pricing-features li.disabled {
    color: var(--color-text-light);
    opacity: 0.5;
}

.pricing-note {
    text-align: center;
    color: var(--color-text-light);
    font-size: 14px;
    max-width: 600px;
    margin: 0 auto;
}

/* FAQ Section */
.faq {
    padding: var(--section-padding);
    background: white;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.faq-item:hover {
    border-color: var(--color-primary);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.1);
}

.faq-item.active {
    border-color: var(--color-primary);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.15);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 28px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
}

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

.faq-item.active .faq-question {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    padding-bottom: 20px;
}

.faq-question-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.5;
    flex: 1;
}

.faq-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 300;
    color: var(--color-primary);
    background: rgba(102, 126, 234, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--gradient-primary);
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    padding: 0 32px;
}

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

.faq-answer p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-light);
    margin: 0;
}

/* FAQ Animation on Scroll */
.faq-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.15s; }
.faq-item:nth-child(3) { animation-delay: 0.2s; }
.faq-item:nth-child(4) { animation-delay: 0.25s; }
.faq-item:nth-child(5) { animation-delay: 0.3s; }
.faq-item:nth-child(6) { animation-delay: 0.35s; }
.faq-item:nth-child(7) { animation-delay: 0.4s; }
.faq-item:nth-child(8) { animation-delay: 0.45s; }
.faq-item:nth-child(9) { animation-delay: 0.5s; }
.faq-item:nth-child(10) { animation-delay: 0.55s; }

/* FAQ Responsive */
@media (max-width: 768px) {
    .faq-question {
        padding: 22px 24px;
    }

    .faq-item.active .faq-question {
        padding-bottom: 16px;
    }

    .faq-question-text {
        font-size: 16px;
    }

    .faq-icon {
        width: 28px;
        height: 28px;
        font-size: 24px;
    }

    .faq-answer {
        padding: 0 24px;
    }

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

    .faq-answer p {
        font-size: 15px;
    }
}

/* Partners Section */
.partners {
    padding: 60px 20px;
    background: white;
}

.partners-title {
    text-align: center;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text-light);
    margin-bottom: 40px;
    font-weight: 600;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.partner-logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text-light);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* CTA Section */
.cta {
    padding: 100px 20px;
    background: var(--gradient-cool);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.cta-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* CTA Footer */
.cta-footer {
    margin-top: 40px;
    font-size: 16px;
    opacity: 0.9;
}

.n47-link {
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid rgba(255,255,255,0.5);
    transition: all 0.3s ease;
}

.n47-link:hover {
    border-bottom-color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .screenshot-hero-content,
    .screenshot-split-content,
    .api-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .screenshot-split.reverse .screenshot-split-content {
        direction: ltr;
    }

    .screenshot-box.elevated,
    .screenshot-box.tilted {
        transform: none;
    }

    .screenshot-box.elevated:hover,
    .screenshot-box.tilted:hover {
        transform: translateY(-10px);
    }

    .container-wide {
        padding: 0 20px;
    }

    .screenshot-hero {
        padding: 80px 20px;
    }

    .screenshot-split {
        padding: 80px 20px;
    }

    .screenshot-split-content {
        gap: 40px;
    }

    .screenshot-fullwidth {
        padding: 80px 20px;
    }

    .screenshot-fullwidth-header h2 {
        font-size: 36px;
    }

    .api-section {
        padding: 80px 20px;
    }

    .api-text h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .search-demo {
        max-width: 100%;
    }

    .search-demo-box {
        padding: 16px 24px;
    }

    .search-demo-input {
        font-size: 16px;
    }

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

    .typing-cursor {
        height: 20px;
    }

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

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

    .screenshot-hero-text h2,
    .screenshot-split-text h2 {
        font-size: 32px;
    }

    .screenshot-hero-text p,
    .screenshot-split-text p {
        font-size: 16px;
    }

    .stats-inline {
        gap: 30px;
    }

    .stat-inline strong {
        font-size: 24px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

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

    .nav {
        padding: 20px;
    }

    .nav-logo-desktop {
        display: none;
    }

    .nav-logo-mobile {
        display: block;
        height: 45px;
    }

    .nav-right {
        gap: 15px;
    }

    .language-switcher {
        gap: 4px;
        padding: 4px;
    }

    .lang-btn {
        font-size: 13px;
        padding: 5px 12px;
    }

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

    .screenshot-hero {
        padding: 60px 20px;
    }

    .screenshot-split {
        padding: 60px 20px;
    }

    .scroll-indicator {
        display: none;
    }

    #particle-canvas {
        opacity: 0.5;
    }

    .api-section {
        padding: 60px 20px;
    }

    .api-text h2 {
        font-size: 32px;
    }

    .api-text p {
        font-size: 16px;
    }

    .code-block pre {
        padding: 20px;
    }

    .code-block code {
        font-size: 12px;
    }
}

/* Video Styling */
.screenshot-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: inherit;
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
}

/* Configuration Slider */
.config-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: inherit;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.slider-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea05 0%, #764ba205 100%);
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-caption {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(102, 126, 234, 0.95);
    color: white;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.slider-slide.active .slide-caption {
    opacity: 1;
}

/* Slider Controls */
.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    opacity: 0;
}

.config-slider:hover .slider-control {
    opacity: 1;
}

.slider-control:hover {
    background: white;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    transform: translateY(-50%) scale(1.1);
}

.slider-control:active {
    transform: translateY(-50%) scale(0.95);
}

.slider-control.prev {
    left: 20px;
}

.slider-control.next {
    right: 20px;
}

.slider-control svg {
    color: #667eea;
}

/* Pagination Dots */
.slider-pagination {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.slider-dot.active {
    background: white;
    width: 32px;
    border-radius: 6px;
}

/* Touch feedback */
.config-slider {
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
}

/* Responsive Slider */
@media (max-width: 768px) {
    .slider-control {
        width: 40px;
        height: 40px;
        opacity: 0.8;
    }

    .slider-control.prev {
        left: 10px;
    }

    .slider-control.next {
        right: 10px;
    }

    .slide-caption {
        font-size: 10px;
        padding: 5px 12px;
        top: 12px;
        right: 12px;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }

    .slider-dot.active {
        width: 24px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

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

.feature-card,
.pricing-card,
.step {
    animation: fadeInUp 0.6s ease-out;
}
