/* Reset & 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: #1a1a1a;
    background: #ffffff;
    overflow-x: hidden;
}

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

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

a:hover {
    color: #1d4ed8;
}

/* Navigation - Minimal Style for Editorial */
.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-brand {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

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

.nav-menu a {
    color: #4b5563;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: #1a1a1a;
    transition: all 0.3s ease;
}

/* Editorial Container - Article-like centered layout */
.editorial-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

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

/* Editorial Hero */
.editorial-hero {
    padding: 4rem 0 3rem;
}

.hero-text-center {
    text-align: center;
    margin-bottom: 3rem;
}

.editorial-hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #4b5563;
    max-width: 620px;
    margin: 0 auto;
}

.hero-image {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 5%;
}

.hero-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Editorial Sections */
.editorial-intro,
.editorial-story,
.editorial-problem,
.editorial-insight,
.editorial-testimonials,
.editorial-services,
.editorial-urgency,
.editorial-form,
.editorial-final {
    padding: 3rem 0;
}

.editorial-intro {
    border-bottom: 1px solid #e5e7eb;
}

.editorial-story {
    background: #f9fafb;
    padding: 4rem 0;
}

.editorial-problem {
    padding: 4rem 0;
}

.editorial-insight {
    background: #fef3c7;
    padding: 4rem 0;
}

.editorial-testimonials {
    padding: 4rem 0;
    background: #f9fafb;
}

.editorial-services {
    padding: 4rem 0;
}

.editorial-urgency {
    background: #1f2937;
    color: #ffffff;
    padding: 4rem 0;
}

.editorial-urgency h2,
.editorial-urgency p,
.editorial-urgency strong {
    color: #ffffff;
}

.editorial-form {
    background: #f9fafb;
    padding: 4rem 0;
}

.editorial-final {
    padding: 3rem 0 4rem;
    text-align: center;
    font-size: 1.15rem;
    color: #6b7280;
    font-style: italic;
}

/* Typography */
h2 {
    font-size: 2rem;
    line-height: 1.3;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.4;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
    line-height: 1.8;
}

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

em {
    font-style: italic;
    color: #374151;
}

/* Drop Cap for Editorial Style */
.drop-cap::first-letter {
    float: left;
    font-size: 4rem;
    line-height: 0.85;
    font-weight: 700;
    margin: 0.1rem 0.15rem 0 0;
    color: #1a1a1a;
}

/* Inline Images in Story */
.story-image-inline {
    margin: 2.5rem 0;
}

.story-image-inline img {
    width: 100%;
    border-radius: 4px;
}

/* Editorial Quote */
.editorial-quote {
    border-left: 4px solid #1a1a1a;
    padding-left: 1.5rem;
    margin: 2.5rem 0;
    font-size: 1.25rem;
    line-height: 1.7;
    font-style: italic;
    color: #374151;
}

/* Problem List */
.problem-list {
    margin: 2rem 0;
}

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

.problem-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.problem-item p {
    color: #4b5563;
}

/* Testimonials Inline */
.testimonial-inline {
    margin: 2.5rem 0;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 4px;
    border-left: 3px solid #2563eb;
}

.testimonial-inline p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

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

/* Service Cards - Editorial Style */
.service-card-editorial {
    margin: 2.5rem 0;
    padding: 2rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    transition: box-shadow 0.3s ease;
}

.service-card-editorial:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.service-card-editorial h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1.5rem 0;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.service-duration {
    font-size: 0.9375rem;
    color: #6b7280;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.service-link {
    display: inline-block;
    color: #2563eb;
    font-weight: 500;
    font-size: 1rem;
    margin-top: 0.5rem;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #1d4ed8;
}

/* CTA Buttons */
.inline-cta {
    display: inline-block;
    color: #2563eb;
    font-weight: 600;
    font-size: 1.0625rem;
    margin: 1rem 0;
    transition: color 0.3s ease;
}

.inline-cta:hover {
    color: #1d4ed8;
}

.section-cta-btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: #1a1a1a;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    margin-top: 1.5rem;
    transition: background 0.3s ease;
}

.section-cta-btn:hover {
    background: #374151;
    color: #ffffff;
}

/* Forms - Editorial Style */
.form-editorial {
    max-width: 100%;
    margin: 2rem 0;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    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: #2563eb;
}

.btn-submit {
    padding: 1rem 2.5rem;
    background: #1a1a1a;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #374151;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

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

.sticky-cta-btn {
    display: block;
    padding: 1rem 1.5rem;
    background: #2563eb;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
    transition: background 0.3s ease, transform 0.3s ease;
}

.sticky-cta-btn:hover {
    background: #1d4ed8;
    color: #ffffff;
    transform: scale(1.05);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f2937;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
    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: 1.5rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.5;
}

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

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.btn-accept,
.btn-reject {
    padding: 0.625rem 1.25rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-accept {
    background: #10b981;
    color: #ffffff;
}

.btn-accept:hover {
    background: #059669;
}

.btn-reject {
    background: #6b7280;
    color: #ffffff;
}

.btn-reject:hover {
    background: #4b5563;
}

/* Footer */
.footer {
    background: #111827;
    color: #d1d5db;
    padding: 3rem 5% 1.5rem;
}

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

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

.footer-col p {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-col a {
    display: block;
    color: #9ca3af;
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-col 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;
    margin: 0;
}

/* Page Header Simple */
.page-header-simple {
    padding: 3rem 0 2rem;
    text-align: center;
}

.page-header-simple h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.header-lead {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Page */
.services-list {
    padding: 2rem 0 4rem;
}

.service-card-expanded {
    margin-bottom: 3rem;
}

.service-subtitle {
    font-size: 1.0625rem;
    color: #6b7280;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.service-includes {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 4px;
}

.service-includes h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.service-includes ul {
    list-style: none;
    padding: 0;
}

.service-includes li {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    font-size: 0.9375rem;
    line-height: 1.6;
}

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

.services-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: #f3f4f6;
    border-radius: 4px;
}

.services-cta h2 {
    margin-bottom: 1rem;
}

.services-cta p {
    font-size: 1.0625rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

/* Contact Page */
.contact-section {
    padding: 2rem 0 4rem;
}

.contact-info {
    max-width: 100%;
}

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

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.contact-item p {
    color: #4b5563;
    margin-bottom: 0.5rem;
}

.contact-note {
    font-size: 0.9375rem;
    color: #6b7280;
    font-style: italic;
}

.contact-cta {
    margin-top: 3rem;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 4px;
    text-align: center;
}

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

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

.thanks-content h1 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

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

.thanks-message {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #ecfdf5;
    border-left: 4px solid #10b981;
    border-radius: 4px;
}

.thanks-message p {
    color: #065f46;
    margin-bottom: 0;
}

.thanks-info {
    text-align: left;
    margin: 3rem 0;
}

.thanks-steps {
    margin-top: 1.5rem;
}

.thanks-step {
    margin-bottom: 2rem;
}

.thanks-step h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.thanks-step p {
    color: #6b7280;
}

.thanks-meanwhile {
    text-align: left;
    margin: 3rem 0;
}

.thanks-cta {
    margin-top: 3rem;
}

/* Legal Content */
.legal-content {
    padding: 2rem 0 4rem;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

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

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 1rem 5%;
        border-bottom: 1px solid #e5e7eb;
        gap: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .editorial-hero h1 {
        font-size: 2rem;
    }

    .hero-lead {
        font-size: 1.125rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .drop-cap::first-letter {
        font-size: 3rem;
    }

    .service-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

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

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .page-header-simple h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .editorial-hero h1 {
        font-size: 1.75rem;
    }

    .hero-lead {
        font-size: 1rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .section-cta-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
    }

    .sticky-cta-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.875rem;
    }
}