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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f4c75;
    --highlight-color: #3282b8;
    --text-primary: #2d2d2d;
    --text-secondary: #5a5a5a;
    --text-light: #7a7a7a;
    --background: #ffffff;
    --background-alt: #f8f9fa;
    --border-color: #e0e0e0;
    --success-color: #2d6a4f;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--background);
    font-size: 18px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
}

p {
    margin-bottom: 1.3rem;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--highlight-color);
}

/* Navigation */
.nav-minimal {
    background: var(--background);
    border-bottom: 1px solid var(--border-color);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-links a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--accent-color);
}

/* Editorial Container - Main Layout */
.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.page-header {
    margin-bottom: 3rem;
    text-align: left;
}

.page-header h1 {
    font-size: 2.8rem;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 400;
}

/* Hero Section - Editorial Style */
.hero-editorial {
    margin-bottom: 3rem;
}

.hero-editorial h1 {
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

.hero-image {
    width: 100%;
    height: auto;
    margin: 2rem 0;
    border-radius: 4px;
}

/* Story Content */
.story-intro {
    margin: 3rem 0;
}

.opening-line {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.opening-paragraph {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

/* Content Images */
.content-image,
.inline-image {
    width: 100%;
    height: auto;
    margin: 2.5rem 0;
    border-radius: 4px;
}

.service-image {
    width: 100%;
    height: auto;
    margin: 1.5rem 0;
    border-radius: 4px;
}

/* Lists */
.insight-list,
.benefit-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.insight-list li,
.benefit-list li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

/* Sections */
.problem-amplification,
.insight-section,
.trust-building,
.benefit-reveal,
.social-proof,
.final-push {
    margin: 4rem 0;
}

.strategy-block,
.approach-block {
    margin: 2rem 0;
    padding-left: 1.5rem;
    border-left: 3px solid var(--accent-color);
}

/* Testimonials */
.testimonial {
    background: var(--background-alt);
    padding: 2rem;
    margin: 2.5rem 0;
    border-left: 4px solid var(--accent-color);
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Service Cards */
.services-list {
    margin: 3rem 0;
}

.service-card {
    background: var(--background);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    margin: 3rem 0;
    border-radius: 6px;
    position: relative;
}

.service-card.featured {
    border: 2px solid var(--accent-color);
    background: var(--background-alt);
}

.badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    background: var(--accent-color);
    color: white;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
}

.service-card h2,
.service-card h3 {
    margin-top: 0;
}

.service-tagline {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.service-description {
    margin: 1.5rem 0;
}

.service-pricing {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

/* CTAs */
.cta-inline {
    background: var(--background-alt);
    padding: 2.5rem;
    margin: 3rem 0;
    text-align: center;
    border-radius: 6px;
}

.cta-inline.urgency {
    background: linear-gradient(135deg, #16213e 0%, #0f4c75 100%);
    color: white;
}

.cta-inline.urgency .cta-text,
.cta-inline.urgency .urgency-text {
    color: white;
}

.urgency-text {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--highlight-color);
}

.cta-text {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.cta-section {
    text-align: center;
    margin: 4rem 0;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-select,
.btn-submit {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: var(--accent-color);
    color: white;
}

.btn-primary:hover {
    background: var(--highlight-color);
    color: white;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    margin-left: 1rem;
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: white;
}

.btn-select,
.btn-submit {
    background: var(--primary-color);
    color: white;
    width: 100%;
    margin-top: 1rem;
}

.btn-select:hover,
.btn-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Forms */
.enrollment-section {
    margin: 4rem 0;
    padding: 3rem;
    background: var(--background-alt);
    border-radius: 6px;
}

.contact-form {
    margin: 2rem 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 999;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.sticky-btn {
    background: var(--accent-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: var(--highlight-color);
    color: white;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 3rem 2rem 1rem;
    margin-top: 5rem;
}

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

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

.footer-col h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col p {
    color: #b0b0b0;
    font-size: 0.95rem;
}

.footer-col a {
    display: block;
    color: #b0b0b0;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 1.5rem 2rem;
    display: none;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10000;
}

.cookie-banner p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

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

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

.btn-cookie.accept {
    background: var(--success-color);
    color: white;
}

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

.btn-cookie.reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-cookie.reject:hover {
    background: white;
    color: var(--primary-color);
}

/* Contact Page */
.contact-content {
    margin: 3rem 0;
}

.contact-info {
    margin-bottom: 3rem;
}

.contact-block {
    margin: 2.5rem 0;
}

.contact-block h3 {
    margin-top: 0;
    margin-bottom: 0.8rem;
}

.contact-note {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-style: italic;
}

.contact-image {
    width: 100%;
    height: auto;
    margin: 2rem 0;
    border-radius: 4px;
}

.contact-questions {
    margin: 3rem 0;
}

.faq-item {
    margin: 2rem 0;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

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

.faq-item h3 {
    margin-top: 0;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.contact-reminder {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: var(--background-alt);
    border-radius: 6px;
}

/* Thanks Page */
.thanks-content {
    text-align: center;
}

.thanks-message {
    margin: 3rem 0;
    text-align: left;
}

.next-step {
    margin: 2.5rem 0;
    padding: 1.5rem;
    background: var(--background-alt);
    border-radius: 6px;
    border-left: 4px solid var(--accent-color);
}

.next-step h3 {
    margin-top: 0;
    color: var(--accent-color);
}

.selected-program-box {
    background: linear-gradient(135deg, #16213e 0%, #0f4c75 100%);
    color: white;
    padding: 2rem;
    border-radius: 6px;
    margin: 2rem 0;
}

.selected-program-box h3 {
    color: white;
    margin-top: 0;
}

.program-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 1rem 0;
}

.thanks-cta {
    margin: 3rem 0;
}

/* Legal Pages */
.legal-page .legal-content {
    margin: 2rem 0;
}

.legal-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
}

/* Services Intro */
.services-intro {
    margin: 2rem 0 3rem;
}

/* Story Content */
.story-content {
    margin: 2rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

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

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

    .hero-editorial h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .opening-line {
        font-size: 1.3rem;
    }

    .opening-paragraph {
        font-size: 1.1rem;
    }

    .price {
        font-size: 2rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .enrollment-section {
        padding: 2rem 1.5rem;
    }

    .footer-content {
        flex-direction: column;
    }

    .btn-secondary {
        margin-left: 0;
        margin-top: 1rem;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .cookie-banner {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie {
        width: 100%;
    }

    .cta-section a {
        display: block;
        margin: 0.5rem 0;
    }
}

@media (max-width: 480px) {
    .hero-editorial h1 {
        font-size: 1.8rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .cta-text {
        font-size: 1.1rem;
    }
}