/* ====== CSS Variables - Logo inspired (gray+white) ====== */
:root {
    /* Colors - from logo */
    --bg-dark: #1a1a1a;
    --bg-darker: #111111;
    --bg-card: rgba(255, 255, 255, 0.04);
    --bg-card-hover: rgba(255, 255, 255, 0.08);
    --bg-glass: rgba(255, 255, 255, 0.03);
    
    /* Primary - blue only for accent text */
    --primary: #3b82f6;
    --primary-light: #60a5fa;
    --primary-dark: #2563eb;
    --accent: #3b82f6;
    --accent-light: #60a5fa;
    
    /* Gradients - gray+white like logo */
    --gradient-primary: linear-gradient(135deg, #ffffff 0%, #666666 100%);
    --gradient-text: linear-gradient(135deg, #ffffff 0%, #888888 100%);
    --gradient-hero: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
    --gradient-glow: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    --gradient-border: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 100%);
    --gradient-blue: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    
    /* Text */
    --text-white: #ffffff;
    --text-light: #e2e8f0;
    --text-muted: #94a3b8;
    --text-dark: #64748b;
    
    /* Borders */
    --border-color: rgba(255, 255, 255, 0.08);
    --border-light: rgba(255, 255, 255, 0.12);
    
    /* Effects */
    --success: #22c55e;
    --warning: #f59e0b;
    
    /* Typography */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-2xl: 48px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 120px rgba(59, 130, 246, 0.2);
    --shadow-glow-accent: 0 0 80px rgba(139, 92, 246, 0.15);
    
    /* Layout */
    --max-width: 1280px;
    --section-padding: 140px 24px;
}

/* ====== Base Reset ====== */
html.landing-page,
body.landing-page {
    background: #1a1a1a !important;
    background-color: #1a1a1a !important;
}

.landing-page {
    background: #1a1a1a !important;
    background-color: #1a1a1a !important;
    color: var(--text-white);
    font-family: var(--font-main);
    line-height: 1.7;
    overflow-x: hidden;
}

.landing-page * {
    box-sizing: border-box;
}

.landing-page main {
    background: #1a1a1a !important;
}

/* ====== Utility Classes ====== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--section-padding);
    position: relative;
    background: #1a1a1a;
}

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

/* ====== Section Titles ====== */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary-light);
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* ====== HERO SECTION ====== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 24px 100px;
    position: relative;
    overflow: hidden;
    background: #1a1a1a !important;
}

/* Hero background effects */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    pointer-events: none;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.1); }
}

.hero-content {
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    padding: 10px 24px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
}

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

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

.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 32px;
    letter-spacing: -0.03em;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-title .line {
    display: block;
}

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

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.3s both;
}

/* Hero CTA Buttons - White style like lang-btn */
.hero-cta .btn-primary,
.hero-cta .btn-secondary {
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    color: #1a1a1a;
    border: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.hero-cta .btn-primary:hover,
.hero-cta .btn-secondary:hover {
    background: linear-gradient(135deg, #ffffff 0%, #d0d0d0 100%);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* ====== Buttons ====== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 36px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 100px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: #3d7c47;
    color: #ffffff;
    box-shadow: 0 8px 32px rgba(61, 124, 71, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover {
    background: #4a9456;
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(61, 124, 71, 0.4);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-secondary {
    background: #3d7c47;
    backdrop-filter: blur(20px);
    color: #ffffff;
    border: 1px solid rgba(61, 124, 71, 0.3);
}

.btn-secondary:hover {
    background: #4a9456;
    border-color: rgba(74, 148, 86, 0.5);
    transform: translateY(-2px);
}

/* Blue accent button for special CTAs */
.btn-blue {
    background: var(--gradient-blue);
    color: white;
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.35);
}

.btn-blue:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(59, 130, 246, 0.45);
}

/* ====== Hero Visual ====== */
.hero-visual {
    margin-top: 80px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-demo {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.demo-window {
    background: rgba(10, 10, 18, 0.95);
    backdrop-filter: blur(40px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.demo-toolbar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(5, 5, 10, 0.95);
    border-bottom: 1px solid var(--border-color);
}

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

.demo-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.demo-dots span:nth-child(1) { background: #ff5f57; }
.demo-dots span:nth-child(2) { background: #febc2e; }
.demo-dots span:nth-child(3) { background: #28c840; }

.demo-url {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: monospace;
}

.demo-body {
    padding: 32px;
    background: rgba(8, 8, 14, 0.98);
}

.demo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.demo-panel {
    background: rgba(5, 5, 10, 0.9);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
}

.demo-panel-title {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.demo-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 12px;
    width: 100%;
}

.demo-creatives {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.demo-creative {
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.demo-creative:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25) 0%, rgba(139, 92, 246, 0.25) 100%);
    border-color: rgba(59, 130, 246, 0.4);
    transform: scale(1.05);
}

.demo-launch-btn {
    width: 100%;
    margin-top: 20px;
    padding: 16px;
    background: #3d7c47;
    border: none;
    border-radius: var(--radius-md);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.demo-launch-btn:hover {
    background: #4a9456;
    box-shadow: 0 8px 32px rgba(61, 124, 71, 0.4);
    transform: translateY(-2px);
}

/* ====== Partners Section ====== */
.partners {
    padding: 60px 24px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: #1a1a1a !important;
}

.partners-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.partner-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    transition: all 0.3s ease;
}

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

.partner-badge svg {
    width: 24px;
    height: 24px;
}

.partner-badge span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
}

/* ====== Stats Section ====== */
.stats {
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}

.stat-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 40px;
    text-align: center;
    transition: all 0.4s ease;
}

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

.stat-value {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

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

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

/* Pain Cards */
.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.pain-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.pain-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.pain-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 8px;
}

.pain-time {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ====== Steps Section ====== */
.steps {
    background: var(--bg-dark);
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    position: relative;
}

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

.step-number {
    width: 80px;
    height: 80px;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    position: relative;
    transition: all 0.4s ease;
}

.step-number::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.step-card:hover .step-number {
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.step-card:hover .step-number::before {
    opacity: 1;
}

.step-number span {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
}

.step-title {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-white);
}

.step-desc {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ====== Features Section ====== */
.features {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

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

.feature-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 48px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--bg-card-hover);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 28px;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-white);
}

.feature-desc {
    font-size: 1.0625rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ====== Testimonials ====== */
.testimonials {
    background: var(--bg-darker);
}

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

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 40px;
    transition: all 0.4s ease;
}

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

.testimonial-quote {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 28px;
}

.testimonial-quote strong {
    color: var(--primary-light);
}

.testimonial-metric {
    display: inline-block;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: var(--success);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 28px;
}

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

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #444444 0%, #2a2a2a 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
}

.testimonial-name {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 4px;
}

.testimonial-role {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ====== Pricing ====== */
.pricing {
    background: var(--bg-dark);
}

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

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 48px;
    position: relative;
    transition: all 0.4s ease;
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.pricing-card.featured::before {
    content: attr(data-badge);
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    color: #1a1a1a;
    padding: 8px 24px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-card:hover {
    transform: translateY(-8px);
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
}

.pricing-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 8px;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
}

.pricing-desc {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 36px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: 1rem;
}

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

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

/* ====== FAQ ====== */
.faq {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

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

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

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

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 32px;
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

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

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.4s ease;
    font-weight: 300;
}

.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: 400px;
}

.faq-answer-content {
    padding: 0 32px 28px;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
}

/* ====== Final CTA ====== */
.final-cta {
    text-align: center;
    background: var(--bg-darker);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 60%;
    background: var(--gradient-glow);
    pointer-events: none;
}

.final-cta .section-title {
    margin-bottom: 24px;
}

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

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

.final-cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.final-cta-feature::before {
    content: '✓';
    color: var(--success);
    font-weight: 600;
}

/* ====== Header Override ====== */
.landing-page header {
    background: rgba(21, 21, 21, 0.95) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 32px;
}

.landing-page header a {
    color: var(--text-light);
    transition: color 0.3s ease;
}

.landing-page header a:hover {
    color: var(--primary-light);
}

.landing-page .nav-demo {
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    color: #000000 !important;
    border-radius: 100px;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.landing-page .nav-demo:hover {
    background: linear-gradient(135deg, #ffffff 0%, #d0d0d0 100%);
    color: #000000 !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* ====== Footer Override ====== */
.landing-page footer {
    background: #020203 !important;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
}

.landing-page footer a {
    color: var(--text-muted);
}

.landing-page footer a:hover {
    color: var(--primary-light);
}

.landing-page .footer-col-header {
    color: var(--text-white);
}

/* ====== Language Switcher ====== */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    padding: 4px;
}

.lang-btn {
    padding: 8px 14px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 100px;
    transition: all 0.3s ease;
}

.lang-btn.active {
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    color: #1a1a1a;
}

.lang-btn:hover:not(.active) {
    color: var(--text-white);
}

/* ====== Stats Banner ====== */
.stats-banner {
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
    padding: 20px 0;
}

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

.stats-badge {
    font-size: 1.5rem;
}

.stats-text {
    color: var(--text-light);
    font-weight: 500;
}

.stats-number {
    color: #3b82f6;
    font-weight: 700;
}

/* ====== Pain Section Extended ====== */
.pain-section {
    background: #1a1a1a;
}

.pain-desc {
    font-size: 0.8rem;
    color: var(--text-dark);
    margin-top: 8px;
    line-height: 1.4;
}

.pain-summary {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.pain-summary-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 20px 32px;
}

.pain-summary-item.highlight {
    border-color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
}

.pain-summary-icon {
    font-size: 1.5rem;
}

.pain-summary-value {
    font-weight: 600;
    color: var(--text-white);
}

/* ====== Steps Extended ====== */
.steps-footer {
    text-align: center;
    margin-top: 48px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ====== Features Highlight ====== */
.features-highlight {
    background: var(--bg-darker);
    padding: 60px 24px;
}

.features-quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-quick {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

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

.feature-quick-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.feature-quick-title {
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 4px;
}

.feature-quick-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ====== Features List ====== */
.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.feature-list li {
    padding: 8px 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-list li::before {
    content: '✓';
    color: var(--success);
    font-weight: 600;
}

/* ====== Demo CTA ====== */
.demo-cta-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ====== Responsive ====== */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .demo-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 100px 20px;
    }
    
    .hero {
        padding: 120px 20px 80px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 320px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .features-quick-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pain-summary {
        flex-direction: column;
        gap: 16px;
    }
    
    .stats-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .demo-cta-wrapper {
        flex-direction: column;
        align-items: center;
    }
    
    .final-cta-features {
        flex-direction: column;
        gap: 16px;
    }
    
    .partners-content {
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .hero-visual {
        display: none;
    }
    
    .demo-creatives {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pain-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
