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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-color: #333;
    --text-light: #666;
    --bg-color: #fff;
    --bg-gray: #f8f9fa;
    --border-color: #ddd;
    --shadow: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-hover: 0 4px 16px rgba(0,0,0,0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background: var(--bg-color);
    font-size: 16px;
}

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

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

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

/* Sidebar Navigation */
.nav-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 220px;
    height: 100vh;
    background: var(--primary-color);
    padding: 2rem 1.5rem;
    z-index: 100;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3rem;
}

.nav-menu {
    list-style: none;
}

.nav-menu li {
    margin-bottom: 1rem;
}

.nav-menu a {
    display: block;
    color: rgba(255,255,255,0.8);
    padding: 0.6rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

/* Editorial Container - Main Layout */
.editorial-container {
    margin-left: 220px;
    padding: 0;
}

.story-flow {
    max-width: 720px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* Story Header */
.story-header {
    margin-bottom: 4rem;
}

.story-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.story-intro h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 800;
}

.story-lead {
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.6;
}

.story-image {
    margin-top: 2.5rem;
    border-radius: 8px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
}

/* Story Sections */
.story-section {
    margin-bottom: 3rem;
}

.story-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.story-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: var(--primary-color);
    font-weight: 600;
}

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

.story-section.with-image {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

/* Inline CTA */
.inline-cta {
    margin: 3rem 0;
    padding: 1.5rem;
    background: var(--bg-gray);
    border-radius: 8px;
    text-align: center;
}

.btn-text {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.1rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 3px;
    transition: all 0.3s ease;
}

.btn-text:hover {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Highlight Box */
.highlight-box {
    background: #fef9e7;
    border-left: 4px solid var(--secondary-color);
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 4px;
}

.highlight-box h3 {
    margin-top: 0;
}

.story-list {
    padding-left: 1.5rem;
    margin: 1.5rem 0;
}

.story-list li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Testimonials */
.testimonial-inline {
    margin: 4rem 0;
    padding: 2.5rem;
    background: var(--primary-color);
    color: #fff;
    border-radius: 8px;
}

.testimonial-inline.secondary {
    background: var(--bg-gray);
    color: var(--text-color);
    border: 2px solid var(--border-color);
}

.testimonial-inline blockquote {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.7;
}

.testimonial-inline cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Services Cards */
.services-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

.service-card {
    background: #fff;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.service-card.featured {
    border-color: var(--secondary-color);
    border-width: 3px;
}

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

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

.service-desc {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin: 1.5rem 0;
}

.service-features span {
    font-size: 0.95rem;
    color: var(--text-light);
    padding-left: 1.5rem;
    position: relative;
}

.service-features span:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1.5rem 0;
}

.btn-service {
    display: inline-block;
    background: var(--accent-color);
    color: #fff;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: var(--secondary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Split Content */
.split-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

.split-text {
    flex: 1;
}

.split-image {
    flex: 1;
}

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

/* Form */
.form-container {
    background: var(--bg-gray);
    padding: 3rem;
    border-radius: 12px;
    margin: 4rem 0;
}

.editorial-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 100%;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    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);
}

.btn-submit {
    background: var(--secondary-color);
    color: #fff;
    padding: 1.1rem 2.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Final Push */
.final-push {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--bg-gray);
    border-radius: 12px;
}

.btn-final {
    display: inline-block;
    background: var(--secondary-color);
    color: #fff;
    padding: 1.2rem 3rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.btn-final:hover {
    background: #c0392b;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

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

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

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

.footer-col p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

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

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

.footer-col ul li a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: #fff;
    padding: 1.5rem;
    z-index: 1000;
    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-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

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

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

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

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

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

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

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

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

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

.sticky-cta a {
    display: block;
    background: var(--secondary-color);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-hover);
    transition: all 0.3s ease;
}

.sticky-cta a:hover {
    background: #c0392b;
    transform: scale(1.05);
}

/* Services Detailed */
.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 3rem 0;
}

.service-detail {
    background: #fff;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.service-detail.featured-service {
    border-color: var(--secondary-color);
    border-width: 3px;
}

.service-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--secondary-color);
    color: #fff;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
}

.service-detail-header {
    background: var(--bg-gray);
    padding: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-detail-header h2 {
    margin: 0;
    font-size: 2rem;
}

.price-large {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
}

.service-detail-content {
    padding: 2.5rem;
}

.service-intro {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.feature-list li {
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    position: relative;
    font-size: 1rem;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.learning-list {
    padding-left: 1.5rem;
    margin: 1.5rem 0;
}

.learning-list li {
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.timeline-info {
    background: #f0f8ff;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.timeline-info p {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.timeline-info p:last-child {
    margin-bottom: 0;
}

/* FAQ */
.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

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

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

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

.faq-item p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Final CTA */
.final-cta {
    text-align: center;
    background: var(--bg-gray);
    padding: 3rem 2rem;
    border-radius: 12px;
    margin: 4rem 0;
}

.final-cta h2 {
    margin-bottom: 1rem;
}

.btn-primary {
    display: inline-block;
    background: var(--secondary-color);
    color: #fff;
    padding: 1.1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #c0392b;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    display: inline-block;
    background: var(--accent-color);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    margin: 0.5rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #2980b9;
    color: #fff;
}

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

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

.contact-card {
    background: var(--bg-gray);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.contact-card h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-card p {
    margin-bottom: 0.5rem;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 1rem;
}

.contact-cta-box {
    background: var(--primary-color);
    color: #fff;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin: 3rem 0;
}

.contact-cta-box h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.contact-cta-box p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
}

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

.centered {
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin-bottom: 2rem;
}

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

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
    text-align: left;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.step-content p {
    margin: 0;
    color: var(--text-light);
}

.info-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.info-box h3 {
    margin-top: 0;
}

.selected-service-info {
    background: var(--bg-gray);
    padding: 1.5rem;
    border-radius: 8px;
    font-style: italic;
    color: var(--text-light);
}

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

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

.legal-update {
    color: var(--text-light);
    font-size: 0.95rem;
    font-style: italic;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-section h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
    color: var(--primary-color);
}

.legal-section p {
    margin-bottom: 1rem;
}

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

.legal-section ul li {
    margin-bottom: 0.6rem;
}

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

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

.legal-table th {
    background: var(--bg-gray);
    font-weight: 600;
}

.stats-list {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.stats-list li {
    font-size: 1.1rem;
}

.stats-list strong {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.cta-box {
    background: var(--accent-color);
    color: #fff;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin: 4rem 0;
}

.cta-box h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.cta-box p {
    color: rgba(255,255,255,0.95);
    margin-bottom: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-sidebar {
        width: 100%;
        height: auto;
        position: relative;
        padding: 1.5rem;
    }

    .nav-brand {
        margin-bottom: 1rem;
    }

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

    .nav-menu li {
        margin-bottom: 0;
    }

    .editorial-container {
        margin-left: 0;
    }

    .footer {
        margin-left: 0;
    }

    .story-flow {
        padding: 2rem 1.5rem;
    }

    .story-intro h1 {
        font-size: 2rem;
    }

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

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

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

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

    .sticky-cta a {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

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

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

    .btn-cookie {
        width: 100%;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin: 0 auto;
    }

    .thanks-cta {
        gap: 0.8rem;
    }
}

@media (min-width: 769px) {
    .split-content {
        flex-direction: row;
        align-items: center;
    }

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