/* 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;
}

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

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

a:hover {
    color: #1d4ed8;
}

/* Navigation - Minimal Style */
.nav-minimal {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

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

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

.nav-cta-btn {
    padding: 0.6rem 1.4rem;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.nav-cta-btn:hover {
    background-color: #1d4ed8;
}

/* Editorial Container - Article Layout */
.editorial-container {
    max-width: 680px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

/* Hero Editorial Style */
.hero-editorial {
    padding: 3rem 0 2.5rem;
}

.hero-content-narrow {
    text-align: left;
}

.eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #2563eb;
    margin-bottom: 1rem;
}

.hero-editorial h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.hero-lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 2rem;
}

.hero-image {
    width: 100%;
    border-radius: 8px;
    margin-top: 2rem;
}

/* Page Header for Internal Pages */
.page-header-editorial {
    padding: 2.5rem 0 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 2.5rem;
}

.page-header-editorial h1 {
    font-size: 2.2rem;
    line-height: 1.3;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.page-lead {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #6b7280;
}

/* Content Blocks - Narrow Text */
.content-block {
    margin: 3rem 0;
}

.text-narrow {
    max-width: 100%;
}

.text-narrow h2 {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a1a;
    margin: 2.5rem 0 1.2rem;
}

.text-narrow h3 {
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.4;
    color: #1a1a1a;
    margin: 2rem 0 1rem;
}

.text-narrow h4 {
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.4;
    color: #1a1a1a;
    margin: 1.5rem 0 0.8rem;
}

.text-narrow p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 1.5rem;
}

.text-narrow strong {
    font-weight: 600;
    color: #1a1a1a;
}

.text-narrow ul,
.text-narrow ol {
    margin: 1.5rem 0 1.5rem 1.5rem;
}

.text-narrow li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 0.8rem;
}

/* Inline Images */
.inline-image-block {
    margin: 2.5rem 0;
}

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

.image-break {
    margin: 3rem -1.5rem;
}

.image-break img {
    width: 100%;
    border-radius: 0;
}

/* Pullquote Section */
.pullquote-section {
    margin: 3.5rem 0;
    padding: 2rem 0;
    border-top: 3px solid #2563eb;
    border-bottom: 3px solid #2563eb;
}

.pullquote-section blockquote {
    margin: 0;
}

.pullquote-section p {
    font-size: 1.4rem;
    line-height: 1.6;
    font-style: italic;
    color: #1a1a1a;
    font-weight: 500;
    margin-bottom: 1rem;
}

.pullquote-section cite {
    display: block;
    font-size: 0.95rem;
    font-style: normal;
    color: #6b7280;
}

/* Story and Insight Sections */
.story-section,
.insight-block {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f9fafb;
    border-left: 4px solid #2563eb;
    border-radius: 4px;
}

/* Inline CTA */
.inline-cta {
    display: inline-block;
    margin-top: 1.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: #2563eb;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.inline-cta:hover {
    color: #1d4ed8;
}

/* Testimonials Inline */
.testimonial-inline {
    margin: 3.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial-card {
    padding: 1.8rem;
    background-color: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.testimonial-card p {
    font-size: 1.08rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    display: block;
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

/* Services Reveal Section */
.reveal-section {
    margin: 4rem 0;
    padding: 3rem 0;
    background-color: #f3f4f6;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.services-reveal {
    margin-top: 2.5rem;
}

.service-item {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.service-item.featured-service {
    border: 2px solid #2563eb;
    position: relative;
}

.service-item.featured-service::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 1.5rem;
    background-color: #2563eb;
    color: #ffffff;
    padding: 0.3rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 4px;
}

.service-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #2563eb;
    background-color: #eff6ff;
    padding: 0.4rem 0.9rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.service-item h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

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

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

.service-features li {
    padding-left: 1.8rem;
    position: relative;
    font-size: 0.98rem;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 0.7rem;
}

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

.service-price {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 1.5rem 0 1rem;
}

.service-select-btn,
.service-btn {
    display: inline-block;
    padding: 0.9rem 1.8rem;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    text-align: center;
}

.service-select-btn:hover,
.service-btn:hover {
    background-color: #1d4ed8;
}

.service-btn.primary {
    background-color: #2563eb;
}

/* Urgency Block */
.urgency-block {
    margin: 3rem 0;
    padding: 1.8rem;
    background-color: #fef3c7;
    border-left: 4px solid #f59e0b;
    border-radius: 4px;
}

.urgency-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #92400e;
    font-weight: 500;
    margin: 0;
}

/* Final Push and Closing */
.final-push,
.closing-statement {
    margin: 3rem 0;
}

/* Form Section */
.form-section {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background-color: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.form-container h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.enrollment-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group textarea {
    padding: 0.9rem;
    font-size: 1rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

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

.form-group input[readonly] {
    background-color: #f3f4f6;
    cursor: not-allowed;
}

.form-hint {
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 0.4rem;
}

.submit-btn {
    padding: 1rem 2rem;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    background-color: #1d4ed8;
}

/* CTA Blocks */
.cta-block-centered {
    margin: 3.5rem 0;
    padding: 3rem 2rem;
    background-color: #eff6ff;
    border-radius: 8px;
    text-align: center;
}

.cta-block-centered h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
}

.cta-block-centered p {
    font-size: 1.05rem;
    color: #4b5563;
    margin-bottom: 1.8rem;
}

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

.cta-button {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.2s ease;
    min-width: 200px;
    text-align: center;
}

.cta-button.primary {
    background-color: #2563eb;
    color: #ffffff;
}

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

.cta-button.secondary {
    background-color: #ffffff;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.cta-button.secondary:hover {
    background-color: #eff6ff;
}

/* Values and Principles */
.values-section,
.principle-item {
    margin: 2rem 0;
}

.principle-item {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.principle-item:last-child {
    border-bottom: none;
}

/* Services Page Specific */
.services-page .service-item {
    margin-bottom: 3rem;
}

/* Contact Page */
.contact-section {
    margin: 2.5rem 0;
}

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

.contact-info,
.contact-details-text {
    flex: 1;
}

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

.contact-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
}

.contact-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 0.5rem;
}

.contact-note {
    font-size: 0.9rem;
    color: #6b7280;
    font-style: italic;
}

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

.faq-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
}

.faq-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #2563eb;
}

.map-placeholder {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f3f4f6;
    border-radius: 8px;
    text-align: center;
}

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

/* Thanks Page */
.thanks-page {
    padding: 4rem 1.5rem;
    text-align: center;
}

.thanks-content {
    max-width: 600px;
    margin: 0 auto;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #10b981;
    color: #ffffff;
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-page h1 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.thanks-lead {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 2.5rem;
}

.thanks-details {
    background-color: #f9fafb;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
    text-align: left;
}

.thanks-details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
}

.thanks-details p {
    font-size: 1rem;
    color: #374151;
}

.next-steps {
    margin: 2.5rem 0;
    text-align: left;
}

.next-steps h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.next-steps ol {
    margin-left: 1.5rem;
}

.next-steps li {
    font-size: 1rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 0.8rem;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2.5rem 0;
}

.thanks-contact {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.thanks-contact p {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

/* Legal Pages */
.legal-page {
    max-width: 800px;
}

.legal-page h1 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.legal-updated {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 2.5rem;
}

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

.cookie-table th,
.cookie-table td {
    padding: 0.8rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.cookie-table th {
    background-color: #f9fafb;
    font-weight: 600;
    color: #1a1a1a;
}

.cookie-table td {
    font-size: 0.95rem;
    color: #374151;
}

/* Footer */
.site-footer {
    background-color: #1f2937;
    color: #d1d5db;
    padding: 3rem 1.5rem 1.5rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

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

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

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

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

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

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #9ca3af;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 90;
}

.sticky-cta-btn {
    padding: 1rem 1.8rem;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
}

.sticky-cta-btn:hover {
    background-color: #1d4ed8;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 110;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    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;
    text-align: center;
}

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

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-btn.accept {
    background-color: #10b981;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #059669;
}

.cookie-btn.reject {
    background-color: #6b7280;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #4b5563;
}

/* Responsive Design */
@media (min-width: 640px) {
    .hero-editorial h1 {
        font-size: 3rem;
    }

    .testimonial-inline {
        flex-direction: row;
    }

    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

@media (min-width: 768px) {
    .nav-container {
        flex-wrap: nowrap;
    }

    .editorial-container {
        padding: 3rem 2rem;
    }

    .hero-editorial {
        padding: 4rem 0 3rem;
    }

    .image-break {
        margin: 4rem -2rem;
    }

    .reveal-section {
        margin-left: -2rem;
        margin-right: -2rem;
        padding-left: 2rem;
        padding-right: 2rem;
    }

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

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-column {
        flex: 1;
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .editorial-container {
        max-width: 720px;
    }

    .legal-page {
        max-width: 900px;
    }
}
