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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

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

/* Header */
header {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo h1 {
    font-size: 28px;
    color: #2563eb;
    margin-bottom: 0;
}

.logo .tagline {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #2563eb;
}

.cta-button {
    background: #2563eb;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 6px;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #1d4ed8;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.hero h2 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 700;
}

.subheadline {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-button-large {
    display: inline-block;
    background: #fff;
    color: #667eea;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.trust-signal {
    margin-top: 30px;
    font-size: 16px;
    opacity: 0.9;
}

/* Problem Section */
.problem {
    padding: 80px 20px;
    background: #f9fafb;
}

.problem h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: #1f2937;
}

.stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin: 40px 0;
}

.stat {
    text-align: center;
    max-width: 300px;
}

.stat-number {
    font-size: 64px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 10px;
}

.comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.old-way, .new-reality {
    padding: 30px;
    border-radius: 8px;
    background: #fff;
    border: 2px solid #e5e7eb;
}

.new-reality {
    border-color: #2563eb;
}

.old-way h3, .new-reality h3 {
    margin-bottom: 15px;
    color: #1f2937;
}

.problem-close {
    text-align: center;
    font-size: 20px;
    margin-top: 40px;
}

/* Solution Section */
.solution {
    padding: 80px 20px;
    background: #fff;
}

.solution h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1f2937;
}

.package {
    background: #f9fafb;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid #2563eb;
}

.package h3 {
    color: #1f2937;
    margin-bottom: 15px;
    font-size: 24px;
}

.package ul {
    list-style: none;
    padding-left: 0;
}

.package li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.package li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

.highlight {
    background: #dbeafe;
    padding: 15px;
    border-radius: 6px;
    margin-top: 15px;
    text-align: center;
}

/* Process Section */
.process {
    padding: 80px 20px;
    background: #f9fafb;
}

.process h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1f2937;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.step {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.step h3 {
    color: #2563eb;
    margin-bottom: 15px;
}

.time-commitment {
    text-align: center;
    font-size: 20px;
    color: #2563eb;
    font-weight: 600;
}

/* Founding Offer Section */
.founding-offer {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
}

.founding-offer h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.price {
    font-size: 32px;
    margin: 30px 0;
    font-weight: 700;
}

.what-we-ask {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 8px;
    margin: 30px auto;
    max-width: 600px;
    text-align: left;
}

.what-we-ask h3 {
    margin-bottom: 15px;
}

.what-we-ask ul {
    list-style: none;
    padding-left: 0;
}

.what-we-ask li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.what-we-ask li:before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: 700;
    font-size: 20px;
}

.urgency {
    font-size: 18px;
    margin: 30px 0;
    font-weight: 500;
}

/* About Section */
.about {
    padding: 80px 20px;
    background: #fff;
}

.about h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1f2937;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text h3 {
    color: #2563eb;
    margin-bottom: 20px;
    font-size: 28px;
}

.about-text ol {
    margin: 20px 0;
    padding-left: 30px;
}

.about-text ol li {
    margin: 15px 0;
}

.credentials {
    background: #f9fafb;
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
}

.credentials ul {
    list-style: none;
    padding-left: 0;
}

.credentials li {
    padding: 5px 0;
    padding-left: 25px;
    position: relative;
}

.credentials li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2563eb;
}

/* Ideal Client Section */
.ideal-client {
    padding: 80px 20px;
    background: #f9fafb;
}

.ideal-client h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1f2937;
}

.fit-columns {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.ideal, .not-fit {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
}

.ideal {
    border: 2px solid #2563eb;
}

.not-fit {
    border: 2px solid #ef4444;
}

.ideal h3 {
    color: #2563eb;
    margin-bottom: 20px;
}

.not-fit h3 {
    color: #ef4444;
    margin-bottom: 20px;
}

.ideal ul, .not-fit ul {
    list-style: none;
    padding-left: 0;
}

.ideal li, .not-fit li {
    padding: 8px 0;
}

.industries {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    margin-top: 15px;
}

.industries li:before {
    content: "•";
    margin-right: 8px;
    color: #2563eb;
}

/* FAQ Section */
.faq {
    padding: 80px 20px;
    background: #fff;
}

.faq h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1f2937;
}

.faq-item {
    max-width: 800px;
    margin: 0 auto 30px;
    padding: 25px;
    background: #f9fafb;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.faq-item h3 {
    color: #1f2937;
    margin-bottom: 12px;
    font-size: 20px;
}

.faq-item a {
    color: #2563eb;
    text-decoration: none;
}

.faq-item a:hover {
    text-decoration: underline;
}

/* Final CTA Section */
.final-cta {
    padding: 80px 20px;
    background: #1f2937;
    color: #fff;
    text-align: center;
}

.final-cta h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.contact-form button {
    background: #2563eb;
    color: #fff;
    padding: 16px 40px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form button:hover {
    background: #1d4ed8;
}

.form-note {
    margin-top: 15px;
    font-size: 14px;
    opacity: 0.8;
}

/* Footer */
footer {
    background: #111;
    color: #fff;
    padding: 60px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    color: #2563eb;
    margin-bottom: 10px;
}

.footer-links, .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links h4, .footer-contact h4 {
    margin-bottom: 10px;
    color: #2563eb;
}

.footer-links a, .footer-contact a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover, .footer-contact a:hover {
    color: #2563eb;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #999;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 20px;
    }

    nav {
        flex-direction: column;
        gap: 15px;
    }

    .hero h2 {
        font-size: 32px;
    }

    .stats {
        flex-direction: column;
    }

    .comparison {
        grid-template-columns: 1fr;
    }

    .fit-columns {
        grid-template-columns: 1fr;
    }

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