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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1e40af;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    cursor: pointer;
    background: #2563eb;
    color: #ffffff;
    transition: background 0.3s ease;
}

.btn-cookie:hover {
    background: #1e40af;
}

.btn-cookie.secondary {
    background: transparent;
    border: 1px solid #ffffff;
}

.btn-cookie.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Navigation */
.main-nav {
    background: #ffffff;
    padding: 1.2rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e5e7eb;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

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

.nav-links a {
    color: #4b5563;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Editorial Flow Layout */
.editorial-flow {
    background: #ffffff;
}

.hero-editorial {
    padding: 4rem 2rem 3rem;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}

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

.hero-narrow h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1.5rem;
}

.hero-lead {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #4b5563;
    font-weight: 300;
}

/* Narrow Content (Editorial Style) */
.narrow-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
}

.story-section {
    padding: 4rem 0;
}

.story-section h2 {
    font-size: 2rem;
    line-height: 1.3;
    font-weight: 700;
    color: #111827;
    margin: 2.5rem 0 1.2rem;
}

.story-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 2rem 0 1rem;
}

.story-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 1.5rem;
}

.story-section ul,
.story-section ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.story-section li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 0.8rem;
}

.inline-image {
    width: 100%;
    margin: 2.5rem 0;
    border-radius: 8px;
}

.full-width-image {
    width: 100%;
    margin: 3rem 0;
}

/* Testimonials */
.testimonial-inline {
    border-left: 4px solid #2563eb;
    padding: 1.5rem 0 1.5rem 2rem;
    margin: 2.5rem 0;
    font-size: 1.15rem;
    font-style: italic;
    color: #1f2937;
    background: #f9fafb;
}

.testimonial-inline cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 0.95rem;
    color: #6b7280;
    font-weight: 500;
}

.testimonial-large {
    padding: 2rem;
    margin: 2.5rem 0;
    background: #f9fafb;
    border-radius: 8px;
    font-size: 1.2rem;
    line-height: 1.7;
    font-style: italic;
    color: #1f2937;
}

.testimonial-large cite {
    display: block;
    margin-top: 1.2rem;
    font-style: normal;
    font-size: 1rem;
    color: #6b7280;
    font-weight: 600;
}

/* CTA Elements */
.cta-inline {
    margin: 2rem 0;
}

.btn-text-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2563eb;
    border-bottom: 2px solid #2563eb;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.btn-text-link:hover {
    color: #1e40af;
    border-color: #1e40af;
}

.cta-box {
    background: #eff6ff;
    padding: 2.5rem;
    margin: 3rem 0;
    border-radius: 8px;
    text-align: center;
}

.cta-box h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
}

.cta-box p {
    font-size: 1.05rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2563eb;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-primary-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #2563eb;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-primary-large:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: #2563eb;
    font-size: 1.05rem;
    font-weight: 600;
    border: 2px solid #2563eb;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #2563eb;
    color: #ffffff;
}

/* Insight Section */
.insight-section {
    background: #f9fafb;
    padding: 4rem 2rem;
}

/* Visual Break */
.visual-break {
    margin: 4rem 0;
}

/* Method Section */
.method-section {
    padding: 4rem 2rem;
    background: #ffffff;
}

.method-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2.5rem 0;
}

.method-card {
    padding: 2rem;
    background: #f9fafb;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.method-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.8rem;
}

.method-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4b5563;
}

/* Pricing Section */
.programs-pricing {
    padding: 4rem 2rem;
    background: #f9fafb;
}

.section-intro {
    font-size: 1.15rem;
    color: #4b5563;
    margin-bottom: 3rem;
    text-align: center;
}

.pricing-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.price-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.price-item:hover {
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.price-item.featured {
    border-color: #2563eb;
    background: #eff6ff;
}

.price-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.price-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
}

.price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #2563eb;
}

.price-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.features-list li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    font-size: 1rem;
    color: #374151;
}

.features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

/* Proof Section */
.proof-section {
    padding: 4rem 2rem;
    background: #ffffff;
}

/* Form Section */
.form-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.form-intro {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 2.5rem;
    text-align: center;
}

.contact-form {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

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

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-weight: 400;
    font-size: 0.95rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: #2563eb;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #1e40af;
    transform: translateY(-2px);
}

/* Final Push Section */
.final-push {
    padding: 4rem 2rem;
    text-align: center;
    background: #1f2937;
    color: #ffffff;
}

.final-push h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.final-push p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #d1d5db;
    margin-bottom: 1.2rem;
}

/* Footer */
.main-footer {
    background: #111827;
    color: #9ca3af;
    padding: 3rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.6rem;
}

.footer-column ul li a {
    color: #9ca3af;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #6b7280;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background: #2563eb;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}

/* Page Header */
.page-header {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1rem;
}

.page-lead {
    font-size: 1.2rem;
    color: #6b7280;
    font-weight: 300;
}

/* Programs Full (Services Page) */
.programs-full {
    padding: 3rem 2rem;
}

.program-full {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid #e5e7eb;
}

.program-full:last-child {
    border-bottom: none;
}

.program-image img {
    width: 100%;
    border-radius: 8px;
}

.program-details h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.price-tag {
    font-size: 2rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 1.5rem;
}

.program-details p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.program-details h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1f2937;
    margin: 1.8rem 0 1rem;
}

.program-details ul {
    margin: 1rem 0 1.5rem;
    padding-left: 1.5rem;
}

.program-details li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 0.6rem;
}

/* How It Works Section */
.how-it-works {
    padding: 4rem 2rem;
    background: #f9fafb;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2.5rem 0;
}

.step {
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    border-left: 4px solid #10b981;
}

.step h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.8rem;
}

.step p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4b5563;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 2rem;
}

.faq-item {
    margin-bottom: 2rem;
}

.faq-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.8rem;
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4b5563;
}

/* Contact Page */
.contact-section {
    padding: 3rem 2rem;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.8rem;
}

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4b5563;
}

.small-text {
    font-size: 0.9rem;
    color: #6b7280;
}

.contact-visual img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.info-box {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 8px;
}

.info-box h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.2rem;
}

.info-box p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 1.2rem;
}

.quick-links {
    margin-top: 3rem;
}

.quick-links h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 2rem;
}

.links-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.link-card {
    display: block;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 8px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.link-card:hover {
    border-color: #2563eb;
    background: #eff6ff;
}

.link-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.link-card p {
    font-size: 0.95rem;
    color: #6b7280;
}

/* Thanks Page */
.thanks-section {
    padding: 4rem 2rem;
}

.thanks-box {
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.thanks-box h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #10b981;
    margin-bottom: 1rem;
}

.thanks-lead {
    font-size: 1.3rem;
    color: #4b5563;
    margin-bottom: 2.5rem;
}

.thanks-info {
    text-align: left;
    max-width: 700px;
    margin: 0 auto;
}

.thanks-info h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #111827;
    margin: 2rem 0 1.5rem;
}

.thanks-steps {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.thanks-steps li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.thanks-steps strong {
    display: block;
    font-size: 1.1rem;
    color: #111827;
    margin-bottom: 0.3rem;
}

.service-selected {
    margin: 2.5rem 0;
}

.selected-program {
    background: #eff6ff;
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid #2563eb;
}

.selected-program h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.8rem;
}

.program-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1rem;
}

.thanks-cta {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 8px;
    margin: 2.5rem 0;
}

.thanks-cta h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

/* Legal Content */
.legal-content {
    padding: 3rem 2rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #111827;
    margin: 2.5rem 0 1.2rem;
}

.legal-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1f2937;
    margin: 1.8rem 0 1rem;
}

.legal-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #374151;
    margin: 1.5rem 0 0.8rem;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 1.2rem;
}

.legal-content ul,
.legal-content ol {
    margin: 1.2rem 0;
    padding-left: 2rem;
}

.legal-content li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 0.6rem;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookies-table th,
.cookies-table td {
    padding: 0.8rem;
    text-align: left;
    border: 1px solid #e5e7eb;
    font-size: 0.95rem;
}

.cookies-table th {
    background: #f9fafb;
    font-weight: 600;
    color: #111827;
}

.cookies-table td {
    color: #4b5563;
}

.results-list,
.stats-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.results-list li,
.stats-list li {
    padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
    font-size: 1.1rem;
    color: #1f2937;
    font-weight: 500;
}

.results-list li:before,
.stats-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

/* Mobile Responsive */
@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
    }

    .hero-narrow h1 {
        font-size: 3.5rem;
    }

    .method-cards {
        flex-direction: row;
    }

    .method-card {
        flex: 1;
    }

    .pricing-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .program-full {
        flex-direction: row;
    }

    .program-image {
        flex: 1;
    }

    .program-details {
        flex: 1;
    }

    .process-steps {
        flex-direction: row;
    }

    .step {
        flex: 1;
    }

    .contact-grid {
        flex-direction: row;
    }

    .contact-info {
        flex: 1;
    }

    .contact-visual {
        flex: 1;
    }

    .links-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .footer-content {
        flex-wrap: nowrap;
    }

    .sticky-cta {
        display: block;
    }
}

@media (max-width: 767px) {
    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

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

    .hero-lead {
        font-size: 1.1rem;
    }

    .story-section h2 {
        font-size: 1.6rem;
    }

    .story-section p {
        font-size: 1rem;
    }

    .price-header {
        flex-direction: column;
        align-items: flex-start;
    }
}
