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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #e94560;
    --accent-hover: #d63651;
    --text-dark: #2d2d2d;
    --text-light: #f5f5f5;
    --text-gray: #6b6b6b;
    --bg-light: #ffffff;
    --bg-gray: #f8f9fa;
    --bg-dark: #1a1a2e;
    --border-color: #e0e0e0;
    --transition: all 0.3s ease;
}

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

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

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

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

.main-nav {
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.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.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

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

.editorial-flow {
    background-color: var(--bg-light);
}

.hero-editorial {
    padding: 4rem 1.5rem 3rem;
    background-color: var(--bg-gray);
}

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

.hero-editorial h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 800;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.hero-image-inline {
    margin: 2.5rem 0;
    border-radius: 8px;
}

.story-section,
.insight-section,
.trust-section,
.testimonial-section,
.services-reveal,
.urgency-section,
.form-section,
.final-cta {
    padding: 4rem 1.5rem;
}

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

.story-section h2,
.insight-section h2,
.trust-section h2,
.services-reveal h2,
.urgency-section h2,
.form-section h2,
.final-cta h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

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

.content-image {
    margin: 2.5rem 0;
    border-radius: 8px;
}

.inline-cta-block {
    background-color: var(--bg-gray);
    padding: 2rem;
    margin: 3rem 0;
    border-left: 4px solid var(--accent-color);
}

.cta-text {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.btn-inline {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--text-light);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-inline:hover {
    background-color: var(--accent-hover);
    color: var(--text-light);
}

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

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

.quote-block {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 2.5rem 2rem;
    margin: 3rem 0;
    border-radius: 4px;
}

.quote-block blockquote {
    font-size: 1.3rem;
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 1rem;
}

.quote-block cite {
    display: block;
    font-size: 0.95rem;
    opacity: 0.8;
    font-style: normal;
}

.profile-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0 3rem;
}

.profile-card {
    background-color: var(--bg-gray);
    padding: 2rem;
    border-radius: 4px;
}

.profile-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.profile-card p {
    margin-bottom: 0;
    color: var(--text-gray);
}

.btn-primary-large,
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: var(--transition);
    margin-top: 1rem;
}

.btn-primary-large,
.btn-primary {
    background-color: var(--accent-color);
    color: var(--text-light);
}

.btn-primary-large:hover,
.btn-primary:hover {
    background-color: var(--accent-hover);
    color: var(--text-light);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    color: var(--text-light);
}

.testimonial-section {
    background-color: var(--bg-gray);
}

.testimonial {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.testimonial p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial cite {
    display: block;
    font-size: 0.9rem;
    color: var(--text-gray);
    font-style: normal;
    font-weight: 600;
}

.services-reveal {
    background-color: var(--bg-light);
}

.service-block {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
}

.service-block:last-child {
    border-bottom: none;
}

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

.service-block p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.urgency-section {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.urgency-section h2 {
    color: var(--text-light);
}

.urgency-section p {
    color: var(--text-light);
    opacity: 0.95;
}

.form-section {
    background-color: var(--bg-gray);
}

.contact-form {
    margin-top: 2rem;
}

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

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

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

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

.btn-submit {
    background-color: var(--accent-color);
    color: var(--text-light);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

.final-cta {
    background-color: var(--bg-light);
    text-align: center;
}

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

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.footer-column p {
    opacity: 0.8;
    font-size: 0.9rem;
}

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

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

.footer-column ul li a {
    color: var(--text-light);
    opacity: 0.8;
    font-size: 0.9rem;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    opacity: 0.7;
    font-size: 0.85rem;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-btn {
    background-color: var(--accent-color);
    color: var(--text-light);
    padding: 1rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(233, 69, 96, 0.3);
    transition: var(--transition);
}

.sticky-btn:hover {
    background-color: var(--accent-hover);
    color: var(--text-light);
    box-shadow: 0 6px 16px rgba(233, 69, 96, 0.4);
    transform: translateY(-2px);
}

.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;
}

.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 {
    margin: 0;
    text-align: center;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

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

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

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

.page-content {
    padding: 4rem 1.5rem;
    min-height: 60vh;
}

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

.about-list li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.cta-block-inline {
    background-color: var(--bg-gray);
    padding: 2.5rem 2rem;
    margin: 3rem 0;
    border-radius: 4px;
    text-align: center;
}

.cta-block-inline h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    background-color: var(--bg-gray);
    padding: 2rem;
    border-radius: 4px;
}

.value-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.value-item p {
    margin: 0;
    color: var(--text-gray);
}

.services-list {
    margin-top: 3rem;
}

.service-detail-block {
    margin-bottom: 4rem;
    padding: 2.5rem;
    background-color: var(--bg-gray);
    border-radius: 4px;
}

.service-detail-block h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-price-large {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0 1.5rem;
}

.service-detail-block h3 {
    font-size: 1.15rem;
    margin: 1.5rem 0 0.75rem;
    color: var(--primary-color);
}

.service-detail-block ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.service-detail-block ul li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.btn-service {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--text-light);
    padding: 0.875rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: var(--transition);
}

.btn-service:hover {
    background-color: var(--accent-hover);
    color: var(--text-light);
    transform: translateY(-2px);
}

.services-cta {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 3rem 2rem;
    border-radius: 4px;
    text-align: center;
    margin-top: 4rem;
}

.services-cta h2 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.services-cta p {
    color: var(--text-light);
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.contact-info-section {
    margin: 3rem 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.contact-item p {
    color: var(--text-gray);
    line-height: 1.7;
}

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

.contact-note {
    background-color: var(--bg-gray);
    padding: 2rem;
    margin-top: 3rem;
    border-radius: 4px;
}

.contact-note p {
    margin-bottom: 1rem;
}

.contact-note p:last-child {
    margin-bottom: 0;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-page h2 {
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 1.25rem;
    margin: 1.5rem 0 0.75rem;
    color: var(--primary-color);
}

.legal-page p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

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

.legal-page ul li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.legal-page em {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1.5rem;
}

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

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.thanks-lead {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.thanks-details {
    background-color: var(--bg-gray);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.thanks-details p {
    margin: 0;
    font-size: 1.1rem;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2.5rem;
}

@media (min-width: 768px) {
    .hero-editorial h1 {
        font-size: 3rem;
    }

    .nav-links {
        gap: 2.5rem;
    }

    .profile-cards {
        flex-direction: row;
    }

    .footer-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-column {
        flex: 1;
    }

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

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

    .contact-item {
        flex: 1;
    }

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

    .value-item {
        flex: 1 1 45%;
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .hero-editorial h1 {
        font-size: 3.5rem;
    }

    .story-section h2,
    .insight-section h2,
    .trust-section h2,
    .services-reveal h2,
    .urgency-section h2 {
        font-size: 2.25rem;
    }
}