* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0f172a;
    --primary-dark: #0b1120;
    --secondary-color: #f3f4f6;
    --text-dark: #0b1120;
    --text-light: #555;
    --border-color: #e5e7eb;
    --white: #ffffff;
    --accent-orange: #F25C05;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #f3f4f6;
}

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

.bg-light {
    background-color: #f7f8fa;
}

.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
}

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

.nav-brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #f97316;
}

.nav-cta {
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.nav-cta:hover {
    background-color: var(--primary-dark) !important;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: all 0.3s;
    border-radius: 2px;
}

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

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

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

.hero {
    background: #020617;
    color: var(--white);
    padding: 3.75rem 0;
    text-align: center;
}

.hero-headline {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subheadline {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.hero-guarantee {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #e5e7eb;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    display: inline-block;
    background-color: #f97316;
    color: #ffffff;
    padding: 12px 28px;
    font-size: 1.15rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 9999px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 18px rgba(15, 23, 42, 0.25);
}

.btn-primary:hover {
    background-color: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.35);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
}

.btn-secondary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--text-dark);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #e0e0e0;
}

.micro-social-proof {
    padding: 24px 0;
    background-color: transparent;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

.testimonials-micro {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-micro p {
    font-size: 0.95rem;
    color: #374151;
    font-style: italic;
    text-align: center;
    line-height: 1.5;
    margin: 0;
}

.pain-section {
    padding: 3rem 0;
    background-color: transparent;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

.pain-section .container {
    background-color: var(--white);
    padding: 3rem 2rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.pain-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.pain-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.pain-point {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.06);
}

.pain-point h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
    text-align: center;
    font-weight: 600;
}

.pain-point p {
    color: #1f2937;
    line-height: 1.5;
    text-align: left;
    font-size: 0.9rem;
}

.offer-section {
    padding: 3rem 0;
    background-color: transparent;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

.offer-section .container {
    background-color: var(--white);
    padding: 3rem 2rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.offer-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.offer-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: left;
}

.offer-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    padding: 2rem;
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.feature h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    text-align: center;
}

.feature p {
    color: var(--text-light);
    line-height: 1.7;
    text-align: left;
}

.how-it-works {
    padding: 3rem 0;
    background-color: transparent;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

.how-it-works .container {
    background-color: var(--white);
    padding: 3rem 2rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.how-it-works h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

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

.step {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.06);
}

.step-number {
    width: 38px;
    height: 38px;
    background-color: #0f172a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 auto 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.10);
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
    text-align: center;
    font-weight: 600;
}

.step p {
    color: #1f2937;
    line-height: 1.5;
    text-align: left;
    font-size: 0.9rem;
}

.why-different {
    padding: 3rem 0;
    background-color: transparent;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

.why-different .container {
    background-color: var(--white);
    padding: 3rem 2rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.why-different h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.differentiators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.diff-item {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.06);
}

.diff-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1f2937;
    text-align: center;
    font-weight: 600;
}

.diff-item p {
    color: #1f2937;
    line-height: 1.5;
    text-align: left;
    font-size: 0.9rem;
}

.save-you-from {
    padding: 3rem 0;
    background-color: transparent;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

.save-you-from .container {
    background-color: var(--white);
    padding: 3rem 2rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.save-you-from h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subheading {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.scenarios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.scenario {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.06);
}

.scenario p {
    font-size: 0.9rem;
    color: #1f2937;
    line-height: 1.5;
    font-weight: 500;
    text-align: left;
}

.faq-section {
    padding: 2.5rem 0;
    background-color: transparent;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

.faq-section .container {
    background-color: var(--white);
    padding: 3rem 2rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.faq-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    text-align: center;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
    text-align: left;
}

.trust-bar {
    padding: 16px 0;
    background-color: #f3f4f6;
    text-align: center;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

.trust-indicators {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #6b7280;
    font-weight: 500;
}

.cta-final {
    padding: 3.75rem 0;
    background: #0f172a;
    color: var(--white);
    text-align: center;
    margin-top: 2.5rem;
    margin-bottom: 0;
    border-top: 1px solid #1e293b;
}

.cta-final h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-final p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.guarantee-text {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

.footer {
    background-color: #020617;
    color: #9ca3af;
    padding: 30px 0;
    text-align: center;
}

.footer p {
    margin-bottom: 0.5rem;
    color: #9ca3af;
    font-size: 0.875rem;
    line-height: 1.5;
}

.footer-links {
    margin-top: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 1rem;
    font-size: 0.875rem;
}

.footer-links a {
    color: #e5e7eb;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #f97316;
}

.book-section {
    padding: 3rem 0 4rem 0;
    background-color: #f3f4f6;
    min-height: calc(100vh - 200px);
}

.book-card {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 10px;
    padding: 3rem 2.5rem;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.06);
    border: 1px solid #e5e7eb;
}

.book-card h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0f172a;
    text-align: center;
    margin-bottom: 1rem;
}

.book-subheadline {
    font-size: 1.1rem;
    color: #4b5563;
    text-align: center;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.book-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.75rem;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.form-group .required {
    color: #f97316;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.95rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background-color: #ffffff;
    color: #1f2937;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.book-form .btn-primary {
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.privacy-note {
    text-align: center;
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 1rem;
    line-height: 1.5;
}

.error-message {
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.page-bg-light {
    background-color: #f7f8fa;
    padding-top: 60px;
    padding-bottom: 60px;
}

.thank-you-section {
    padding: 3rem 0 4rem 0;
    background-color: #f3f4f6;
    min-height: calc(100vh - 200px);
}

.thank-you-card {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 10px;
    padding: 3rem 2.5rem;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.06);
    border: 1px solid #e5e7eb;
}

.thank-you-card h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0f172a;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.thank-you-subheadline {
    font-size: 1.1rem;
    color: #4b5563;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.confirmation-box {
    background-color: #f0fdf4;
    border: 1px solid #86efac;
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    margin-top: 1rem;
    margin-bottom: 2.5rem;
}

.confirmation-box p {
    color: #166534;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.calendly-section {
    margin-bottom: 2.5rem;
}

.calendly-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 1.25rem;
    text-align: center;
}

.calendly-placeholder {
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.calendly-placeholder p {
    color: #6b7280;
    font-size: 0.95rem;
    font-style: italic;
    margin: 0;
}

.btn-secondary {
    display: inline-block;
    background-color: #0f172a;
    color: #ffffff;
    padding: 10px 22px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 9999px;
    transition: all 0.2s ease;
    text-align: center;
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.15);
    border: none;
}

.btn-secondary:hover {
    background-color: #1e293b;
    transform: translateY(-1px);
}

.calendly-section .btn-secondary {
    display: block;
    margin: 0 auto;
    max-width: 300px;
}

.prep-checklist {
    background-color: #fefce8;
    border: 1px solid #fde047;
    border-radius: 8px;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.prep-checklist h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #854d0e;
    margin-bottom: 1rem;
}

.prep-checklist ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.prep-checklist ul li {
    color: #713f12;
    font-size: 0.95rem;
    line-height: 1.45;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.prep-checklist ul li:last-child {
    margin-bottom: 0;
}

.prep-checklist ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ca8a04;
    font-weight: 700;
}

.what-happens-next {
    margin-bottom: 2rem;
}

.what-happens-next h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.what-happens-next ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.what-happens-next ul li {
    color: #4b5563;
    font-size: 0.9rem;
    line-height: 1.4;
    padding-left: 1.25rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.what-happens-next ul li:last-child {
    margin-bottom: 0;
}

.what-happens-next ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4b5563;
}

.support-note {
    text-align: center;
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 2rem;
    line-height: 1.5;
}

.support-note a {
    color: #f97316;
    text-decoration: none;
    font-weight: 600;
}

.support-note a:hover {
    text-decoration: underline;
}

.apply-hero {
    padding: 8rem 0;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.apply-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.apply-hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 2rem;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        gap: 0;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 0;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-links li:last-child {
        border-bottom: none;
    }
    
    .nav-links a {
        display: block;
        width: 100%;
    }
    
    .nav-cta {
        background-color: transparent;
        color: var(--primary-color) !important;
        padding: 0;
        font-weight: 700;
    }
    
    .nav-cta:hover {
        background-color: transparent !important;
    }
    
    .hero-headline {
        font-size: 1.8rem;
    }
    
    .hero-subheadline {
        font-size: 1.1rem;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    section {
        padding: 3.75rem 0 !important;
    }
    
    .cta-final {
        padding: 4rem 0 !important;
    }
    
    .micro-social-proof {
        padding: 2rem 0 !important;
    }
    
    .trust-bar {
        padding: 2rem 0 !important;
    }
    
    .trust-indicators {
        gap: 1.5rem;
        flex-direction: column;
    }
    
    .trust-indicators span {
        font-size: 0.85rem;
    }
    
    h2 {
        font-size: 1.8rem !important;
    }
    
    .pain-points,
    .offer-features,
    .steps,
    .differentiators,
    .scenarios,
    .testimonials-micro {
        grid-template-columns: 1fr;
    }
    
    .testimonial-micro p {
        font-size: 0.9rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
    
    .footer {
        padding: 3rem 0 !important;
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .book-card {
        padding: 2rem 1.5rem;
    }
    
    .book-card h1 {
        font-size: 1.8rem;
    }
    
    .book-subheadline {
        font-size: 1rem;
    }
    
    .thank-you-card {
        padding: 2rem 1.5rem;
    }
    
    .thank-you-card h1 {
        font-size: 1.6rem;
    }
    
    .thank-you-subheadline {
        font-size: 1rem;
    }
    
    .calendly-section h2 {
        font-size: 1.3rem;
    }
    
    .prep-checklist {
        padding: 1.25rem 1.5rem;
    }
    
    .prep-checklist h3 {
        font-size: 1.1rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        max-width: 960px;
    }
}

html {
    scroll-behavior: smooth;
}
