/* --- Ultra-Long Scroll Narrative Style --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700;900&family=Plus+Jakarta+Sans:wght@300;400;600;700&display=swap');

:root {
    --primary: #ef233c;
    --dark: #1a1a1a;
    --navy: #2b2d42;
    --light: #f8f9fa;
    --white: #ffffff;
    --gray: #64748b;
    --transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body { 
    font-family: 'Plus Jakarta Sans', sans-serif; 
    line-height: 1.8; 
    color: var(--navy);
    background: var(--white);
}

h1, h2, h3 { font-family: 'Outfit', sans-serif; font-weight: 900; text-transform: uppercase; letter-spacing: -1px; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 30px; }
.small-container { max-width: 800px; }
.text-center { text-align: center; }

/* Fixed & Aligned Header */
header {
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid #f0f0f0;
}

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

.logo { font-size: 24px; font-weight: 900; }
.logo span { color: var(--primary); }

.nav-links { 
    display: flex; 
    list-style: none; 
    gap: 30px; 
    align-items: center; 
}

.nav-links a { 
    text-decoration: none; 
    color: var(--dark); 
    font-weight: 700; 
    font-size: 14px; 
    transition: 0.3s; 
}

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

.btn-nav {
    background: var(--primary);
    color: white;
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    transition: 0.3s;
}

.btn-nav:hover { background: var(--dark); transform: translateY(-2px); }

/* Hero Section */
.hero-full {
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle at center bottom, #fffcfc, #f8f9fa);
}

.hero-full h1 { font-size: clamp(40px, 8vw, 84px); line-height: 0.95; margin: 20px 0; }
.highlight { color: var(--primary); }
.badge { background: #fee2e2; color: var(--primary); padding: 8px 24px; border-radius: 50px; font-size: 13px; font-weight: 800; display: inline-block; }

/* Stats Bar */
.stats-bar { padding: 80px 0; background: var(--dark); color: white; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; }
.stat-item h3 { font-size: 48px; color: var(--primary); }
.stat-item p { font-size: 13px; font-weight: 700; text-transform: uppercase; opacity: 0.6; }

/* Narrative Vertical Sections */
.v-section { padding: 150px 0; }
.bg-light { background: var(--light); }

.v-flex { display: flex; align-items: center; gap: 100px; }
.v-flex.reverse { flex-direction: row-reverse; }

.v-image, .v-text { flex: 1; }
.v-image img { width: 100%; border-radius: 25px; box-shadow: 0 30px 60px rgba(0,0,0,0.08); transition: var(--transition); }
.v-image img:hover { transform: translateY(-10px); }

.section-tag { color: var(--primary); font-weight: 800; text-transform: uppercase; font-size: 14px; margin-bottom: 10px; display: block; }
.v-text h2 { font-size: 48px; margin-bottom: 25px; line-height: 1.1; }
.v-text p { font-size: 18px; color: var(--gray); margin-bottom: 30px; }

.feature-list { list-style: none; }
.feature-list li { margin-bottom: 15px; font-weight: 700; display: flex; align-items: center; }
.feature-list i { color: #10b981; margin-right: 15px; font-size: 18px; }

.tag-cloud span { background: var(--navy); color: white; padding: 10px 20px; border-radius: 10px; font-weight: 700; font-size: 13px; margin-right: 10px; display: inline-block; }

.diagram-box { padding: 50px 0; text-align: center; border-bottom: 1px solid #eee; }

/* Testimonials & FAQ */
.testimonial-section { padding: 120px 0; }
.big-quote { font-size: 32px; font-weight: 600; font-style: italic; max-width: 900px; margin: 30px auto; color: var(--dark); line-height: 1.4; }
.quote-icon { font-size: 50px; color: #f0f0f0; margin-bottom: 20px; }

.faq-section { padding: 100px 0; }
.faq-item { background: white; padding: 30px; border-radius: 15px; margin-bottom: 20px; box-shadow: 0 4px 6px rgba(0,0,0,0.02); }
.faq-item h4 { color: var(--primary); margin-bottom: 8px; }

/* Minimalist Clean Footer */
.clean-footer { padding: 40px 0; background: #fff; border-top: 1px solid #f0f0f0; }
.footer-content { display: flex; justify-content: space-between; align-items: center; font-size: 13px; font-weight: 700; color: var(--gray); }

/* Responsive Adjustments */
@media (max-width: 992px) {
    .v-flex, .v-flex.reverse { flex-direction: column; text-align: center; gap: 50px; }
    .hero-full h1 { font-size: 50px; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-content { flex-direction: column; gap: 15px; text-align: center; }
}

@media (max-width: 768px) {
    .nav-links { display: none; } /* Mobile Menu would be added here */
}