:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f3460;
    --highlight-color: #e94560;
    --text-primary: #2d2d2d;
    --text-secondary: #666666;
    --text-light: #ffffff;
    --bg-light: #f5f5f5;
    --border-color: #e0e0e0;
    --success-color: #28a745;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

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

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

.cookie-content a {
    color: var(--highlight-color);
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: var(--highlight-color);
    color: var(--text-light);
}

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

.btn-reject {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-light);
}

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

.nav-minimal {
    background-color: var(--primary-color);
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: -0.5px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    transition: all 0.3s ease;
}

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

.nav-menu li a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 1rem;
}

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

.editorial-container {
    max-width: 100%;
}

.hero-editorial {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    padding: 6rem 5% 4rem;
    color: var(--text-light);
}

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

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

.lead-text {
    font-size: 1.3rem;
    line-height: 1.6;
    opacity: 0.95;
    margin-top: 1rem;
}

.content-narrow {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.story-section,
.problem-deep,
.transformation-story,
.methodology-reveal,
.trust-building,
.testimonial-flow,
.deeper-insight,
.urgency-soft,
.services-reveal,
.guarantee-section,
.final-push,
.form-section,
.faq-section {
    padding: 4rem 5%;
}

.story-section:nth-child(odd),
.problem-deep:nth-child(odd),
.testimonial-flow:nth-child(odd) {
    background-color: var(--bg-light);
}

.inline-image,
.inline-image-wide {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-color);
}

h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    font-weight: 600;
    color: var(--secondary-color);
}

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

.quote-box {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 5px solid var(--highlight-color);
    margin: 3rem 0;
}

.quote-box p {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.quote-box cite {
    font-size: 1rem;
    font-style: normal;
    opacity: 0.8;
}

.problem-list,
.learning-list {
    list-style: none;
    margin: 2rem 0;
}

.problem-list li,
.learning-list li {
    padding-left: 2rem;
    margin-bottom: 1rem;
    position: relative;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

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

.inline-cta {
    display: inline-block;
    color: var(--highlight-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.inline-cta:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.pillar-card,
.testimonial-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.testimonial-card {
    background-color: var(--bg-light);
    border-left: 4px solid var(--highlight-color);
}

.testimonial-card p {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.testimonial-card cite {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-style: normal;
}

.stats-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 3rem 0;
    justify-content: space-around;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--highlight-color);
    display: block;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    display: block;
}

.urgency-box {
    background-color: var(--accent-color);
    color: var(--text-light);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.urgency-box p {
    color: var(--text-light);
    font-size: 1.2rem;
    margin: 0;
}

.section-intro {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.service-card-editorial {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 10px;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    position: relative;
    transition: all 0.3s ease;
}

.service-card-editorial:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-card-editorial.featured {
    border: 2px solid var(--highlight-color);
    background: linear-gradient(135deg, #ffffff 0%, #fff5f7 100%);
}

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

.service-card-editorial h3 {
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card-editorial p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    margin: 2rem 0;
}

.feature-list li {
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    position: relative;
    font-size: 1rem;
    color: var(--text-secondary);
}

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

.price-reveal {
    margin: 2rem 0 1.5rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.price-note {
    font-size: 1rem;
    color: var(--text-secondary);
}

.btn-service,
.featured-btn,
.cta-button,
.btn-submit {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--highlight-color);
    color: var(--text-light);
    text-decoration: none;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service:hover,
.featured-btn:hover,
.cta-button:hover,
.btn-submit:hover {
    background-color: #d63850;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.3);
}

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

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

.cta-final-editorial {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 6px;
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.cta-final-editorial:hover {
    background-color: var(--accent-color);
    transform: scale(1.05);
}

.enrollment-form {
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: 10px;
    margin-top: 2rem;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 1px 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 {
    outline: none;
    border-color: var(--highlight-color);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--highlight-color);
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    margin-top: 1rem;
    font-size: 1.2rem;
}

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

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

.faq-item p {
    margin-bottom: 0;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    padding: 1rem 5%;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: none;
}

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

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

.sticky-text {
    color: var(--text-light);
    font-weight: 600;
    font-size: 1rem;
}

.btn-sticky {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background-color: var(--highlight-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background-color: #d63850;
}

.footer-editorial {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 3rem 5% 1.5rem;
}

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

.footer-brand h3 {
    color: var(--text-light);
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--text-light);
    opacity: 0.8;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-col h4 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

.footer-col ul li a {
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--highlight-color);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-light);
    opacity: 0.7;
    margin: 0;
    font-size: 0.9rem;
}

.about-page .value-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--highlight-color);
}

.value-card h3 {
    margin-top: 0;
}

.team-member {
    margin-bottom: 3rem;
}

.team-role {
    font-weight: 600;
    color: var(--highlight-color);
    margin-bottom: 0.5rem;
}

.philosophy-list,
.included-list,
.resource-list {
    list-style: none;
    margin: 2rem 0;
}

.philosophy-list li,
.included-list li,
.resource-list li {
    padding-left: 2rem;
    margin-bottom: 1rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-secondary);
}

.philosophy-list li::before,
.included-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.resource-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--highlight-color);
    font-weight: 700;
}

.resource-list a {
    color: var(--highlight-color);
    text-decoration: none;
}

.resource-list a:hover {
    text-decoration: underline;
}

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

.contact-detail {
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-top: 1rem;
}

.contact-detail a {
    color: var(--highlight-color);
    text-decoration: none;
}

.contact-detail a:hover {
    text-decoration: underline;
}

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

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

.success-icon {
    width: 80px;
    height: 80px;
    background-color: var(--success-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.next-steps {
    margin: 3rem 0;
}

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

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--highlight-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

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

.step-content p {
    margin-bottom: 0;
}

.info-box {
    background-color: #fff9e6;
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    border-radius: 6px;
}

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

.info-box p {
    color: #856404;
    margin-bottom: 0;
}

.legal-page h2 {
    margin-top: 3rem;
}

.legal-page h3 {
    font-size: 1.3rem;
}

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

.legal-page li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

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

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

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

.cookie-table td {
    color: var(--text-secondary);
}

.cta-section {
    text-align: center;
    padding: 4rem 5%;
    background-color: var(--bg-light);
}

.comparison-hint {
    text-align: center;
    padding: 4rem 5%;
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

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

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

    .nav-menu li {
        padding: 0.8rem 5%;
    }

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

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

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.4rem;
    }

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

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

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

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

    .sticky-content {
        flex-direction: column;
        text-align: center;
    }

    .btn-sticky {
        width: 100%;
    }

    .step-item {
        flex-direction: column;
    }
}