/* 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 {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

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

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

.cookie-content p {
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

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

.btn-cookie.accept {
    background-color: #2563eb;
    color: #ffffff;
}

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

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

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

/* Navigation */
.nav-minimal {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

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

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

.logo:hover {
    color: #2563eb;
}

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

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: #1a1a1a;
    margin: 3px 0;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    font-size: 1rem;
    font-weight: 500;
    color: #4a4a4a;
    position: relative;
    padding: 0.3rem 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #2563eb;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #2563eb;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Editorial Container - Main Layout */
.editorial-container {
    background-color: #ffffff;
}

.hero-editorial {
    padding: 5rem 1.5rem 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.page-header-editorial {
    padding: 4rem 1.5rem 2.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-text-narrow {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.hero-text-narrow h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.lead-text {
    font-size: 1.25rem;
    color: #4a4a4a;
    line-height: 1.6;
    font-weight: 400;
}

/* Story Section - Narrow Content */
.story-section {
    padding: 4rem 1.5rem;
    background-color: #ffffff;
}

.narrow-content {
    max-width: 680px;
    margin: 0 auto;
}

.story-paragraph {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #2c2c2c;
    margin-bottom: 1.8rem;
    font-weight: 400;
}

.narrow-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 3.5rem 0 1.5rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

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

.narrow-content ul,
.narrow-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1.8rem;
}

.narrow-content li {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2c2c2c;
    margin-bottom: 0.8rem;
}

.narrow-content a {
    color: #2563eb;
    text-decoration: underline;
}

.narrow-content a:hover {
    color: #1d4ed8;
}

/* Inline Images */
.inline-image {
    width: 100%;
    height: auto;
    margin: 3rem 0;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* Inline CTA */
.inline-cta {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.cta-link {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2563eb;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s ease;
}

.cta-link:hover {
    color: #1d4ed8;
    transform: translateX(4px);
}

/* Testimonial Inline */
.testimonial-inline {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f8f9fa;
    border-left: 4px solid #2563eb;
    font-size: 1.15rem;
    line-height: 1.7;
    color: #2c2c2c;
    font-style: italic;
}

.testimonial-inline strong {
    font-style: normal;
    font-weight: 600;
    color: #1a1a1a;
}

/* Pillars and Lists */
.pillars-list,
.values-list {
    margin: 2rem 0;
}

.pillar-item,
.value-item,
.difference-block,
.feature-item {
    margin-bottom: 2.5rem;
}

.pillar-item h3,
.value-item h3,
.difference-block h3,
.feature-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
}

.pillar-item p,
.value-item p,
.difference-block p,
.feature-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a4a4a;
}

/* Stats */
.stats-list {
    list-style: none;
    margin: 2rem 0;
}

.stats-list li {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #2c2c2c;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.stats-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 3rem 0;
}

.stat-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 200px;
    text-align: center;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.4;
}

/* CTA Section Inline */
.cta-section-inline {
    margin: 3.5rem 0;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 12px;
    text-align: center;
}

.cta-section-inline h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-section-inline p {
    font-size: 1.1rem;
    color: #e0e7ff;
    margin-bottom: 1.5rem;
}

.cta-section-inline.highlight {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.cta-text-bold {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.2rem;
}

.btn-primary-inline,
.btn-secondary-inline {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    margin: 0.5rem;
}

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

.btn-primary-inline:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary-inline {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary-inline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Services Grid Editorial */
.services-grid-editorial {
    margin: 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card-editorial {
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.service-card-editorial:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

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

.service-description {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

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

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

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

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

.service-detailed {
    padding: 2.5rem;
    background-color: #ffffff;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
}

.service-detailed h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
}

.service-duration {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 1.2rem;
    font-weight: 500;
}

.service-description-long {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.service-curriculum {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.service-curriculum h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.service-curriculum ul {
    margin-left: 1.5rem;
}

.service-curriculum li {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 0.6rem;
}

.service-price-large {
    font-size: 2.2rem;
    font-weight: 800;
    color: #2563eb;
    margin: 1.5rem 0;
}

.features-list {
    margin: 2rem 0;
}

/* Form Section */
.form-section-editorial {
    margin: 4rem 0;
    padding: 3rem;
    background-color: #f8f9fa;
    border-radius: 12px;
}

.form-section-editorial h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    text-align: center;
}

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

.registration-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

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

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

/* FAQ */
.faq-editorial {
    margin: 2rem 0;
}

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

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

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

/* Final CTA */
.final-cta-editorial {
    margin: 4rem 0;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    border-radius: 12px;
    text-align: center;
}

.final-cta-editorial h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.final-cta-editorial p {
    font-size: 1.2rem;
    color: #d1d5db;
    margin-bottom: 2rem;
}

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

.btn-final-cta:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    padding: 1.2rem;
    z-index: 999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

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

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

.sticky-cta-text {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-sticky {
    padding: 0.8rem 1.8rem;
    background-color: #2563eb;
    color: #ffffff;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

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

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

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

.contact-detail p,
.contact-detail a {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.contact-detail a {
    color: #2563eb;
    text-decoration: underline;
}

.contact-detail a:hover {
    color: #1d4ed8;
}

/* Thanks Page */
.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
}

.thanks-content {
    max-width: 600px;
    text-align: center;
}

.thanks-icon {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 1.5rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

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

.selected-service-name {
    font-size: 1.15rem;
    color: #2563eb;
    font-weight: 600;
}

.thanks-next-steps,
.thanks-email-note {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 1.2rem;
}

.thanks-actions {
    margin-top: 2.5rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

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

.btn-secondary {
    background-color: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-secondary:hover {
    background-color: #f0f7ff;
    transform: translateY(-2px);
}

/* Legal Content */
.legal-content h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 2.5rem 0 1.2rem;
}

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

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #2c2c2c;
    margin-bottom: 1.2rem;
}

.legal-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #2c2c2c;
    margin-bottom: 0.7rem;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 3rem 1.5rem 1.5rem;
    margin-top: 4rem;
}

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

.footer-section {
    flex: 1 1 250px;
}

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

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #d1d5db;
}

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

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

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

.footer-section ul li a:hover {
    color: #2563eb;
}

.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: #9ca3af;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        display: none;
    }

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

    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 0.8rem 0;
        border-bottom: 1px solid #f3f4f6;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

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

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

    .story-paragraph {
        font-size: 1.05rem;
    }

    .narrow-content h2 {
        font-size: 1.6rem;
    }

    .narrow-content h3 {
        font-size: 1.3rem;
    }

    .stat-item {
        flex: 1 1 100%;
    }

    .sticky-cta-content {
        justify-content: center;
        text-align: center;
    }

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

    .thanks-content h1 {
        font-size: 2rem;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-text-narrow h1 {
        font-size: 1.5rem;
    }

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

    .cta-section-inline {
        padding: 2rem 1.5rem;
    }

    .cta-section-inline h3 {
        font-size: 1.5rem;
    }

    .final-cta-editorial {
        padding: 3rem 1.5rem;
    }

    .final-cta-editorial h3 {
        font-size: 1.6rem;
    }

    .service-detailed {
        padding: 1.5rem;
    }

    .form-section-editorial {
        padding: 2rem 1.5rem;
    }
}