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

:root {
    --color-primary: #1a1a2e;
    --color-secondary: #16213e;
    --color-accent: #0f3460;
    --color-highlight: #e94560;
    --color-text: #2d3436;
    --color-text-light: #636e72;
    --color-bg: #ffffff;
    --color-bg-alt: #f8f9fa;
    --color-border: #e1e8ed;
    --font-body: 'Georgia', 'Times New Roman', serif;
    --font-heading: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --max-width-narrow: 680px;
    --max-width-wide: 1100px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
}

body {
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text);
    background-color: var(--color-bg);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
    color: var(--color-primary);
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: var(--spacing-md);
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    margin-bottom: var(--spacing-sm);
}

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

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

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

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

.nav-wrapper {
    max-width: var(--max-width-wide);
    margin: 0 auto;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--color-primary);
    margin: 3px 0;
    transition: 0.3s;
}

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

.nav-menu a {
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-primary);
    color: #fff;
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    max-width: var(--max-width-wide);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 0.95rem;
}

.cookie-content a {
    color: #fff;
    text-decoration: underline;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.625rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-cookie-accept {
    background: var(--color-highlight);
    color: #fff;
}

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

.btn-cookie-reject {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

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

/* Editorial Main Layout */
.editorial-main {
    min-height: 60vh;
}

.content-narrow {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.content-wide {
    max-width: var(--max-width-wide);
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

/* Hero Editorial */
.hero-editorial {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    color: #fff;
    padding: 5rem 1.5rem;
    margin-bottom: 3rem;
}

.hero-content-narrow {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
}

.hero-editorial h1 {
    color: #fff;
    font-size: 2.75rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.lead-text {
    font-size: 1.35rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0;
}

/* Page Header */
.page-header {
    background: var(--color-bg-alt);
    padding: 4rem 1.5rem 3rem;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 2rem;
}

.page-header h1 {
    margin-bottom: 1rem;
}

.page-header .lead-text {
    color: var(--color-text-light);
    font-size: 1.2rem;
}

/* Story Sections */
.story-section,
.insight-section,
.problem-amplification,
.trust-building,
.story-continuation,
.social-proof,
.mission-section,
.values-section,
.team-section {
    margin-bottom: 4rem;
}

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

/* Lists */
.impact-list,
.features-list {
    list-style: none;
    margin: 2rem 0;
}

.impact-list li,
.features-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
}

.impact-list li:before,
.features-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--color-highlight);
    font-weight: bold;
}

/* Benefit Cards */
.benefit-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.benefit-card {
    background: var(--color-bg-alt);
    padding: 1.75rem;
    border-left: 4px solid var(--color-highlight);
    border-radius: 4px;
}

.benefit-card h4 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: var(--color-text-light);
    margin: 0;
    font-size: 1rem;
}

/* Testimonials */
.testimonial-inline {
    background: var(--color-bg-alt);
    padding: 3rem 1.5rem;
    margin: 3rem 0;
}

.testimonial {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
    border-left: 4px solid var(--color-accent);
    padding-left: 2rem;
}

.testimonial p {
    font-style: italic;
    font-size: 1.25rem;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.testimonial cite {
    font-style: normal;
    color: var(--color-text-light);
    font-size: 0.95rem;
    font-family: var(--font-heading);
}

/* Stats Grid */
.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem 0;
    justify-content: center;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 150px;
}

.stat strong {
    font-size: 2.5rem;
    color: var(--color-highlight);
    font-family: var(--font-heading);
    display: block;
    margin-bottom: 0.5rem;
}

.stat span {
    font-size: 0.9rem;
    color: var(--color-text-light);
    font-family: var(--font-heading);
}

/* CTAs */
.inline-cta {
    margin: 2rem 0;
    text-align: center;
}

.cta-link {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-accent);
    font-weight: 600;
}

.cta-link:hover {
    color: var(--color-highlight);
}

.cta-button,
.cta-button-large {
    display: inline-block;
    background: var(--color-highlight);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cta-button-large {
    font-size: 1.15rem;
    padding: 1.25rem 3rem;
}

.cta-button:hover,
.cta-button-large:hover {
    background: #d63851;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 69, 96, 0.3);
}

.cta-section {
    text-align: center;
    padding: 3rem 0;
}

/* Services */
.services-reveal,
.services-comparison {
    background: var(--color-bg-alt);
    padding: 4rem 1.5rem;
    margin: 3rem 0;
}

.service-selection {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 3rem 0;
    justify-content: center;
}

.service-option {
    background: #fff;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    padding: 2rem;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s;
}

.service-option:hover {
    border-color: var(--color-accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.service-option.featured {
    border-color: var(--color-highlight);
    box-shadow: 0 4px 16px rgba(233, 69, 96, 0.2);
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--color-highlight);
    color: #fff;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

.service-option h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.price {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-text-light);
}

.service-description {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.service-option ul {
    list-style: none;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.service-option ul li {
    padding: 0.5rem 0 0.5rem 1.75rem;
    position: relative;
    font-size: 0.95rem;
    font-family: var(--font-heading);
}

.service-option ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-highlight);
    font-weight: bold;
}

.select-service {
    background: var(--color-accent);
    color: #fff;
    border: none;
    padding: 0.875rem 1.5rem;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.select-service:hover {
    background: var(--color-highlight);
}

.service-option.featured .select-service {
    background: var(--color-highlight);
}

.service-option.featured .select-service:hover {
    background: #d63851;
}

/* Form Section */
.form-section {
    background: var(--color-bg-alt);
    padding: 4rem 1.5rem;
    margin: 3rem 0;
}

.selected-service-display {
    background: #fff;
    padding: 1.25rem;
    border-left: 4px solid var(--color-highlight);
    margin-bottom: 2rem;
    font-family: var(--font-heading);
}

.editorial-form {
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-family: var(--font-heading);
    font-size: 1rem;
    transition: border-color 0.2s;
}

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

.btn-submit {
    background: var(--color-highlight);
    color: #fff;
    border: none;
    padding: 1rem 3rem;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

/* Urgency Section */
.urgency-section {
    margin: 3rem 0;
}

.urgency-box {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe3e8 100%);
    border: 2px solid var(--color-highlight);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
}

.urgency-box h3 {
    color: var(--color-highlight);
    margin-top: 0;
}

/* Final CTA */
.final-cta {
    text-align: center;
    padding: 4rem 0;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-primary);
    padding: 1rem;
    text-align: center;
    z-index: 90;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

.sticky-cta-btn {
    display: inline-block;
    background: var(--color-highlight);
    color: #fff;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-weight: 600;
    transition: background 0.2s;
}

.sticky-cta-btn:hover {
    background: #d63851;
}

/* Values Grid */
.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.value-item {
    background: var(--color-bg-alt);
    padding: 2rem;
    border-radius: 6px;
}

.value-item h3 {
    margin-top: 0;
    color: var(--color-highlight);
}

/* Contact Details */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.contact-item {
    background: var(--color-bg-alt);
    padding: 2rem;
    border-radius: 6px;
}

.contact-item h3 {
    margin-top: 0;
    font-size: 1.25rem;
}

.contact-item a {
    font-weight: 600;
}

/* FAQ */
.faq-section {
    margin: 3rem 0;
}

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

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

.faq-item h3 {
    margin-top: 0;
    font-size: 1.2rem;
    color: var(--color-primary);
}

/* Map Placeholder */
.map-placeholder {
    margin: 3rem 0;
}

.map-info {
    background: var(--color-bg-alt);
    padding: 2rem;
    border-radius: 6px;
}

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

.thanks-content h1 {
    color: var(--color-highlight);
    margin-bottom: 1rem;
}

.thanks-message {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--color-bg-alt);
    border-radius: 6px;
}

.next-steps {
    margin: 3rem 0;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.next-steps ol {
    margin-top: 1rem;
}

.next-steps li {
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
}

.thanks-cta {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* Legal Pages */
.legal-page section {
    margin-bottom: 3rem;
}

.legal-page h3 {
    font-size: 1.25rem;
    margin-top: 2rem;
}

.legal-page ul {
    margin: 1rem 0 1rem 2rem;
}

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

.last-updated {
    color: var(--color-text-light);
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 2rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-family: var(--font-heading);
}

.cookie-table th,
.cookie-table td {
    border: 1px solid var(--color-border);
    padding: 0.75rem;
    text-align: left;
}

.cookie-table th {
    background: var(--color-bg-alt);
    font-weight: 600;
}

/* Footer */
.footer-minimal {
    background: var(--color-primary);
    color: #fff;
    padding: 3rem 1.5rem 2rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: var(--max-width-wide);
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    transition: color 0.2s;
}

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

.footer-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    font-family: var(--font-heading);
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.65rem;
    }

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

    .lead-text {
        font-size: 1.15rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-bg);
        border-bottom: 1px solid var(--color-border);
        padding: 1rem;
        gap: 0.5rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .service-selection {
        flex-direction: column;
    }

    .service-option {
        max-width: none;
    }

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

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .content-narrow,
    .content-wide {
        padding: 2rem 1rem;
    }

    .hero-editorial {
        padding: 3rem 1rem;
    }
}

@media (min-width: 769px) {
    .benefit-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-card {
        flex: 1;
        min-width: 280px;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-item {
        flex: 1;
        min-width: 250px;
    }

    .contact-details {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact-item {
        flex: 1;
        min-width: 250px;
    }
}
