@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
    --hurrah-purple: #b794f6;
    --hurrah-blue: #7dd3fc;
    --hurrah-green: #86efac;
    --hurrah-yellow: #fde047;
    --hurrah-orange: #fdba74;
    --hurrah-red: #fca5a5;
    --gradient-primary: linear-gradient(135deg, var(--hurrah-purple) 0%, var(--hurrah-blue) 25%, var(--hurrah-green) 50%, var(--hurrah-yellow) 75%, var(--hurrah-orange) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--hurrah-blue) 0%, var(--hurrah-green) 50%, var(--hurrah-yellow) 100%);
}

#mvp-landing-page {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Hero Section */
.hero-mvp {
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero-mvp::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.05;
    transform: skewX(-15deg);
    transform-origin: top;
}

.hero-mvp h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a202c;
    text-shadow: 0 2px 4px rgba(0,0,0,0.05);
    letter-spacing: -0.02em;
}

.hero-mvp .lead {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: #4a5568;
    font-weight: 400;
    line-height: 1.6;
}

.hero-logo {
    max-width: 280px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
}

.hero-image {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

/* Value Props in Hero */
.value-props {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.value-prop-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.25rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.value-prop-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.value-prop-item i {
    font-size: 1.5rem;
}

.value-prop-item span {
    font-weight: 600;
    color: #2d3748;
}

/* CTA Buttons */
.btn-primary-gradient {
    background: var(--gradient-primary);
    border: none;
    color: #ffffff;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    text-decoration: none !important;
    display: inline-block;
}

.btn-primary-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    color: #ffffff;
    text-decoration: none !important;
}

.btn:hover,
.btn-outline-primary:hover,
.btn-light:hover,
a.btn:hover {
    text-decoration: none !important;
}

/* Section Headers */
section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.text-center h2::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Founder Challenges Cards */
.founder-challenges .card {
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    height: 100%;
}

.founder-challenges .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--hurrah-blue);
}

.founder-challenges .card-body {
    padding: 2rem;
}

.founder-challenges i {
    font-size: 3rem;
}

/* Solution Section */
.mvp-solution {
    position: relative;
    overflow: hidden;
}

.solution-comparison {
    margin: 2rem 0;
}

.comparison-item {
    padding: 1.5rem;
    border-radius: 16px;
    margin-bottom: 1rem;
}

.comparison-item.traditional {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
}

.comparison-label {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.comparison-label.traditional {
    color: #991b1b;
}

.comparison-label.our-way {
    color: #065f46;
}

.comparison-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1a202c;
}

.comparison-arrow {
    text-align: center;
    font-size: 2rem;
    color: var(--hurrah-green);
    margin: 0.5rem 0;
}

/* Tech Stack Section */
.tech-stack {
    background: white;
}

.tech-card {
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
    background: white;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: var(--hurrah-blue);
}

.tech-icon {
    font-size: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.tech-card h5 {
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.tech-card p {
    color: #64748b;
    margin: 0;
}

/* MVP Examples */
.mvp-examples .card {
    border-radius: 20px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.mvp-examples .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.mvp-examples .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.mvp-examples .card-body {
    padding: 2.5rem;
}

.mvp-examples .badge {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
    font-weight: 600;
}

.deliverable-list {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

/* Process Section */
.mvp-process {
    background: white;
}

.process-step {
    text-align: center;
    padding: 2rem;
}

.process-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.process-step h4 {
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Pricing Section */
.mvp-pricing {
    position: relative;
    overflow: hidden;
}

.mvp-pricing .card {
    border-radius: 24px;
    border: 2px solid transparent;
    background-image: linear-gradient(white, white), var(--gradient-primary);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    position: relative;
}

.mvp-pricing .display-3 {
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.equity-comparison {
    margin: 3rem 0;
}

.comparison-box {
    padding: 2rem;
    border-radius: 16px;
    height: 100%;
}

.traditional-box {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border: 2px solid #fca5a5;
}

.our-box {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border: 2px solid #86efac;
}

.big-number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
}

/* Why Me Section */
.why-me {
    background: white;
}

.experience-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.experience-item {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid var(--hurrah-blue);
}

.experience-item h5 {
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1a202c;
}

.experience-item p {
    margin: 0;
    color: #4a5568;
}

/* Testimonials */
.testimonials-mvp {
    background: white;
}

.testimonials-mvp .card {
    border-radius: 20px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.testimonials-mvp .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.testimonials-mvp .card-body {
    padding: 2.5rem;
}

.testimonials-mvp .bi-star-fill {
    font-size: 1.2rem;
}

/* FAQ Section */
.faq-mvp {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.faq-mvp .accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    width: 100%;
}

.faq-mvp .accordion-button {
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.5rem;
    background: white;
    color: #1a202c;
    border: none;
    width: 100%;
    text-align: left;
}

.faq-mvp .accordion-header {
    margin: 0;
    width: 100%;
}

.faq-mvp .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
    color: #1a202c;
    box-shadow: none;
}

.faq-mvp .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.faq-mvp .accordion-button::after {
    filter: brightness(0);
}

.faq-mvp .accordion-body {
    padding: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Contact Form */
.contact-form-mvp {
    background: white;
    padding: 5rem 0;
}

.contact-form-mvp .card {
    border-radius: 24px;
    border: none;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.contact-form-mvp .form-label {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.75rem;
}

.contact-form-mvp .form-control {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.875rem 1.25rem;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.contact-form-mvp .form-control:focus {
    border-color: var(--hurrah-blue);
    box-shadow: 0 0 0 3px rgba(125, 211, 252, 0.1);
}

.contact-form-mvp textarea.form-control {
    min-height: 120px;
}

/* Final CTA */
.final-cta-mvp {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    position: relative;
    overflow: hidden;
}

.final-cta-mvp::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0.15;
}

.final-cta-mvp::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: var(--gradient-primary);
    opacity: 0.08;
    transform: rotate(-15deg);
}

.final-cta-mvp .container {
    position: relative;
    z-index: 1;
}

.final-cta-mvp h2 {
    color: white;
    font-weight: 800;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.final-cta-mvp h2::after {
    background: var(--gradient-primary);
}

.final-cta-mvp .lead {
    color: rgba(255,255,255,0.95);
    text-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

/* Trust Badge */
.trust-badge {
    display: inline-flex;
    align-items: center;
    background: white;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    font-size: 0.95rem;
    font-weight: 600;
    color: #2d3748;
    border: 2px solid #f0f4f8;
    transition: all 0.3s ease;
}

.trust-badge i {
    font-size: 1.1rem;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Alert Styling */
.alert-warning {
    background: #fef3c7;
    border: 1px solid #fcd34d;
}

.alert-success {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border: 1px solid #86efac;
}

.alert-info {
    background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
    border: none;
    border-radius: 12px;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .hero-mvp {
        min-height: auto;
        padding: 2rem 0 3rem 0;
    }

    .hero-mvp h1 {
        font-size: 2rem;
        margin-top: 0;
    }

    .hero-logo {
        max-width: 200px;
        margin-bottom: 1.5rem;
    }

    section h2 {
        font-size: 1.75rem;
    }

    .btn-primary-gradient {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        width: 100%;
    }

    .mvp-pricing .display-3 {
        font-size: 3rem;
    }

    .big-number {
        font-size: 2.5rem;
    }

    .value-prop-item {
        font-size: 0.9rem;
    }

    .tech-card,
    .process-step {
        padding: 1.5rem;
    }

    .experience-item {
        padding: 1rem;
    }
}
