* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f9f9f9;
    --border-color: #e0e0e0;
    --white: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    font-size: 17px;
    overflow-x: hidden;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.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: 20px;
}

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

.cookie-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

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

.btn-accept, .btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-accept {
    background: var(--secondary-color);
    color: var(--white);
}

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

.btn-reject {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

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

.floating-nav {
    position: fixed;
    top: 30px;
    right: 30px;
    left: 30px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-brand {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.editorial-container {
    margin-top: 120px;
}

.hero-editorial {
    padding: 60px 0;
}

.hero-narrow, .narrow-column {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 20px;
}

.label-tag {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 6px 16px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 20px;
    border-radius: 3px;
}

.hero-editorial h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.lead-text {
    font-size: 21px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 40px;
}

.hero-image-wrapper {
    margin-top: 50px;
    margin-bottom: 30px;
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.story-intro {
    padding: 80px 0;
    background: var(--light-bg);
}

.drop-cap::first-letter {
    font-size: 72px;
    float: left;
    line-height: 60px;
    padding-right: 12px;
    font-weight: 700;
    color: var(--primary-color);
}

.story-intro p {
    margin-bottom: 24px;
}

.inline-cta-section {
    padding: 60px 0;
}

.cta-box-inline {
    max-width: 680px;
    margin: 0 auto;
    padding: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    text-align: center;
    color: var(--white);
}

.cta-box-inline h3 {
    font-size: 26px;
    margin-bottom: 20px;
}

.cta-link-arrow {
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.3s;
}

.cta-link-arrow:hover {
    transform: translateX(5px);
}

.problem-amplification {
    padding: 80px 0;
}

.problem-amplification h2 {
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 700;
}

.problem-amplification h3 {
    font-size: 28px;
    margin-top: 50px;
    margin-bottom: 20px;
}

.inline-quote {
    border-left: 4px solid var(--secondary-color);
    padding-left: 30px;
    margin: 40px 0;
    font-size: 22px;
    font-style: italic;
    color: #555;
}

.visual-break {
    padding: 60px 0;
    background: var(--light-bg);
}

.image-grid-editorial {
    display: flex;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.image-grid-editorial img {
    width: 50%;
    height: auto;
    border-radius: 8px;
}

.insight-reveal {
    padding: 80px 0;
}

.insight-reveal h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.insight-list {
    margin-top: 50px;
}

.insight-item {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}

.insight-number {
    font-size: 48px;
    font-weight: 700;
    color: #e0e0e0;
    min-width: 80px;
}

.insight-content h4 {
    font-size: 22px;
    margin-bottom: 12px;
}

.testimonial-inline {
    padding: 60px 0;
    background: var(--primary-color);
}

.testimonial-card-editorial {
    max-width: 680px;
    margin: 0 auto;
    padding: 50px 40px;
    text-align: center;
    color: var(--white);
}

.testimonial-text {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 16px;
    color: #ccc;
}

.trust-building {
    padding: 80px 0;
}

.trust-building h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.stats-inline {
    display: flex;
    justify-content: space-around;
    margin-top: 60px;
    padding: 40px 0;
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-sticky-trigger {
    padding: 80px 0;
    background: var(--light-bg);
}

.cta-block-center {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-block-center h3 {
    font-size: 32px;
    margin-bottom: 30px;
}

.btn-primary-large {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 18px 48px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary-large:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231,76,60,0.3);
}

.services-reveal {
    padding: 80px 0;
}

.services-reveal h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
}

.services-reveal > .narrow-column > p {
    text-align: center;
    margin-bottom: 60px;
}

.services-list-editorial {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-card-editorial {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 30px;
    position: relative;
    transition: all 0.3s;
}

.service-card-editorial:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.service-tag {
    position: absolute;
    top: -12px;
    left: 30px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 4px 12px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    border-radius: 3px;
}

.service-card-editorial h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.service-card-editorial > p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.service-includes {
    margin: 30px 0;
}

.service-includes h4 {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

.service-includes li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
    color: #666;
}

.service-includes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0 20px 0;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.service-duration {
    font-size: 14px;
    color: #777;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-select-service {
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    padding: 16px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select-service:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.form-section-editorial {
    padding: 80px 0;
    background: var(--light-bg);
}

.form-section-editorial h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
}

.form-section-editorial > .narrow-column > p {
    text-align: center;
    margin-bottom: 50px;
}

.editorial-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

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

.btn-submit-form {
    width: 100%;
    background: var(--secondary-color);
    color: var(--white);
    padding: 18px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit-form:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.urgency-section {
    padding: 40px 0;
}

.urgency-box {
    max-width: 680px;
    margin: 0 auto;
    padding: 30px;
    background: #fffbf0;
    border-left: 4px solid #f39c12;
    border-radius: 6px;
    text-align: center;
}

.urgency-label {
    display: inline-block;
    background: #f39c12;
    color: var(--white);
    padding: 4px 12px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 12px;
    border-radius: 3px;
}

.urgency-box p {
    margin: 0;
    color: #856404;
}

.final-testimonials {
    padding: 80px 0;
}

.final-testimonials h2 {
    font-size: 36px;
    margin-bottom: 60px;
    text-align: center;
}

.testimonial-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    padding: 0 20px;
}

.testimonial-card {
    flex: 1;
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    border: 2px solid var(--border-color);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 16px;
    color: #555;
}

.author-name {
    font-size: 14px;
    color: #777;
    font-weight: 600;
}

.bottom-cta {
    padding: 80px 0;
    background: var(--primary-color);
}

.cta-final-box {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    color: var(--white);
}

.cta-final-box h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-final-box p {
    font-size: 19px;
    margin-bottom: 40px;
    color: #ccc;
}

.site-footer {
    background: #0a0a0a;
    color: var(--white);
    padding: 60px 0 20px 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-col p {
    color: #aaa;
    font-size: 14px;
}

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

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--white);
}

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

.footer-bottom p {
    color: #777;
    font-size: 14px;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.sticky-cta-btn {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(231,76,60,0.4);
    transition: all 0.3s;
}

.sticky-cta-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(231,76,60,0.5);
}

.page-hero {
    padding: 80px 0 60px 0;
}

.page-hero h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.about-story {
    padding: 60px 0;
}

.about-story h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 24px;
}

.about-story h3 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.about-story p {
    margin-bottom: 20px;
}

.image-insert {
    margin: 50px 0;
}

.image-insert img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.about-list {
    list-style: none;
    padding-left: 0;
    margin: 30px 0;
}

.about-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
}

.about-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.cta-section-simple {
    padding: 80px 0;
    background: var(--light-bg);
}

.cta-box-simple {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
    padding: 50px 40px;
    background: var(--white);
    border-radius: 12px;
    border: 2px solid var(--border-color);
}

.cta-box-simple h3 {
    font-size: 28px;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.services-detailed {
    padding: 60px 0;
}

.contact-info-section {
    padding: 60px 0;
}

.contact-details {
    margin-bottom: 50px;
}

.contact-item {
    margin-bottom: 40px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.contact-item p {
    color: #555;
}

.contact-item a {
    color: var(--secondary-color);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-note {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.thanks-section {
    padding: 100px 0;
    min-height: 60vh;
}

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

.success-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px auto;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 19px;
    color: #555;
    margin-bottom: 40px;
}

.service-confirmation {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    font-size: 16px;
}

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

.next-steps h2 {
    font-size: 26px;
    margin-bottom: 20px;
    text-align: center;
}

.steps-list {
    padding-left: 20px;
}

.steps-list li {
    margin-bottom: 12px;
    color: #555;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    border: 2px solid var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.legal-page {
    padding: 60px 0 100px 0;
}

.legal-page h1 {
    font-size: 38px;
    margin-bottom: 16px;
}

.update-date {
    color: #777;
    font-size: 14px;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 50px;
    margin-bottom: 20px;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 16px;
}

.legal-page p {
    margin-bottom: 20px;
}

.legal-page ul {
    margin: 20px 0;
    padding-left: 30px;
}

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

.legal-page a {
    color: var(--secondary-color);
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .floating-nav {
        top: 20px;
        right: 20px;
        left: 20px;
        padding: 15px 20px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        gap: 20px;
    }

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

    .nav-toggle {
        display: block;
    }

    .hero-editorial h1 {
        font-size: 32px;
    }

    .lead-text {
        font-size: 18px;
    }

    .image-grid-editorial {
        flex-direction: column;
    }

    .image-grid-editorial img {
        width: 100%;
    }

    .testimonial-grid {
        flex-direction: column;
    }

    .stats-inline {
        flex-direction: column;
        gap: 30px;
    }

    .insight-item {
        flex-direction: column;
        gap: 15px;
    }

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

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .cookie-content {
        flex-direction: column;
    }

    .page-hero h1 {
        font-size: 32px;
    }

    .thanks-content h1 {
        font-size: 32px;
    }
}