/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #0A4FFF;
    --primary-blue-dark: #0839CC;
    --success-green: #10B981;
    --text-dark: #1A1A1A;
    --text-medium: #4A4A4A;
    --text-light: #6B6B6B;
    --bg-white: #FFFFFF;
    --bg-light: #F8F9FA;
    --bg-dark: #1A1A1A;
    --border-color: #E5E7EB;
    --error-red: #EF4444;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    padding: 6rem 0 8rem;
    background: var(--bg-white);
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--bg-light);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-medium);
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    letter-spacing: -0.03em;
}

.hero-subheadline {
    font-size: 1.5rem;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 3rem;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2.5rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.9375rem;
    color: var(--text-medium);
    font-weight: 500;
    line-height: 1.4;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    color: var(--text-medium);
    font-weight: 500;
}

.feature-item svg {
    width: 24px;
    height: 24px;
    color: var(--success-green);
    stroke-width: 3;
    flex-shrink: 0;
}

.hero-cta-wrapper {
    margin-top: 3rem;
}

.btn-primary {
    background: var(--primary-blue);
    color: white;
    padding: 1.25rem 3rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.25rem;
    display: inline-block;
    transition: background 0.2s, transform 0.2s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(10, 79, 255, 0.2);
}

.btn-primary:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(10, 79, 255, 0.3);
}

.trust-signal {
    margin-top: 1.5rem;
    font-size: 0.9375rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Problem Section */
.problem-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.problem-section h2 {
    font-size: 2.75rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.problem-flow {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.problem-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 12px;
    border: 2px solid var(--border-color);
    margin-bottom: 1.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.problem-step:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.problem-step-critical {
    border-color: #FEF3C7;
    background: #FFFBEB;
}

.problem-step-lost {
    border-color: #FEE2E2;
    background: #FEF2F2;
}

.step-marker {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: var(--primary-blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-marker.critical {
    background: #F59E0B;
}

.step-marker.lost {
    background: var(--error-red);
    font-size: 1.75rem;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.step-content p {
    font-size: 1.125rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.flow-arrow {
    display: flex;
    justify-content: center;
    margin: 0.5rem 0;
    color: var(--text-light);
}

.flow-arrow svg {
    width: 32px;
    height: 32px;
}

.problem-stats-box {
    max-width: 700px;
    margin: 0 auto;
    padding: 2.5rem;
    background: var(--bg-white);
    border-radius: 16px;
    border: 2px solid var(--border-color);
    text-align: center;
}

.stats-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.stats-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
}

.stats-text {
    font-size: 1.25rem;
    color: var(--text-medium);
    font-weight: 500;
    line-height: 1.5;
}

/* Solution Section */
.solution-section {
    padding: 5rem 0;
    background: var(--bg-white);
}

.solution-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

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

.solution-step {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--primary-blue);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.solution-step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.solution-step p {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 0;
    background: var(--bg-white);
}

.benefits-section h2 {
    font-size: 2.75rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-card {
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(10, 79, 255, 0.12);
    border-color: var(--primary-blue);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1.5rem;
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
    stroke: white;
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.benefit-card p {
    font-size: 1.125rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.benefits-cta {
    text-align: center;
    padding: 3rem;
    background: var(--bg-light);
    border-radius: 16px;
    max-width: 700px;
    margin: 0 auto;
}

.benefits-summary {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.btn-benefits {
    background: var(--primary-blue);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    display: inline-block;
    transition: background 0.2s, transform 0.2s;
}

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

/* Objection Section */
.objection-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.objection-section h2 {
    font-size: 2.75rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.objection-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.objection-yes,
.objection-no {
    padding: 3rem;
    background: var(--bg-white);
    border-radius: 16px;
    border: 2px solid var(--border-color);
}

.objection-yes {
    border-color: var(--success-green);
    background: linear-gradient(135deg, #F0FDF4 0%, #FFFFFF 100%);
}

.objection-no {
    border-color: #FEE2E2;
    background: linear-gradient(135deg, #FEF2F2 0%, #FFFFFF 100%);
}

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

.objection-yes .objection-header {
    border-bottom-color: rgba(16, 185, 129, 0.2);
}

.objection-no .objection-header {
    border-bottom-color: rgba(239, 68, 68, 0.2);
}

.objection-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.yes-icon {
    background: var(--success-green);
    color: white;
}

.no-icon {
    background: var(--error-red);
    color: white;
}

.objection-icon svg {
    width: 28px;
    height: 28px;
    stroke: white;
    stroke-width: 3;
}

.objection-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.checklist {
    list-style: none;
}

.checklist li {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.check-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.objection-yes .check-icon {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-green);
}

.objection-no .check-icon {
    background: rgba(239, 68, 68, 0.1);
    color: var(--error-red);
}

.check-icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 3;
}

.check-text {
    flex: 1;
}

.check-text strong {
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.check-text p {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.5;
    margin: 0;
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.pricing-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--bg-white);
    border-radius: 16px;
    border: 2px solid var(--border-color);
    text-align: center;
}

.price {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1;
}

.price-period {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-medium);
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-features li {
    font-size: 1.125rem;
    color: var(--text-medium);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.pricing-note {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.btn-pricing {
    background: var(--primary-blue);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    display: inline-block;
    width: 100%;
    text-align: center;
    transition: background 0.2s;
}

.btn-pricing:hover {
    background: var(--primary-blue-dark);
}

/* Final CTA Section */
.final-cta {
    padding: 6rem 0;
    background: var(--bg-dark);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.final-cta p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
}

.btn-final {
    background: var(--primary-blue);
    color: white;
    padding: 1.25rem 3rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    display: inline-block;
    transition: background 0.2s;
}

.btn-final:hover {
    background: var(--primary-blue-dark);
}

/* Footer */
.footer {
    padding: 3rem 0;
    background: var(--bg-white);
    border-top: 1px solid var(--border-color);
}

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

.footer-brand {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-medium);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.2s;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 4rem 0 6rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-subheadline {
        font-size: 1.25rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 0;
    }

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

    .hero-features {
        flex-direction: column;
        gap: 1.25rem;
        align-items: flex-start;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .btn-primary {
        font-size: 1.125rem;
        padding: 1rem 2rem;
        width: 100%;
        max-width: 400px;
    }

    .problem-flow {
        max-width: 100%;
    }

    .problem-step {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .step-marker {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    .step-content h3 {
        font-size: 1.25rem;
    }

    .step-content p {
        font-size: 1rem;
    }

    .flow-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }

    .problem-stats-box {
        padding: 2rem 1.5rem;
    }

    .stats-number {
        font-size: 2.5rem;
    }

    .stats-text {
        font-size: 1.125rem;
    }

    .solution-steps {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

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

    .benefit-card p {
        font-size: 1rem;
    }

    .benefits-cta {
        padding: 2rem 1.5rem;
    }

    .benefits-summary {
        font-size: 1.25rem;
    }

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

    .objection-yes,
    .objection-no {
        padding: 2rem 1.5rem;
    }

    .objection-header h3 {
        font-size: 1.5rem;
    }

    .check-text strong {
        font-size: 1.125rem;
    }

    .check-text p {
        font-size: 0.9375rem;
    }

    .problem-section h2,
    .solution-section h2,
    .benefits-text h2,
    .objection-section h2,
    .pricing-section h2 {
        font-size: 2rem;
    }

    .final-cta h2 {
        font-size: 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .price {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 0 4rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subheadline {
        font-size: 1.125rem;
    }

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

    .container {
        padding: 0 16px;
    }

    .problem-section,
    .solution-section,
    .benefits-section,
    .objection-section,
    .pricing-section {
        padding: 3rem 0;
    }

    .final-cta {
        padding: 4rem 0;
    }

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