/* 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, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
}

h4 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
}

p {
    margin-bottom: 1.2rem;
}

a {
    color: #2980b9;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a5f8a;
    text-decoration: underline;
}

strong {
    font-weight: 600;
    color: #1a1a1a;
}

em {
    font-style: italic;
    color: #34495e;
}

/* Navigation */
.nav-minimal {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.logo:hover {
    text-decoration: none;
    color: #2980b9;
}

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

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

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

.nav-menu li a {
    color: #2c3e50;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #2980b9;
    border-bottom-color: #2980b9;
    text-decoration: none;
}

/* Editorial Wrapper - Main Layout Archetype */
.editorial-wrapper {
    max-width: 100%;
    background-color: #ffffff;
}

.narrow-text {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.article-hero {
    padding: 4rem 0 2rem;
    background-color: #fafafa;
}

.hero-content-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 2rem 2rem;
}

.hero-image {
    max-width: 1000px;
    margin: 3rem auto 0;
    padding: 0 2rem;
}

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

.page-hero-simple {
    padding: 4rem 0 2rem;
    background-color: #f8f9fa;
}

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

/* Article Sections */
.article-section {
    padding: 3rem 0;
}

.article-section.bg-light {
    background-color: #f8f9fa;
}

/* Full Width Images */
.full-width-image {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.full-width-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.full-width-image figcaption {
    margin-top: 0.8rem;
    font-size: 0.9rem;
    color: #777;
    text-align: center;
    font-style: italic;
}

/* Inline CTAs */
.inline-cta {
    display: inline-block;
    margin: 1.5rem 0;
    font-weight: 600;
    color: #2980b9;
    font-size: 1.05rem;
    text-decoration: none;
    border-bottom: 2px solid #2980b9;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.inline-cta:hover {
    color: #1a5f8a;
    border-bottom-color: #1a5f8a;
    text-decoration: none;
}

/* Content Blocks */
.myth-block,
.faq-block,
.client-type-block {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-left: 4px solid #2980b9;
}

.myth-block h3,
.faq-block h3,
.client-type-block h3 {
    margin-top: 0;
    color: #2980b9;
}

/* Lists */
.insight-list,
.philosophy-list,
.results-list,
.results-about-list,
.process-list,
.process-list-simple,
.additional-actions {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.insight-list li,
.philosophy-list li,
.results-list li,
.results-about-list li {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.process-list li,
.process-list-simple li {
    margin-bottom: 1.2rem;
}

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

.cta-inline-box p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.cta-box-centered {
    text-align: center;
    margin: 2.5rem 0;
}

/* Testimonials */
.testimonial-section {
    background-color: #f0f4f8;
}

.testimonial {
    margin: 2rem 0;
    padding: 2rem;
    background-color: #ffffff;
    border-left: 5px solid #2980b9;
    font-style: italic;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.testimonial p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 1rem;
}

.testimonial cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: #2980b9;
    font-size: 0.95rem;
}

/* Services Preview Cards */
.services-preview {
    margin: 2.5rem 0;
}

.service-card {
    margin: 2rem 0;
    padding: 2rem;
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #2980b9;
    box-shadow: 0 4px 12px rgba(41, 128, 185, 0.1);
}

.service-card h3 {
    margin-top: 0;
    color: #2c3e50;
}

.service-card .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2980b9;
    margin: 1rem 0;
}

.services-link-text {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.1rem;
}

/* Detailed Services */
.services-detailed {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.service-detail-block {
    margin: 3rem 0;
    padding: 2.5rem;
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
}

.service-detail-block.special-offer {
    background-color: #ecf7fd;
    border-color: #2980b9;
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e0e0e0;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-detail-header h2 {
    margin: 0;
    flex: 1;
    min-width: 200px;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2980b9;
    white-space: nowrap;
}

.service-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
}

.service-detail-content h3 {
    margin-top: 2rem;
    color: #2c3e50;
    font-size: 1.3rem;
}

.service-detail-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.service-detail-content li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.service-cta {
    margin-top: 2rem;
    text-align: center;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #2980b9;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #1a5f8a;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(41, 128, 185, 0.3);
}

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

.btn-secondary:hover {
    background-color: #2980b9;
    color: #ffffff;
    text-decoration: none;
}

.btn-large {
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
}

/* Forms */
.contact-form {
    margin: 2rem 0;
    max-width: 600px;
}

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

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

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2980b9;
}

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

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.3rem;
    flex-shrink: 0;
}

/* Contact Page */
.contact-info-section {
    margin: 2rem 0;
}

.contact-details {
    margin: 2rem 0;
}

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

.contact-item h3 {
    margin-top: 0;
    color: #2980b9;
}

.contact-note {
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
    margin-top: 0.5rem;
}

.email-large {
    font-size: 1.5rem;
    text-align: center;
    margin: 2rem 0;
}

.email-large a {
    font-weight: 600;
}

/* Thanks Page */
.thanks-section {
    padding: 4rem 0;
    min-height: 60vh;
}

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

.thanks-icon {
    margin: 0 auto 2rem;
    width: 80px;
    height: 80px;
}

.thanks-lead {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
}

.service-selected {
    font-size: 1.1rem;
    padding: 1rem;
    background-color: #ecf7fd;
    border-radius: 6px;
    margin: 1.5rem 0;
}

.thanks-info-box {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-align: left;
}

.thanks-info-box h2 {
    margin-top: 0;
}

.thanks-info-box ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.thanks-info-box li {
    margin-bottom: 0.8rem;
}

.thanks-note {
    font-size: 0.95rem;
    color: #777;
    font-style: italic;
    margin: 1.5rem 0;
}

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

.thanks-additional {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
    text-align: left;
}

.thanks-additional h3 {
    text-align: center;
}

.additional-actions {
    max-width: 400px;
    margin: 1.5rem auto;
}

/* Final CTA */
.final-cta {
    text-align: center;
    margin: 3rem 0;
}

.cta-subtext {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #777;
}

/* Legal Pages */
.legal-page .narrow-text {
    max-width: 800px;
}

.legal-date {
    font-size: 0.95rem;
    color: #777;
    font-style: italic;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-brand {
    flex: 1;
    min-width: 250px;
}

.footer-brand h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #bdc3c7;
    line-height: 1.6;
}

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

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

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

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

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffffff;
    text-decoration: none;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-bottom p {
    color: #95a5a6;
    font-size: 0.9rem;
    margin: 0;
}

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

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

.btn-accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: #ffffff;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu li a {
        border-bottom: none;
        display: block;
    }

    .narrow-text {
        padding: 0 1.5rem;
    }

    .hero-content-narrow {
        padding: 0 1.5rem 1.5rem;
    }

    .article-hero,
    .page-hero-simple {
        padding: 2.5rem 0 1.5rem;
    }

    .hero-image,
    .full-width-image {
        padding: 0 1rem;
        margin: 2rem auto;
    }

    .article-section {
        padding: 2rem 0;
    }

    .service-detail-header {
        flex-direction: column;
    }

    .service-price {
        font-size: 1.5rem;
    }

    .services-detailed {
        padding: 1rem;
    }

    .service-detail-block {
        padding: 1.5rem;
    }

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

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

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

    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }

    .thanks-actions .btn-primary,
    .thanks-actions .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .narrow-text {
        padding: 0 1rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 0.8rem 1.5rem;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}
