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

:root {
    --primary-color: #1a2332;
    --secondary-color: #2d4059;
    --accent-color: #ea5455;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --text-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-subtle: #f0f2f5;
    --bg-dark: #1a2332;
    --border-color: #e0e0e0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    font-size: 16px;
    overflow-x: hidden;
}

.container-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

.header-minimal {
    padding: 32px 0;
    background: var(--text-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-inline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.editorial-flow {
    background: var(--text-white);
}

.hero-editorial {
    padding: 96px 0 64px;
}

.headline-large {
    font-size: 44px;
    line-height: 1.15;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.intro-lead {
    font-size: 22px;
    line-height: 1.5;
    color: var(--text-light);
    font-weight: 400;
}

.content-block {
    padding: 64px 0;
}

.content-block.bg-subtle {
    background: var(--bg-subtle);
}

.content-block.bg-dark {
    background: var(--bg-dark);
}

.content-block.highlight-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.content-block.final-note {
    padding: 48px 0;
    background: var(--bg-light);
}

.section-heading {
    font-size: 32px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.section-heading-light {
    font-size: 32px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.body-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.body-text strong {
    font-weight: 600;
    color: var(--primary-color);
}

.body-text-light {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.body-text-small {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 16px;
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 40px 0;
    border-radius: 8px;
    display: block;
}

.insight-list {
    margin: 32px 0;
}

.insight-item {
    margin-bottom: 32px;
}

.insight-item h3 {
    font-size: 21px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.insight-item p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
}

.testimonial-block {
    border-left: 4px solid var(--accent-color);
    padding-left: 24px;
    margin: 40px 0;
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-dark);
    font-style: italic;
}

.testimonial-block cite {
    display: block;
    margin-top: 16px;
    font-size: 16px;
    font-style: normal;
    color: var(--text-light);
}

.testimonial-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 32px 0;
}

.testimonial-compact {
    border-left: 3px solid var(--primary-color);
    padding-left: 20px;
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-dark);
    font-style: italic;
}

.testimonial-compact cite {
    display: block;
    margin-top: 12px;
    font-size: 15px;
    font-style: normal;
    color: var(--text-light);
}

.cta-inline {
    margin: 32px 0;
}

.btn-text {
    font-size: 18px;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.btn-text:hover {
    opacity: 0.8;
}

.btn-primary {
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-white);
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(234, 84, 85, 0.3);
}

.btn-primary-large {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-white);
    padding: 18px 48px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 19px;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(26, 35, 50, 0.3);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: background 0.3s ease, color 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-white);
}

.cta-section {
    text-align: center;
    margin: 48px 0;
}

.services-reveal {
    padding: 64px 0;
    background: var(--bg-light);
}

.service-card {
    background: var(--text-white);
    padding: 40px;
    margin-bottom: 32px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    position: relative;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.service-card.featured {
    border: 2px solid var(--accent-color);
    box-shadow: 0 8px 24px rgba(234, 84, 85, 0.15);
}

.badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--accent-color);
    color: var(--text-white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.service-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin: 24px 0;
}

.service-features li {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
}

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

.service-pricing {
    margin: 32px 0 24px;
    display: flex;
    align-items: baseline;
    gap: 12px;
}

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

.price-detail {
    font-size: 16px;
    color: var(--text-light);
}

.btn-service {
    background: var(--primary-color);
    color: var(--text-white);
    border: none;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.btn-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 35, 50, 0.3);
}

.application-form {
    padding: 80px 0;
    background: var(--bg-subtle);
}

.form-heading {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
    text-align: center;
}

.form-intro {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 40px;
    text-align: center;
}

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

.form-group {
    margin-bottom: 28px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background: var(--accent-color);
    color: var(--text-white);
    border: none;
    padding: 16px 48px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(234, 84, 85, 0.4);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 32px;
}

.contact-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
}

.contact-item a {
    color: var(--accent-color);
    text-decoration: none;
}

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

.footer-minimal {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 64px 0 32px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .brand-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 90;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.btn-sticky {
    display: block;
    background: var(--accent-color);
    color: var(--text-white);
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(234, 84, 85, 0.4);
    transition: transform 0.3s ease;
}

.btn-sticky:hover {
    transform: scale(1.05);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--text-white);
    padding: 24px;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: opacity 0.3s ease;
}

.btn-accept {
    background: var(--accent-color);
    color: var(--text-white);
}

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

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.8;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 48px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 32px;
    margin-bottom: 16px;
}

.legal-content ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

.legal-content ul li {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--accent-color);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

@media (min-width: 768px) {
    .headline-large {
        font-size: 56px;
    }

    .intro-lead {
        font-size: 24px;
    }

    .section-heading,
    .section-heading-light {
        font-size: 38px;
    }

    .body-text,
    .body-text-light {
        font-size: 19px;
    }

    .nav-inline {
        flex-wrap: nowrap;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .contact-details {
        flex-direction: row;
        justify-content: space-between;
    }

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

    .testimonial-compact {
        flex: 1;
        min-width: 250px;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .container-narrow {
        padding: 0 40px;
    }

    .headline-large {
        font-size: 64px;
    }

    .content-block {
        padding: 80px 0;
    }

    .hero-editorial {
        padding: 120px 0 80px;
    }
}

@media (max-width: 767px) {
    .nav-links {
        gap: 20px;
    }

    .headline-large {
        font-size: 36px;
    }

    .intro-lead {
        font-size: 19px;
    }

    .section-heading,
    .section-heading-light {
        font-size: 28px;
    }

    .service-card {
        padding: 28px;
    }

    .service-title {
        font-size: 24px;
    }

    .price {
        font-size: 32px;
    }

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