/* Reset and 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: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header - Desktop Default */
.header {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

.logo a {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    transition: color 0.3s;
}

.logo a:hover {
    color: #10a37f;
}

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

.nav a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav a:hover {
    color: #000;
}

.btn-cta-nav {
    background: #10a37f;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
}

.btn-cta-nav:hover {
    background: #0d8c6d;
}

/* Hide mobile elements on desktop */
.mobile-menu-toggle {
    display: none;
}

.mobile-cta {
    display: none;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    text-align: center;
}

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

.profile-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 30px;
    object-fit: cover;
}

.profile-pic-large {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 30px;
    object-fit: cover;
}

h1 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 25px;
    font-weight: 700;
    color: #000;
}

.subheadline {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: 500;
    color: #333;
}

.note {
    font-size: 16px;
    margin-bottom: 25px;
    color: #666;
    font-style: italic;
}

.authority {
    font-size: 18px;
    margin-bottom: 35px;
    color: #555;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #10a37f;
    color: #fff;
    padding: 16px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    display: inline-block;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #0d8c6d;
}

.btn-secondary {
    background: #fff;
    color: #10a37f;
    padding: 16px 32px;
    border: 2px solid #10a37f;
    border-radius: 6px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #10a37f;
    color: #fff;
}

.microcopy {
    font-size: 14px;
    color: #777;
    margin-top: 15px;
}

/* System Section */
.system {
    background: #f7f7f7;
    padding: 60px 0;
}

.system h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: #000;
}

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

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #10a37f;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #000;
}

.step p {
    font-size: 16px;
    color: #555;
}

.result-note {
    text-align: center;
    font-size: 18px;
    margin-top: 30px;
    color: #333;
}

/* Who It's For Section */
.who-for {
    padding: 60px 0;
    text-align: center;
}

.who-for h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #000;
}

.who-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.who-list li {
    font-size: 18px;
    padding: 15px 0;
    padding-left: 35px;
    position: relative;
    color: #333;
}

.who-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10a37f;
    font-weight: 700;
    font-size: 22px;
}

/* Beta Offer Section */
.beta-offer {
    background: #10a37f;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.beta-offer h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #fff;
}

.beta-desc {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.beta-offer .btn-primary {
    background: #fff;
    color: #10a37f;
}

.beta-offer .btn-primary:hover {
    background: #f0f0f0;
}

.pricing-note {
    font-size: 14px;
    margin-top: 20px;
    opacity: 0.9;
}

/* Final CTA Section */
.final-cta {
    padding: 60px 0;
    text-align: center;
    background: #f7f7f7;
}

.final-cta h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #000;
}

.cta-phone {
    font-size: 24px;
    font-weight: 600;
}

.cta-phone a {
    color: #10a37f;
    text-decoration: none;
}

.cta-phone a:hover {
    text-decoration: underline;
}

/* About Page */
.about-hero {
    padding: 80px 0;
    text-align: center;
}

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

.bio {
    text-align: left;
    margin-top: 40px;
}

.bio p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
    color: #333;
}

.why-us {
    background: #f7f7f7;
    padding: 60px 0;
}

.why-us h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: #000;
}

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

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

.why-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #000;
}

.why-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.about-cta {
    padding: 60px 0;
    text-align: center;
}

.about-cta h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #000;
}

/* Contact Page */
.contact-hero {
    padding: 60px 0;
    text-align: center;
}

.contact-options {
    padding: 60px 0;
}

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

.contact-card {
    background: #f7f7f7;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
}

.contact-card h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #000;
}

.contact-card p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
}

.contact-detail {
    font-size: 18px;
    font-weight: 600;
    color: #10a37f;
    margin-top: 15px !important;
}

.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form-wrapper h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 15px;
    color: #000;
}

.form-note {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.contact-form {
    background: #f7f7f7;
    padding: 40px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #10a37f;
}

.contact-form .btn-primary {
    width: 100%;
    cursor: pointer;
    border: none;
}

.form-footer {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-top: 20px;
}

/* Case Study Page */
.case-study-hero {
    padding: 60px 0 40px;
}

.case-study-hero .container {
    max-width: 800px;
}

.case-study-content {
    max-width: 100%;
    margin: 0 auto;
}

.case-study-content h1 {
    text-align: center;
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.case-study-content .subheadline {
    text-align: center;
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 40px;
    color: #555;
}

.case-study-box {
    background: #fff;
    padding: 0;
    margin-top: 40px;
}

.case-study-box h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #000;
    text-align: center;
}

.intro-text {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #333;
    text-align: center;
}

.what-youll-get,
.beta-highlight,
.system-preview {
    background: #f7f7f7;
    padding: 35px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.what-youll-get h3,
.beta-highlight h3,
.system-preview h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #000;
    text-align: left;
}

.what-youll-get ul,
.beta-highlight ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.what-youll-get li,
.beta-highlight li {
    font-size: 17px;
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    color: #333;
    line-height: 1.7;
}

.what-youll-get li:before,
.beta-highlight li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10a37f;
    font-weight: 700;
    font-size: 22px;
}

.beta-highlight {
    background: #fffbf0;
    border: 2px solid #f59e0b;
}

.beta-highlight h3 {
    color: #d97706;
}

.beta-highlight p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #333;
}

.preview-steps {
    margin-top: 25px;
}

.preview-step {
    background: #fff;
    padding: 25px;
    border-radius: 6px;
    margin-bottom: 20px;
    border-left: 4px solid #10a37f;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.preview-step strong {
    display: block;
    font-size: 19px;
    margin-bottom: 10px;
    color: #000;
}

.preview-step p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.cta-section {
    background: #10a37f;
    color: #fff;
    padding: 45px 40px;
    border-radius: 8px;
    text-align: center;
    margin-top: 40px;
}

.cta-section h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #fff;
    text-align: center;
}

.cta-text {
    font-size: 18px;
    margin-bottom: 30px;
    color: #fff;
    line-height: 1.6;
}

.cta-section .btn-primary {
    background: #fff;
    color: #10a37f;
    font-size: 20px;
    padding: 18px 40px;
}

.cta-section .btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.alternate-contact {
    margin-top: 20px;
    font-size: 15px;
    color: #fff;
}

.alternate-contact a {
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
}

.future-proof {
    padding: 60px 0;
    background: #f7f7f7;
}

.future-proof .container {
    max-width: 800px;
}

.future-proof h2 {
    text-align: center;
    font-size: 30px;
    margin-bottom: 20px;
    color: #000;
}

.coming-soon-text {
    text-align: center;
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.proof-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto 35px;
    padding: 0;
}

.proof-list li {
    font-size: 17px;
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    color: #333;
    line-height: 1.6;
}

.proof-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #10a37f;
    font-weight: 700;
    font-size: 20px;
}

.early-note {
    text-align: center;
    font-size: 19px;
    font-weight: 600;
    color: #10a37f;
    margin-top: 10px;
}

/* Legal Pages */
.legal-page {
    padding: 60px 0;
}

.legal-page h1 {
    font-size: 36px;
    margin-bottom: 30px;
}

.legal-page h2 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #000;
}

.legal-page p {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.7;
    color: #333;
}

.legal-page ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-page li {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.6;
    color: #333;
}

/* Footer */
.footer {
    background: #f7f7f7;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #e5e5e5;
}

.footer p {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.footer a {
    color: #10a37f;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer-links {
    margin-top: 15px;
    font-size: 14px;
}

/* MOBILE RESPONSIVE - CRITICAL SECTION */
@media (max-width: 768px) {
    /* Mobile Header Layout */
    .logo a {
        font-size: 18px;
    }

    /* Show hamburger menu on mobile */
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        padding: 5px;
    }

    .mobile-menu-toggle span {
        width: 25px;
        height: 3px;
        background: #333;
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 2px;
    }

    /* Hamburger animation */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    /* Hide desktop nav CTA button on mobile */
    .nav .btn-cta-nav {
        display: none !important;
    }

    /* Show mobile CTA */
    .mobile-cta {
        display: block;
    }

    .mobile-cta .btn-cta-nav {
        padding: 8px 16px;
        font-size: 14px;
        white-space: nowrap;
    }

    /* Slide-in mobile menu */
    .nav {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: #fff;
        flex-direction: column;
        justify-content: flex-start;
        padding: 30px 20px;
        gap: 0;
        transition: left 0.3s ease;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .nav.active {
        left: 0;
    }

    .nav a {
        font-size: 18px;
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    h1 {
        font-size: 28px;
    }

    .subheadline {
        font-size: 18px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }

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

    .system h2,
    .final-cta h2,
    .about-cta h2 {
        font-size: 26px;
    }

    .contact-form {
        padding: 25px;
    }

    .case-study-content h1 {
        font-size: 26px;
    }

    .what-youll-get,
    .beta-highlight,
    .system-preview {
        padding: 25px;
    }

    .cta-section {
        padding: 30px 25px;
    }

    .preview-step {
        padding: 20px;
    }

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

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

@media (max-width: 480px) {
    .header {
        padding: 12px 0;
    }

    .logo a {
        font-size: 16px;
    }

    .mobile-cta .btn-cta-nav {
        padding: 6px 12px;
        font-size: 13px;
    }

    h1 {
        font-size: 24px;
    }

    .hero {
        padding: 40px 0;
    }

    .case-study-content h1 {
        font-size: 22px;
    }

    .case-study-box h2 {
        font-size: 22px;
    }
}
