/* Base Reset & Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

:root {
    --navy: #0F172A;
    --navy-light: #1E293B;
    --navy-bg: #0B0F19;
    --green: #059669;
    --green-light: #D1FAE5;
    --orange: #D97706;
    --orange-hover: #B45309;
    --orange-light: #FEF3C7;

    --white: #FFFFFF;
    --bg-light: #F8FAFC;
    --text-main: #334155;
    --text-muted: #64748B;
    --border: #E2E8F0;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --radius-md: 0.75rem;
    --radius-lg: 1.25rem;
    --radius-xl: 1.75rem;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.05), 0 8px 10px -6px rgba(15, 23, 42, 0.01);
    --shadow-lg: 0 20px 40px -8px rgba(15, 23, 42, 0.08), 0 12px 15px -8px rgba(15, 23, 42, 0.03);
    --shadow-xl: 0 30px 60px -10px rgba(15, 23, 42, 0.12), 0 20px 25px -10px rgba(15, 23, 42, 0.04);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

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

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

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(16, 185, 129, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 6rem 0;
}

.text-center {
    text-align: center;
}

.text-white {
    color: var(--white) !important;
}

.text-navy {
    color: var(--navy);
}

.text-orange {
    color: var(--orange);
}

.text-green {
    color: var(--green);
}

.text-muted {
    color: var(--text-muted);
}

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

.navy-bg {
    background-color: var(--navy);
}

.bg-green-light {
    background-color: var(--green-light);
}

.bg-navy-light {
    background-color: var(--navy-light);
}

.bg-orange-light {
    background-color: var(--orange-light);
}

.mt-4 {
    margin-top: 1rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.max-w-2xl {
    max-width: 42rem;
}

.font-medium {
    font-weight: 500;
}

.border-top {
    border-top: 1px solid var(--border);
}

.flex-center {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mr-2 {
    margin-right: 0.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.875rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid transparent;
}

.btn-sm {
    padding: 0.6rem 1.35rem;
    font-size: 0.95rem;
}

.btn-primary {
    background: linear-gradient(to right, var(--orange), #EAB308);
    color: var(--white);
    box-shadow: 0 6px 16px -4px rgba(217, 119, 6, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 24px -8px rgba(217, 119, 6, 0.6);
    color: var(--white);
}

.btn-secondary {
    background-color: var(--navy);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background-color: var(--navy-bg);
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
    background-color: var(--navy-light);
    color: var(--white);
    border-color: var(--navy-light);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    padding: 0.75rem 0;
    box-shadow: var(--shadow-sm);
    background: rgba(255, 255, 255, 0.95);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--navy);
}

.logo-icon {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a:not(.btn) {
    font-weight: 500;
    color: var(--text-muted);
    font-size: 1rem;
}

.nav-links a:not(.btn):hover {
    color: var(--orange);
}

.nav-login {
    font-weight: 600 !important;
    color: var(--navy) !important;
}

.nav-login:hover {
    color: var(--orange) !important;
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.fade-left {
    transform: translateX(40px);
}

.fade-left.active {
    transform: translateX(0);
}

/* Sections */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-body {
    font-size: 1.125rem;
    color: var(--text-muted);
}

/* Hero Section */
.hero {
    padding-top: 8rem;
    padding-bottom: 4rem;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at top right, rgba(16, 185, 129, 0.05) 0%, rgba(255, 255, 255, 0) 60%),
        radial-gradient(circle at bottom left, rgba(245, 158, 11, 0.05) 0%, rgba(255, 255, 255, 0) 60%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--green-light);
    color: var(--green);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.hero-headline {
    font-size: 3.75rem;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
    color: var(--navy-bg);
    background: linear-gradient(135deg, var(--navy-bg) 0%, #334155 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subheadline {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hero-microcopy {
    font-size: 0.875rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-microcopy i {
    width: 16px;
    height: 16px;
    color: var(--green);
}

/* Visual Card / Pipeline animation */
.visual-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: var(--shadow-xl);
    border-radius: var(--radius-xl);
    padding: 2.25rem;
    position: relative;
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
}

.visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--green), var(--orange));
}

.visual-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.dots {
    display: flex;
    gap: 6px;
}

.dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #E5E7EB;
}

.dots span:nth-child(1) {
    background: #ff5f56;
}

.dots span:nth-child(2) {
    background: #ffbd2e;
}

.dots span:nth-child(3) {
    background: #27c93f;
}

.visual-title {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--navy);
    font-size: 1.1rem;
}

.flow-step {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s;
}

.flow-step:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.flow-step i {
    color: var(--navy-light);
}

.flow-step.processing {
    border-color: rgba(245, 158, 11, 0.4);
    border-left: 4px solid var(--orange);
}

.flow-step.processing i {
    color: var(--orange);
}

.flow-step.success {
    border-color: rgba(16, 185, 129, 0.4);
    border-left: 4px solid var(--green);
}

.flow-step.success i {
    color: var(--green);
}

.flow-arrow {
    text-align: center;
    padding: 0.75rem 0;
    color: var(--border);
}

.spin {
    animation: spin 3s linear infinite;
}

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

/* Problem Section */
.problem-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.stat-card {
    background: var(--navy);
    color: var(--white);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.stat-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 60%);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 1rem;
}

.stat-text {
    font-size: 1.25rem;
    line-height: 1.4;
    font-weight: 500;
    display: block;
}

.problem-list {
    margin: 2rem 0;
}

.problem-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.icon-red {
    color: #EF4444;
}

.alert-text {
    padding: 1rem 1.5rem;
    background: var(--orange-light);
    border-left: 4px solid var(--orange);
    color: #92400E;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-weight: 500;
}

/* Solution Section */
.solution-container {
    max-width: 800px;
}

.solution-container .section-body {
    color: rgba(255, 255, 255, 0.8);
}

.tagline {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--green);
    margin: 2rem 0;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.step-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
    position: relative;
}

.step-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    border-color: rgba(5, 150, 105, 0.2);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--navy);
}

.step-icon i {
    width: 32px;
    height: 32px;
}

.step-number {
    position: absolute;
    top: 0;
    right: 0;
    width: 28px;
    height: 28px;
    background: var(--orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    border: 2px solid var(--white);
}

.step-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--text-muted);
}

/* Traction Section */
.traction-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.quote-card {
    margin-top: 2rem;
    padding: 2.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.quote-icon {
    position: absolute;
    top: -15px;
    left: 2.5rem;
    width: 40px;
    height: 40px;
    background: var(--orange);
    color: var(--white);
    border-radius: 50%;
    padding: 8px;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
}

.quote-text {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--navy);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.quote-author {
    font-weight: 700;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.video-placeholder {
    aspect-ratio: 16/9;
    background: url('https://images.unsplash.com/photo-1554224155-8d04cb21cd6c?auto=format&fit=crop&q=80') center/cover;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.video-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(31, 41, 55, 0.4);
}

.play-button {
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    cursor: pointer;
    z-index: 1;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.play-button:hover {
    transform: scale(1.1);
    background: var(--orange);
    color: var(--white);
}

.play-button i {
    width: 28px;
    height: 28px;
    margin-left: 4px;
}

.video-placeholder p {
    z-index: 1;
    color: var(--white);
}

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

.benefit-card {
    text-align: left;
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: var(--bg-light);
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.benefit-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

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

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: center;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.pricing-card.popular {
    border: 2px solid var(--orange);
    box-shadow: var(--shadow-xl);
    padding: 4rem 2rem;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: var(--white);
    padding: 0.4rem 1.2rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.plan-name {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
}

.plan-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

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

.plan-features ul li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-main);
    font-weight: 500;
}

.plan-features ul li i {
    width: 20px;
    height: 20px;
    color: var(--green);
}

/* CTA Area */
.glass-box-cta {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(24px);
    border-radius: var(--radius-xl);
    padding: 5rem 2rem;
    box-shadow: var(--shadow-xl);
}

.cta-buttons-wrap {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* Footer */
.footer {
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
}

.footer-links h4,
.footer-social h4 {
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: #9CA3AF;
}

.footer-links ul li a:hover {
    color: var(--orange);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: background 0.3s;
}

.social-icons a:hover {
    background: var(--orange);
}

/* Responsive */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--navy);
    cursor: pointer;
    padding: 0.5rem;
}

@media (max-width: 1024px) {
    .hero-headline {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 992px) {

    .hero-container,
    .problem-container,
    .traction-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero {
        text-align: center;
        padding-top: 8rem;
    }

    .hero-cta-group {
        justify-content: center;
    }

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

    .hero-subheadline {
        margin: 0 auto 2.5rem;
    }

    .stat-card::after {
        display: none;
    }

    .steps-grid,
    .benefits-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .pricing-card.popular {
        padding: 3rem 2rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 4rem 0;
    }

    .hero-headline {
        font-size: 2.25rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 3.5rem;
    }

    .tagline {
        font-size: 1.5rem;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        text-align: center;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-buttons-wrap,
    .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .step-card {
        padding: 2rem 1.5rem;
    }

    .pricing-card {
        padding: 2.5rem 1.5rem;
    }

    .glass-box-cta {
        padding: 3rem 1.5rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .problem-list li {
        font-size: 1rem;
        align-items: flex-start;
    }

    .problem-list li i {
        flex-shrink: 0;
        margin-top: 2px;
    }
}