/* 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: #2c3e50;
    background-color: #ffffff;
}

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

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1e40af;
}

/* Editorial Navigation */
.editorial-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    border-bottom: 1px solid #e5e7eb;
}

.nav-brand {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
}

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

.nav-links a {
    font-size: 0.9375rem;
    color: #4b5563;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2563eb;
}

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.9375rem;
}

.cookie-content a {
    color: #93c5fd;
}

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

.btn-accept,
.btn-reject {
    padding: 0.625rem 1.25rem;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #2563eb;
    color: #ffffff;
}

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

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

.btn-reject:hover {
    background-color: #374151;
}

/* Editorial Main - Article-like structure */
.editorial-main {
    max-width: 720px;
    margin: 0 auto;
    padding: 2rem 1rem 4rem;
}

/* Story Header */
.story-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.header-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #2563eb;
    margin-bottom: 1rem;
    font-weight: 600;
}

.story-header h1 {
    font-size: 2.25rem;
    line-height: 1.2;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.25rem;
}

.header-intro {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.header-visual {
    margin-top: 2rem;
}

.header-visual img {
    border-radius: 0.5rem;
    width: 100%;
}

/* Editorial Sections */
.editorial-section {
    margin-bottom: 3.5rem;
}

.section-content h2 {
    font-size: 1.75rem;
    line-height: 1.3;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.25rem;
}

.section-content h3 {
    font-size: 1.375rem;
    line-height: 1.4;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.section-content p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
    color: #374151;
}

.section-content ul {
    list-style: none;
    margin-bottom: 1.25rem;
}

.editorial-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.7;
    color: #374151;
}

.editorial-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 600;
}

.inline-image {
    margin: 2rem 0;
    border-radius: 0.5rem;
    width: 100%;
}

/* Inline CTA */
.inline-cta {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f9fafb;
    border-left: 4px solid #2563eb;
}

.cta-link {
    font-size: 1.0625rem;
    font-weight: 600;
    color: #2563eb;
}

.cta-link:hover {
    color: #1e40af;
}

/* Highlight Section */
.highlight-section {
    background-color: #f9fafb;
    padding: 2rem 1.5rem;
    margin-left: -1rem;
    margin-right: -1rem;
    border-radius: 0.5rem;
}

/* Feature Grid */
.feature-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.feature-card {
    padding: 1.5rem;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
}

.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 0.9375rem;
    margin-bottom: 0;
    color: #6b7280;
}

/* Services Reveal */
.services-reveal {
    margin-top: 3rem;
}

.service-item {
    padding: 2rem 0;
    border-bottom: 1px solid #e5e7eb;
}

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

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.service-header h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.service-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2563eb;
}

.service-item p {
    margin-bottom: 1rem;
    color: #4b5563;
}

.service-cta {
    display: inline-block;
    margin-top: 0.75rem;
    font-weight: 600;
    color: #2563eb;
}

.service-cta:hover {
    color: #1e40af;
}

/* Testimonial Section */
.testimonial-section {
    background-color: #f9fafb;
    padding: 2rem 1.5rem;
    margin-left: -1rem;
    margin-right: -1rem;
    border-radius: 0.5rem;
}

.testimonial {
    border-left: 4px solid #2563eb;
    padding-left: 1.5rem;
}

.testimonial p {
    font-size: 1.125rem;
    font-style: italic;
    line-height: 1.7;
    color: #1f2937;
    margin-bottom: 1rem;
}

.testimonial cite {
    font-style: normal;
    font-size: 0.9375rem;
    color: #6b7280;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.step {
    display: flex;
    gap: 1rem;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    flex-shrink: 0;
    background-color: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.125rem;
}

.step h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.375rem;
}

.step p {
    font-size: 0.9375rem;
    color: #6b7280;
    margin-bottom: 0;
}

/* Form Section */
.form-section {
    background-color: #f9fafb;
    padding: 2rem 1.5rem;
    margin-left: -1rem;
    margin-right: -1rem;
    border-radius: 0.5rem;
}

.editorial-form {
    margin-top: 1.5rem;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2563eb;
}

.btn-submit {
    padding: 0.875rem 2rem;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 0.375rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #1e40af;
}

/* Final Section */
.final-section {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem 0;
}

.final-cta {
    margin-top: 1.5rem;
}

.btn-primary {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: #2563eb;
    color: #ffffff;
    border-radius: 0.375rem;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
    border-radius: 0.375rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2563eb;
    color: #ffffff;
}

/* Footer */
.editorial-footer {
    background-color: #1f2937;
    color: #d1d5db;
    padding: 3rem 1rem 1.5rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

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

.footer-column p {
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 0;
}

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

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

.footer-column ul li a {
    color: #d1d5db;
    font-size: 0.875rem;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid #374151;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: #9ca3af;
}

/* Contact Page Specific */
.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.contact-card {
    padding: 1.5rem;
    background-color: #f9fafb;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
}

.contact-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.75rem;
}

.contact-detail {
    font-size: 1rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.contact-note {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0;
}

.faq-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.faq-item:last-child {
    border-bottom: none;
}

/* Services Page Specific */
.service-detailed {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
}

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

.service-header-detailed h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.service-price-large {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

.service-description {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 1.5rem;
}

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

.service-includes li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: #374151;
}

.service-includes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.service-duration {
    display: inline-block;
    margin: 1rem 0 1.5rem;
    padding: 0.5rem 1rem;
    background-color: #eff6ff;
    color: #1e40af;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 0.375rem;
}

.btn-service {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #2563eb;
    color: #ffffff;
    border-radius: 0.375rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-service:hover {
    background-color: #1e40af;
    color: #ffffff;
}

.guarantee-section {
    background-color: #ecfdf5;
    padding: 2rem 1.5rem;
    margin-left: -1rem;
    margin-right: -1rem;
    border-radius: 0.5rem;
    border: 1px solid #10b981;
}

/* Value Cards */
.value-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.value-card {
    padding: 1.5rem;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
}

.value-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.75rem;
}

.value-card p {
    margin-bottom: 0;
    color: #6b7280;
}

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

.legal-header {
    margin-bottom: 2rem;
}

.legal-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.legal-date {
    font-size: 0.875rem;
    color: #6b7280;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.legal-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.legal-section ul {
    margin: 1rem 0 1rem 1.5rem;
    list-style: disc;
}

.legal-section ul li {
    margin-bottom: 0.5rem;
    color: #374151;
}

/* Thanks Page */
.thanks-section {
    text-align: center;
    padding: 3rem 0;
}

.thanks-content h1 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.service-confirmation {
    margin: 1.5rem 0;
    padding: 1rem;
    background-color: #ecfdf5;
    border: 1px solid #10b981;
    border-radius: 0.375rem;
    color: #065f46;
    font-weight: 500;
}

.next-steps {
    margin: 2rem 0;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.next-steps h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.next-steps ul {
    list-style: none;
}

.next-steps ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.next-steps ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

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

/* Responsive Design - Tablet */
@media (min-width: 768px) {
    .story-header h1 {
        font-size: 2.75rem;
    }

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

    .feature-card {
        flex: 1;
        min-width: calc(50% - 0.75rem);
    }

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

    .contact-card {
        flex: 1;
        min-width: calc(50% - 0.75rem);
    }

    .value-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 1;
        min-width: calc(50% - 0.75rem);
    }
}

/* Responsive Design - Desktop */
@media (min-width: 1024px) {
    .story-header h1 {
        font-size: 3rem;
    }

    .editorial-main {
        padding: 3rem 1rem 5rem;
    }

    .feature-card {
        min-width: calc(33.333% - 1rem);
    }

    .contact-card {
        min-width: calc(33.333% - 1rem);
    }

    .value-card {
        min-width: calc(33.333% - 1rem);
    }

    .cookie-content {
        flex-wrap: nowrap;
    }
}