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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-dark: #2c3e50;
    --white: #ffffff;
    --border-color: #ddd;
    --max-width-narrow: 680px;
    --max-width-wide: 1200px;
    --spacing-small: 1rem;
    --spacing-medium: 2rem;
    --spacing-large: 4rem;
    --spacing-xlarge: 6rem;
}

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

.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    position: sticky;
    top: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
}

.nav-brand a {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

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

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

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

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

.hero-editorial {
    padding: var(--spacing-xlarge) 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-text-narrow {
    max-width: var(--max-width-narrow);
    margin: 0 auto 3rem;
    text-align: center;
}

.hero-text-narrow h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 800;
}

.lead-text {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: var(--text-light);
    font-style: italic;
}

.hero-image {
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.text-section {
    padding: var(--spacing-large) 2rem;
}

.text-section.dark-bg {
    background: var(--bg-dark);
    color: var(--white);
}

.text-section.dark-bg h2 {
    color: var(--white);
}

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

.opening-graf {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.text-section p {
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
}

.text-section h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.3;
}

.text-section h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

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

.benefit-list li {
    padding-left: 2rem;
    margin-bottom: 1rem;
    position: relative;
    font-size: 1.0625rem;
}

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.25rem;
}

.image-break {
    margin: var(--spacing-large) 0;
}

.image-break img {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    text-align: center;
    font-style: italic;
    color: var(--text-light);
    padding: 1rem 2rem;
    font-size: 0.9375rem;
}

.inline-cta {
    padding: var(--spacing-medium) 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.cta-box {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
    text-align: center;
    padding: 3rem 2rem;
}

.cta-box h3 {
    color: var(--white);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin-bottom: 1.5rem;
}

.btn-primary {
    display: inline-block;
    background: var(--white);
    color: #667eea;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s;
    font-size: 1.0625rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.testimonial-inline {
    padding: var(--spacing-large) 2rem;
    background: var(--bg-light);
}

.testimonial-inline blockquote {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--text-dark);
    padding: 2rem;
    border-left: 4px solid var(--accent-color);
}

.testimonial-inline footer {
    margin-top: 1.5rem;
    font-style: normal;
    font-weight: 600;
    color: var(--text-light);
    font-size: 1rem;
}

.services-editorial {
    padding: var(--spacing-medium) 2rem;
    max-width: var(--max-width-wide);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    padding: 2.5rem;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

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

.service-card.premium {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-color: var(--primary-color);
    border-width: 3px;
}

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

.badge.premium {
    background: var(--secondary-color);
}

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

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    color: var(--text-dark);
}

.service-features li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin: 1.5rem 0;
}

.savings {
    font-size: 0.9375rem;
    color: #27ae60;
    font-weight: 600;
    margin-bottom: 1rem;
}

.btn-select-service {
    width: 100%;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.0625rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.btn-select-service:hover {
    background: #2980b9;
    transform: scale(1.02);
}

.urgency-section {
    padding: var(--spacing-large) 2rem;
    background: linear-gradient(135deg, #fc6767 0%, #ec008c 100%);
    color: var(--white);
}

.urgency-section h3 {
    color: var(--white);
    text-align: center;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.urgency-section p {
    text-align: center;
    font-size: 1.125rem;
    max-width: 600px;
    margin: 1rem auto;
}

.form-section {
    padding: var(--spacing-xlarge) 2rem;
    background: var(--bg-light);
}

.enrollment-form {
    max-width: 600px;
    margin: 2rem auto 0;
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

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

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

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

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
}

.checkbox-group a {
    color: var(--accent-color);
}

.btn-submit {
    width: 100%;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 1.25rem 2rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.btn-submit:hover {
    background: #c0392b;
    transform: scale(1.02);
}

.final-cta {
    padding: var(--spacing-large) 2rem;
    text-align: center;
    background: var(--primary-color);
    color: var(--white);
}

.final-cta h3 {
    color: var(--white);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.125rem;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-btn {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.sticky-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.5);
}

.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: var(--max-width-wide);
    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.125rem;
}

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

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

.footer-col a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 1.5rem 2rem;
    z-index: 10000;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
}

.cookie-banner.hidden {
    display: none;
}

.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;
    flex: 1;
}

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

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

.btn-cookie,
.btn-cookie-alt {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.btn-cookie:hover {
    background: #c0392b;
}

.btn-cookie-alt {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

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

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        border-top: 1px solid var(--border-color);
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        display: none;
    }

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

    .nav-menu li {
        padding: 0.75rem 2rem;
        border-bottom: 1px solid var(--border-color);
    }

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

    .text-section {
        padding: 3rem 1.5rem;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-actions {
        width: 100%;
    }

    .btn-cookie,
    .btn-cookie-alt {
        flex: 1;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }
}

@media (min-width: 769px) {
    .services-editorial {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}