:root {
    --bg-darker: #080b14;
    --bg-dark: #0d1117;
    --bg-card: rgba(17, 22, 35, 0.7);
    --border-color: rgba(255, 255, 255, 0.07);
    
    --text-primary: #f0f4f8;
    --text-secondary: #8b9ab5;
    
    --accent-blue: #38bdf8;
    --accent-green: #10b981;
    --gradient-primary: linear-gradient(135deg, #06b6d4 0%, #3b82f6 50%, #8b5cf6 100%);
    --gradient-glow: linear-gradient(135deg, rgba(6, 182, 212, 0.35) 0%, rgba(59, 130, 246, 0.35) 50%, rgba(139, 92, 246, 0.25) 100%);
    
    --font-sans: 'DM Sans', -apple-system, system-ui, sans-serif;
    --font-display: 'Outfit', 'DM Sans', sans-serif;
}

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

body.dark-theme {
    background-color: var(--bg-darker);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}
html { overflow-x: hidden; width: 100%; }

body.dark-theme::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ── Typography ── */
h1, h2, h3 {
    font-family: var(--font-display);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; letter-spacing: -0.02em; font-weight: 800; }
h2 { font-size: 2.5rem; font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; color: #fff; }

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

/* ── Layout ── */
.nav-container, .hero-container, .section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section { padding: 6rem 0; }

/* ── Navbar ── */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(8, 11, 20, 0.75);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo-img { height: 32px; width: auto; }
.brand-text {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-display);
    letter-spacing: -0.5px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lang-switcher {
    display: flex;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 4px;
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s;
}

.lang-btn.active {
    background: var(--bg-card);
    color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.25), 0 0 0 1px rgba(255,255,255,0.05) inset;
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover::before { left: 100%; }

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(6, 182, 212, 0.35), 0 0 0 1px rgba(255,255,255,0.08) inset;
}

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

.btn-outline:hover {
    background: rgba(255,255,255,0.05);
}

.btn-lg { padding: 1rem 2rem; font-size: 1.1rem; border-radius: 12px; }
.btn-xl { padding: 1.2rem 2.5rem; font-size: 1.2rem; border-radius: 12px; }

/* ── CTA Bottom ── */
.cta-section {
    padding: 6rem 0;
    text-align: center;
    overflow: hidden;
}

/* ── Hero ── */
.hero-section {
    padding-top: 6rem;
    padding-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

/* Background Glow */
.hero-section::before {
    content: '';
    position: absolute;
    top: -30%; right: -15%;
    width: 800px; height: 800px;
    background: var(--gradient-glow);
    filter: blur(140px);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.5;
    animation: heroGlow 8s ease-in-out infinite alternate;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -20%; left: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2), transparent 70%);
    filter: blur(100px);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.4;
}

@keyframes heroGlow {
    0% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    100% { transform: translate(30px, -20px) scale(1.1); opacity: 0.35; }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.hero-content {
    padding-top: 2rem;
}

.badge-new {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #60a5fa;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-cta-group { margin-bottom: 1.5rem; }

.cta-note {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.hero-audience {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: #cbd5e1;
    font-weight: 500;
}

/* Hero Visuals */
.hero-visual {
    position: relative;
}

.glass-mockup {
    background: rgba(12, 16, 28, 0.8);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.6), 0 0 40px rgba(6, 182, 212, 0.05);
    backdrop-filter: blur(20px);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.glass-mockup:hover {
    transform: translateY(-4px);
    box-shadow: 0 35px 70px -15px rgba(0, 0, 0, 0.7), 0 0 50px rgba(6, 182, 212, 0.08);
}

.mockup-header {
    background: rgba(0,0,0,0.3);
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.dots span {
    display: inline-block;
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #475569;
    margin-right: 6px;
}

.mockup-body {
    position: relative;
    padding: 0;
}

.mockup-img {
    width: 100%;
    display: block;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

.floating-card {
    position: absolute;
    bottom: -20px;
    left: -30px;
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    animation: float 6s ease-in-out infinite;
}

.ai-icon { font-size: 24px; }
.ai-text strong { display: block; font-size: 14px; color: #fff; }
.ai-text span { font-size: 12px; color: var(--accent-green); }

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

/* ── Global Parallax Backgrounds ── */
#global-parallax-container {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: -10;
    pointer-events: none;
    overflow: hidden;
}

.global-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 0.8s ease, transform 0.5s ease-out;
    will-change: opacity, transform;
}

.global-bg.active {
    opacity: 1;
}

.global-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    /* Overlay for consistent readability over any image */
    background: rgba(8, 11, 20, 0.65);
    z-index: 1;
}

/* ── Parallax Transition ── */
.parallax-transition {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Removed clip-path and fixed bg from here */
}

.parallax-content {
    text-align: center;
    z-index: 1;
    max-width: 800px;
}

.parallax-text {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 800;
    opacity: 0.1;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.parallax-text-1 {
    color: #fff;
    margin-bottom: 1rem;
}

.parallax-text-2 {
    color: #cbd5e1;
}

/* ── Sections Transparency ── */
.features-section, .gallery-section, .pricing-section, .indie-promo-section, .cta-section { 
    background: rgba(8, 11, 20, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.03);
}

.section-header { text-align: center; max-width: 600px; margin: 0 auto 4rem; position: relative; z-index: 2; }
.section-header p { color: var(--text-secondary); font-size: 1.1rem; }

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

.feature-card {
    background: rgba(12, 16, 28, 0.6);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(56, 189, 248, 0.15);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 30px rgba(56, 189, 248, 0.05);
}

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

.feature-icon {
    width: 50px; height: 50px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}
.icon-blue { background: rgba(59,130,246,0.1); color: #60a5fa; }
.icon-green { background: rgba(16,185,129,0.1); color: #34d399; }
.icon-purple { background: rgba(168,85,247,0.1); color: #c084fc; }

.feature-card p { color: var(--text-secondary); font-size: 0.95rem; }

/* ── Split Layout (Mobile First) ── */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.check-list { list-style: none; margin-top: 2rem; }
.check-list li {
    display: flex; align-items: flex-start; gap: 12px;
    margin-bottom: 1rem; color: #e2e8f0; font-size: 1.05rem;
}
.check-icon {
    background: var(--accent-green);
    color: #fff;
    width: 24px; height: 24px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: bold; flex-shrink: 0;
}

.perspective-panel {
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    box-shadow: -20px 20px 40px rgba(0,0,0,0.6);
    transition: transform 0.5s ease;
}
.perspective-panel:hover { transform: perspective(1000px) rotateY(-5deg) rotateX(2deg); }

/* ── Indie Promo Section ── */
.indie-promo-section {
    padding: 6rem 0;
    position: relative;
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.badge-indie {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #34d399;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.indie-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15), transparent 60%);
    width: 600px;
    height: 600px;
    z-index: -1;
    pointer-events: none;
}

/* ── AI Generator Demo ── */
.ai-demo-section {
    padding: 6rem 0;
    background: rgba(8, 11, 20, 0.85); /* Slightly darker for contrast */
    backdrop-filter: blur(15px);
}

.ai-demo-form {
    padding: 2rem;
    margin-top: 2rem;
    border: 1px solid rgba(56, 189, 248, 0.2);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3), inset 0 0 20px rgba(56, 189, 248, 0.05);
}

.form-row {
    display: flex; gap: 1rem;
}
.form-row .form-group { flex: 1; }

.form-group { margin-bottom: 1.5rem; }
.form-group label {
    display: block; font-size: 0.85rem; font-weight: 600;
    color: var(--text-secondary); margin-bottom: 0.5rem;
    text-transform: uppercase; letter-spacing: 0.5px;
}
.demo-input {
    width: 100%;
    background: rgba(8, 11, 20, 0.8);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}
.demo-input:focus {
    outline: none;
    border-color: rgba(56, 189, 248, 0.5);
    box-shadow: 0 0 0 2px rgba(56, 189, 248, 0.2);
}

.ai-demo-result-card {
    background: rgba(12, 16, 28, 0.9);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    overflow: hidden;
    min-height: 400px;
    display: flex; flex-direction: column;
}

.perspective-panel-light {
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    box-shadow: -15px 15px 30px rgba(0,0,0,0.5), 0 0 40px rgba(56, 189, 248, 0.05);
    transition: transform 0.5s ease;
}
.perspective-panel-light:hover { transform: perspective(1000px) rotateY(-2deg) rotateX(1deg); }

.ai-demo-header {
    background: rgba(8, 11, 20, 0.8);
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.ai-status {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.85rem; color: var(--text-secondary);
}
.status-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #64748b;
    transition: background 0.3s;
}
.status-dot.active {
    background: #38bdf8;
    box-shadow: 0 0 8px #38bdf8;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.ai-demo-body {
    flex: 1; padding: 2rem;
    position: relative;
}

.placeholder-state {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.2); text-align: center; height: 100%; min-height: 300px;
}
.placeholder-state svg { margin-bottom: 1rem; }

.skeleton-line {
    height: 12px; background: rgba(255,255,255,0.05);
    border-radius: 6px; margin-bottom: 1rem;
    animation: skeleton-shimmer 2s infinite linear;
    background-image: linear-gradient(90deg, rgba(255,255,255,0.05) 0px, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.05) 100%);
    background-size: 200% 100%;
}
.skeleton-title { height: 24px; width: 60%; margin-bottom: 2rem; }
.w-75 { width: 75%; }
.w-50 { width: 50%; }
.skeleton-block {
    height: 80px; background: rgba(255,255,255,0.03);
    border-radius: 8px; margin: 1.5rem 0;
}

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

.ai-result-badge {
    display: inline-block; padding: 4px 10px;
    background: rgba(56, 189, 248, 0.1); color: #38bdf8;
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: 20px; font-size: 0.75rem; font-weight: 600;
    margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.5px;
}

#res-title { font-size: 1.5rem; margin-bottom: 0.25rem; color: #fff; }
.res-meta { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 2rem; }

.res-day h5 { color: #10b981; margin-bottom: 1rem; font-size: 1rem; }
.res-exercises { list-style: none; padding: 0; margin: 0; }
.res-exercises li {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.95rem;
}
.res-exercises li strong { color: #e2e8f0; font-weight: 500; }
.res-exercises li span { color: var(--text-secondary); font-size: 0.85rem; }

.res-fade-out {
    position: absolute; bottom: 0; left: 0; right: 0; height: 80px;
    background: linear-gradient(to bottom, transparent, rgba(12, 16, 28, 0.9));
    pointer-events: none;
}

/* ── App Gallery ── */
.gallery-section {
    padding: 6rem 0;
    overflow: hidden;
    position: relative;
}
.gallery-section::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 600px; height: 400px;
    background: radial-gradient(ellipse, rgba(56, 189, 248, 0.08), transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.app-gallery {
    display: flex; gap: 1.25rem; align-items: stretch;
    overflow-x: auto; scroll-snap-type: x mandatory;
    padding: 2rem 0 2rem; margin-top: 1rem;
    scrollbar-width: none; -ms-overflow-style: none;
}
.app-gallery::-webkit-scrollbar { display: none; }
.app-gallery img {
    height: 480px; width: auto; border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    scroll-snap-align: center;
    flex-shrink: 0;
}
.app-gallery img:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 30px rgba(56, 189, 248, 0.06);
}

/* ── Pricing ── */
.pricing-section {
    padding: 6rem 0;
    position: relative;
}

.billing-toggle {
    display: flex; align-items: center; justify-content: center; gap: 1rem;
    margin: 2rem 0 3rem; color: var(--text-secondary); font-weight: 500;
}
.billing-toggle span.active { color: #fff; }

.badge-save {
    background: rgba(16, 185, 129, 0.2); color: #34d399; font-size: 0.65rem;
    padding: 2px 8px; border-radius: 12px; margin-left: 6px; position:relative; top:-2px;
}

/* Switch Styles */
.switch { position: relative; display: inline-block; width: 50px; height: 26px; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider {
    position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0;
    background-color: #1e293b; transition: .4s;
}
.slider:before {
    position: absolute; content: ""; height: 20px; width: 20px;
    left: 3px; bottom: 3px; background-color: white; transition: .4s;
}
input:checked + .slider { background-color: var(--accent-blue); }
input:checked + .slider:before { transform: translateX(24px); }
.slider.round { border-radius: 34px; }
.slider.round:before { border-radius: 50%; }

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

.pricing-card {
    background: rgba(12, 16, 28, 0.7);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 3rem 2rem;
    position: relative;
    display: flex; flex-direction: column;
    min-height: 500px;
    backdrop-filter: blur(12px);
    transition: all 0.4s ease;
}

.pricing-card:hover {
    border-color: rgba(255,255,255,0.1);
    transform: translateY(-4px);
}

.pricing-card.premium {
    border-color: rgba(56, 189, 248, 0.3);
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.9) 0%, rgba(8, 11, 20, 0.95) 100%);
    box-shadow: 0 10px 50px -10px rgba(56, 189, 248, 0.2), 0 0 30px rgba(56, 189, 248, 0.05);
    z-index: 2;
    transform: scale(1.05);
}

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

.pricing-card.indie {
    border-color: rgba(255,255,255,0.05);
}

.popular-badge {
    position: absolute; top: 0; left: 50%;
    transform: translate(-50%, -50%);
    background: var(--accent-blue);
    color: #fff; font-size: 0.8rem; font-weight: bold;
    padding: 4px 16px; border-radius: 20px;
}

.price-title { font-size: 1.25rem; margin-bottom: 1rem; color: var(--text-secondary); }
.price-value { font-size: 3rem; font-weight: 800; font-family: var(--font-display); color: #fff; margin-bottom: 0.5rem; }
.price-currency { font-size: 1.25rem; font-weight: 500; }
.price-freq { font-size: 1rem; color: var(--text-secondary); font-weight: 400; }

.pricing-card p { color: var(--text-secondary); margin-bottom: 2rem; font-size: 0.95rem; }
.pricing-card .btn { margin-top: auto; }

.pricing-loader {
    width: 100%; text-align: center; color: var(--text-secondary); padding: 3rem;
    font-style: italic; border: 1px dashed var(--border-color); border-radius: 12px;
}

/* ── Final CTA ── */
.final-cta { position: relative; }
.final-cta::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 500px; height: 300px;
    background: radial-gradient(ellipse, rgba(6, 182, 212, 0.12), transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.final-cta h2 { font-size: 3rem; margin-bottom: 1rem; }
.final-cta p { font-size: 1.25rem; color: var(--text-secondary); margin-bottom: 3rem; }
.text-center { text-align: center; }

/* ── Footer ── */
.footer { border-top: 1px solid var(--border-color); padding: 4rem 0 2rem; }
.footer-top {
    display: flex; justify-content: space-between;
    margin-bottom: 3rem;
}
.footer-brand p { color: var(--text-secondary); font-size: 0.9rem; max-width: 300px; margin-top: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links strong { color: #fff; margin-bottom: 0.5rem; }
.footer-links a { color: var(--text-secondary); font-size: 0.95rem; }
.footer-links a:hover { color: #fff; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05); padding-top: 2rem;
    text-align: center; color: var(--text-secondary); font-size: 0.85rem;
}

/* ── WhatsApp Float ── */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    color: #FFF;
}

/* WhatsApp Tooltip */
.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background-color: rgba(30, 41, 59, 0.9);
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    font-family: var(--font-sans);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -5px;
    transform: translateY(-50%);
    border-width: 5px 0 5px 5px;
    border-style: solid;
    border-color: transparent transparent transparent rgba(30, 41, 59, 0.9);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}


/* ── Responsive ── */
@media (max-width: 900px) {
    h1 { font-size: 2.5rem; }
    .hero-container, .split-layout { grid-template-columns: 1fr; gap: 3rem; }
    .hero-section { padding-top: 8rem; text-align: center; }
    .hero-subtitle { margin: 0 auto 2.5rem; }
    .hero-cta-group { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
    .floating-card { left: 50%; transform: translateX(-50%); bottom: -20px; animation: none; }
    
    .features-grid { grid-template-columns: 1fr; }
    
    .pricing-cards { 
        display: flex; flex-direction: column; gap: 2rem; 
    }
    .pricing-card.premium { transform: scale(1); }
    .pricing-card.premium:hover { transform: translateY(-4px); }
    
    .split-layout .split-visual { order: -1; }
    .ai-demo-section .split-layout .split-visual { order: 2; }
    .footer-top { flex-direction: column; gap: 2rem; }
    
    .form-row { flex-direction: column; gap: 1rem; }
    .parallax-text { font-size: 2rem; }
    
    .app-gallery img { height: 350px; }
}

@media (max-width: 480px) {
    .nav-container { padding: 0 1rem; }
    .nav-logo-img { height: 28px; }
    .nav-actions { gap: 0.5rem; }
    .lang-btn { font-size: 0.75rem; padding: 4px 6px; }
    .btn.btn-outline { padding: 0.4rem 0.6rem; font-size: 0.8rem; white-space: nowrap; }
    
    .hero-section { padding-top: 6rem; padding-bottom: 3rem; }
    h1 { font-size: 2rem; }
    .app-gallery img { height: 280px; }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

/* ── Scroll Reveal Animations ── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

