/* 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, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2d2d2d;
    background: #ffffff;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style-position: inside;
}

/* Container Narrow - Editorial Style */
.container-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Editorial */
.header-editorial {
    padding: 30px 0 20px;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    background: #ffffff;
    z-index: 100;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #888;
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.brand {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
}

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

.nav-links a {
    font-size: 0.95rem;
    color: #555;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #1a1a1a;
}

/* Editorial Main */
.editorial-main {
    padding: 60px 0;
}

.story-flow {
    width: 100%;
}

/* Hero Editorial */
.hero-editorial {
    margin-bottom: 60px;
}

.headline-large {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.intro-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 35px;
}

.hero-image {
    margin: 40px 0;
    overflow: hidden;
    border-radius: 4px;
}

.hero-image img {
    width: 100%;
}

/* Story Sections */
.story-section {
    margin-bottom: 50px;
}

.story-section h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.story-section p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: #3a3a3a;
}

.story-section ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.story-section li {
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.content-image {
    margin: 35px 0;
    overflow: hidden;
    border-radius: 4px;
}

.content-image img {
    width: 100%;
}

.principle-list {
    list-style: none;
    padding-left: 0;
}

.principle-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 15px;
}

.principle-list li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #666;
}

/* Inline CTA Section */
.inline-cta-section {
    margin: 60px 0;
}

.cta-card-inline {
    background: #f8f8f8;
    padding: 40px 35px;
    border-left: 4px solid #1a1a1a;
}

.cta-card-inline h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.cta-card-inline p {
    margin-bottom: 20px;
    color: #4a4a4a;
}

/* Services Preview */
.services-preview {
    margin: 70px 0;
}

.services-preview h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.section-intro {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card {
    border: 1px solid #e0e0e0;
    padding: 30px;
    background: #fafafa;
    transition: transform 0.2s, box-shadow 0.2s;
}

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

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 1rem;
    color: #4a4a4a;
    margin-bottom: 20px;
    line-height: 1.6;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 20px 0;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-submit,
.btn-select-service {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.1s;
    text-align: center;
}

.btn-primary {
    background: #1a1a1a;
    color: #ffffff;
}

.btn-primary:hover {
    background: #333;
    transform: translateY(-1px);
}

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

.btn-secondary:hover {
    background: #1a1a1a;
    color: #ffffff;
}

.btn-submit,
.btn-select-service {
    background: #1a1a1a;
    color: #ffffff;
    width: 100%;
}

.btn-submit:hover,
.btn-select-service:hover {
    background: #333;
    transform: translateY(-1px);
}

/* Form Section */
.form-section {
    margin: 70px 0;
}

.form-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.form-section p {
    margin-bottom: 30px;
    color: #555;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    font-size: 1rem;
    border: 1px solid #d0d0d0;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a1a1a;
}

.form-group input[readonly] {
    background: #f5f5f5;
    cursor: not-allowed;
}

/* Testimonials */
.testimonials-section {
    margin: 70px 0;
}

.testimonials-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.testimonial {
    margin-bottom: 35px;
    padding: 30px;
    background: #f8f8f8;
    border-left: 3px solid #ccc;
}

.testimonial p {
    font-size: 1.05rem;
    font-style: italic;
    color: #3a3a3a;
    margin-bottom: 15px;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #666;
    font-style: normal;
}

/* Final CTA Section */
.final-cta-section {
    margin: 70px 0;
    text-align: center;
    padding: 50px 30px;
    background: #fafafa;
}

.final-cta-section h2 {
    font-size: 1.9rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.final-cta-section p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer Editorial */
.footer-editorial {
    border-top: 1px solid #e0e0e0;
    padding: 50px 0 30px;
    margin-top: 80px;
}

.disclaimer {
    margin-bottom: 40px;
    padding: 25px;
    background: #f8f8f8;
    font-size: 0.85rem;
    color: #555;
    line-height: 1.6;
}

.disclaimer h3 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: #333;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.footer-nav a {
    font-size: 0.9rem;
    color: #666;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: #1a1a1a;
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    color: #888;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

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

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
}

.btn-accept {
    background: #ffffff;
    color: #1a1a1a;
}

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

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

/* Services Detailed */
.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-detail {
    padding: 35px 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.service-detail h2 {
    font-size: 1.75rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-detail h3 {
    font-size: 1.25rem;
    margin: 25px 0 15px;
    color: #333;
}

.service-detail ul {
    margin-bottom: 25px;
}

.price-large {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 15px 0 25px;
}

/* Contact Info Section */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 50px 0;
}

.contact-block h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.contact-block p {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.notice {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
    margin-top: 10px;
}

/* Legal Sections */
.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal-section h3 {
    font-size: 1.25rem;
    margin: 25px 0 12px;
    color: #333;
}

.legal-section p {
    margin-bottom: 15px;
    font-size: 1rem;
    color: #3a3a3a;
}

.legal-section ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-section li {
    margin-bottom: 10px;
}

/* Cookie Table */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.95rem;
}

.cookie-table thead {
    background: #f0f0f0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.cookie-table th {
    font-weight: 600;
    color: #1a1a1a;
}

/* Thanks Page */
.thanks-hero {
    text-align: center;
}

.selected-service-info {
    margin: 25px 0;
    padding: 20px;
    background: #f0f7ff;
    border-left: 4px solid #1a1a1a;
}

/* Responsive Design */
@media (max-width: 768px) {
    .headline-large {
        font-size: 2rem;
    }

    .intro-text {
        font-size: 1.05rem;
    }

    .story-section h2 {
        font-size: 1.5rem;
    }

    .nav-minimal {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .nav-links {
        gap: 15px;
    }

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

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

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

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .headline-large {
        font-size: 1.75rem;
    }

    .service-card {
        padding: 20px;
    }

    .price {
        font-size: 1.5rem;
    }

    .price-large {
        font-size: 1.8rem;
    }
}