/* 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;
    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: #1e40af;
}

/* Navigation */
.nav-minimal {
    position: sticky;
    top: 0;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    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.25rem;
    font-weight: 700;
    color: #1f2937;
    letter-spacing: -0.02em;
}

.logo:hover {
    color: #2563eb;
}

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

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

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

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

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

.nav-menu a:hover,
.nav-menu a.active {
    color: #2563eb;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: #ffffff;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: 2000;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

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

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

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

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

/* Editorial Flow Container */
.editorial-flow {
    max-width: 100%;
}

/* Content Width Control - Editorial Archetype */
.content-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.page-content {
    padding: 3rem 0;
}

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

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

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

.lead-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.hero-image {
    margin: 0 auto;
    max-width: 900px;
    padding: 0 1.5rem;
}

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

/* Story Sections */
.story-intro,
.problem-amplification,
.turning-point,
.insight-reveal,
.trust-building,
.method-explanation,
.bridge-to-services,
.final-push {
    padding: 3rem 0;
}

.story-intro p,
.problem-amplification p,
.turning-point p,
.trust-building p,
.method-explanation p,
.bridge-to-services p,
.final-push p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.story-intro h2,
.problem-amplification h2,
.turning-point h2,
.insight-reveal h2,
.trust-building h2,
.method-explanation h2,
.bridge-to-services h2,
.final-push h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.story-intro em {
    font-style: italic;
    color: #6b7280;
}

.story-intro strong,
.problem-amplification strong,
.turning-point strong {
    font-weight: 700;
    color: #111827;
}

/* Editorial List */
.editorial-list {
    margin: 2rem 0;
    padding-left: 1.5rem;
}

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

.editorial-list li strong {
    font-weight: 700;
    color: #111827;
}

/* Inline Images */
.inline-image {
    margin: 3rem auto;
    max-width: 800px;
}

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

/* Blockquote */
blockquote {
    margin: 2.5rem 0;
    padding: 1.5rem 2rem;
    border-left: 4px solid #2563eb;
    background-color: #f9fafb;
    font-style: italic;
}

blockquote p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #374151;
    margin: 0;
}

/* Inline CTA Soft */
.inline-cta-soft {
    padding: 2rem 0;
}

.cta-box-inline {
    background-color: #eff6ff;
    padding: 1.5rem 2rem;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.cta-box-inline p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #1e40af;
}

/* Insight Cards */
.insight-card {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background-color: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.insight-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.insight-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4b5563;
    margin: 0;
}

/* Testimonial */
.testimonial-inline {
    padding: 3rem 0;
}

.testimonial-box {
    background-color: #1f2937;
    padding: 2.5rem;
    border-radius: 8px;
    color: #ffffff;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1rem;
    color: #f3f4f6;
}

.testimonial-author {
    font-size: 1rem;
    font-weight: 600;
    color: #9ca3af;
    margin: 0;
}

/* Urgency Box */
.urgency-soft {
    padding: 2rem 0;
}

.urgency-box {
    background-color: #fef3c7;
    padding: 1.5rem 2rem;
    border-radius: 8px;
    border-left: 4px solid #f59e0b;
}

.urgency-box p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #92400e;
}

/* Services Reveal */
.services-reveal {
    padding: 3rem 0;
}

.service-card-editorial {
    margin-bottom: 3rem;
    padding: 2.5rem;
    background-color: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-card-editorial:hover {
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.service-card-editorial h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.service-card-editorial p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 1rem;
}

.service-duration {
    font-size: 0.95rem;
    color: #6b7280;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #2563eb;
    margin: 1.5rem 0;
}

.btn-service {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: #2563eb;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-service:hover {
    background-color: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.3);
}

/* Floating CTA */
.cta-floating {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 100;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.4s ease;
}

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

.btn-cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #ef4444;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.4);
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    background-color: #dc2626;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(239, 68, 68, 0.5);
}

/* Form Section */
.form-section {
    padding: 4rem 0;
    background-color: #f9fafb;
}

.form-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
    text-align: center;
}

.form-section > .content-narrow > p {
    text-align: center;
    font-size: 1.05rem;
    color: #6b7280;
    margin-bottom: 3rem;
}

.editorial-form {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    border: 2px solid #d1d5db;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background-color: #2563eb;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
}

/* Final Reassurance */
.final-reassurance {
    padding: 2rem 0 3rem;
    text-align: center;
}

.small-note {
    font-size: 0.9rem;
    color: #6b7280;
    font-style: italic;
    line-height: 1.6;
}

/* Page Header (for other pages) */
.page-header {
    padding: 3rem 0 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

/* About Page Styles */
.about-story,
.philosophy,
.results,
.team-approach,
.values {
    padding: 3rem 0;
}

.about-story h2,
.philosophy h2,
.results h2,
.team-approach h2,
.values h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
}

.about-story p,
.philosophy p,
.results p,
.team-approach p,
.values p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 1.25rem;
}

.value-card {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f9fafb;
    border-radius: 6px;
}

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

.value-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
    margin: 0;
}

.cta-about {
    padding: 2rem 0 3rem;
    text-align: center;
}

.cta-about p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Services Page Styles */
.services-intro,
.services-list,
.services-faq,
.cta-services {
    padding: 3rem 0;
}

.services-intro p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 1.25rem;
}

.service-detail {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 2px solid #e5e7eb;
}

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

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

.service-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.service-price-large {
    font-size: 2rem;
    font-weight: 800;
    color: #2563eb;
    margin: 0;
}

.service-intro {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.service-body h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111827;
    margin: 2rem 0 1rem;
}

.service-body p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 1rem;
}

.faq-item {
    margin-bottom: 2rem;
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4b5563;
    margin: 0;
}

.cta-services h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.cta-services p {
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Contact Page Styles */
.contact-info,
.contact-approach,
.contact-faq,
.cta-contact {
    padding: 3rem 0;
}

.contact-info h2,
.contact-approach h2,
.contact-faq h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
}

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

.contact-detail h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

.contact-detail p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 0.5rem;
}

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

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

.process-list li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4b5563;
}

.cta-contact p {
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Thanks Page Styles */
.thanks-content {
    padding: 4rem 0;
}

.thanks-box {
    background-color: #f9fafb;
    padding: 3rem;
    border-radius: 8px;
    border: 2px solid #10b981;
}

.thanks-box h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1rem;
}

.thanks-box h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #111827;
    margin: 2.5rem 0 1.5rem;
}

.thanks-box p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 1.25rem;
}

.thanks-detail {
    background-color: #d1fae5;
    padding: 1.5rem;
    border-radius: 6px;
    margin: 2rem 0;
}

.thanks-detail p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #065f46;
}

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

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2563eb;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
}

/* Legal Pages Styles */
.legal-page {
    padding: 3rem 0;
}

.legal-page h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 0.5rem;
}

.last-updated {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 3rem;
    font-style: italic;
}

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

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

.legal-section h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111827;
    margin: 2rem 0 1rem;
}

.legal-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 1rem;
}

.legal-section ul,
.legal-section ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.legal-section li {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

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

.cookie-table th {
    background-color: #f9fafb;
    font-weight: 700;
    color: #111827;
}

.cookie-table td {
    font-size: 0.95rem;
    color: #4b5563;
}

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

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

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

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

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #9ca3af;
}

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

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

.footer-column ul li a {
    font-size: 0.9rem;
    color: #9ca3af;
    transition: color 0.3s ease;
}

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

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

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

/* Responsive Design - Mobile First */

/* Tablets */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        flex-direction: column;
        background-color: #ffffff;
        width: 100%;
        max-width: 300px;
        padding: 2rem 1.5rem;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        gap: 1rem;
    }

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

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

    .lead-text {
        font-size: 1.15rem;
    }

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

    .cookie-actions {
        width: 100%;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        flex: 1;
    }

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

    .btn-cta-primary {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-container {
        flex-direction: column;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    html {
        font-size: 15px;
    }

    .nav-container {
        padding: 0 1rem;
    }

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

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

    .hero-editorial {
        padding: 2rem 0 1.5rem;
    }

    .hero-editorial h1 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

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

    .hero-image {
        padding: 0 1rem;
    }

    .story-intro,
    .problem-amplification,
    .turning-point,
    .insight-reveal,
    .trust-building,
    .method-explanation,
    .bridge-to-services,
    .final-push {
        padding: 2rem 0;
    }

    .story-intro h2,
    .problem-amplification h2,
    .turning-point h2,
    .insight-reveal h2,
    .trust-building h2,
    .method-explanation h2,
    .bridge-to-services h2,
    .final-push h2 {
        font-size: 1.6rem;
    }

    blockquote {
        padding: 1rem 1.5rem;
        margin: 2rem 0;
    }

    .insight-card,
    .testimonial-box {
        padding: 1.5rem;
    }

    .service-card-editorial {
        padding: 1.5rem;
    }

    .editorial-form {
        padding: 1.5rem;
    }

    .thanks-box {
        padding: 2rem 1.5rem;
    }

    .thanks-box h1 {
        font-size: 2rem;
    }

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

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

    .cookie-table {
        font-size: 0.85rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 0.5rem;
    }
}

/* Large Screens */
@media (min-width: 1200px) {
    .hero-editorial h1 {
        font-size: 3rem;
    }

    .lead-text {
        font-size: 1.35rem;
    }
}
