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

:root {
    --primary-color: #2d3436;
    --secondary-color: #636e72;
    --accent-color: #d63031;
    --bg-light: #f8f9fa;
    --bg-dark: #2d3436;
    --text-primary: #2d3436;
    --text-secondary: #636e72;
    --border-color: #dfe6e9;
    --white: #ffffff;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1.2rem;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #b71c1c;
}

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

ul, ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

.minimal-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.nav-brand a {
    color: var(--text-primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
}

.nav-links a {
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-color);
}

.editorial-container {
    max-width: 100%;
}

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

.hero-editorial {
    padding: 4rem 0;
    background: var(--white);
}

.hero-content-narrow {
    max-width: 680px;
    margin: 0 auto 3rem;
    padding: 0 5%;
}

.hero-editorial h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-lead {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text-secondary);
    font-style: italic;
}

.hero-image {
    margin-top: 3rem;
}

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

.story-section {
    padding: 4rem 0;
    background: var(--white);
}

.story-section.gray-bg {
    background: var(--bg-light);
}

blockquote {
    margin: 2.5rem 0;
    padding: 1.5rem 2rem;
    border-left: 4px solid var(--accent-color);
    background: var(--bg-light);
    font-style: italic;
    font-size: 1.1rem;
}

blockquote cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    font-style: normal;
    color: var(--text-secondary);
}

.insight-box {
    margin: 2.5rem 0;
    padding: 2rem;
    background: #fff9f0;
    border-radius: 8px;
}

.insight-box p {
    margin-bottom: 1rem;
}

.insight-box strong {
    display: block;
    margin-bottom: 0.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.1rem;
}

.inline-cta-block {
    padding: 3rem 0;
    background: var(--bg-light);
    text-align: center;
}

.inline-cta-block.prominent {
    background: var(--bg-dark);
    color: var(--white);
    padding: 4rem 0;
}

.inline-cta-block.prominent h2,
.inline-cta-block.prominent p {
    color: var(--white);
}

.cta-text {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.btn-inline {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--white);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.btn-inline:hover {
    background: #b71c1c;
    color: var(--white);
}

.btn-prominent {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--accent-color);
    color: var(--white);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.btn-prominent:hover {
    background: #b71c1c;
    color: var(--white);
}

.image-divider {
    margin: 3rem 0;
}

.image-divider img {
    width: 100%;
    height: auto;
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item h3 {
    font-size: 1.3rem;
    margin-top: 0;
}

.benefit-item p {
    color: var(--text-secondary);
}

.process-steps {
    margin-top: 2.5rem;
}

.process-step {
    margin-bottom: 2.5rem;
    padding-left: 4rem;
    position: relative;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.process-step h3 {
    margin-top: 0;
    font-size: 1.3rem;
}

.testimonial-inline {
    padding: 3rem 0;
    background: var(--white);
}

.testimonial-card {
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.testimonial-author strong {
    font-size: 1.1rem;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.pricing-reveal {
    padding: 4rem 0;
    background: var(--white);
}

.pricing-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.price-card {
    padding: 2.5rem;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.price-card.featured {
    border-color: var(--accent-color);
    border-width: 3px;
}

.card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.5rem;
    background: var(--accent-color);
    color: var(--white);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
}

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

.price-card h3 {
    margin: 0;
    font-size: 1.8rem;
}

.price-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.price-amount {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.price-features {
    list-style: none;
    margin-left: 0;
    margin-bottom: 2rem;
}

.price-features li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
}

.price-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.btn-price {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--accent-color);
    color: var(--white);
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.btn-price:hover {
    background: #b71c1c;
    color: var(--white);
}

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

.faq-item h3 {
    margin-top: 0;
    font-size: 1.3rem;
}

.faq-item p {
    color: var(--text-secondary);
}

.form-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.form-intro {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.editorial-form {
    max-width: 100%;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    font-family: inherit;
    font-size: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    background: var(--white);
    transition: border-color 0.2s ease;
}

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

.btn-submit {
    padding: 1.2rem 3rem;
    background: var(--accent-color);
    color: var(--white);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s ease;
}

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

.final-cta {
    padding: 4rem 0;
    text-align: center;
    background: var(--bg-light);
}

.final-message {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.site-footer {
    background: var(--bg-dark);
    color: #b2bec3;
    padding: 3rem 5% 1.5rem;
}

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

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

.footer-col h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col ul li a {
    color: #b2bec3;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4a5568;
    font-size: 0.85rem;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 99;
}

.sticky-cta-btn {
    display: block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--white);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sticky-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
    color: var(--white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    color: var(--white);
    padding: 1.5rem 5%;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.hidden {
    display: none;
}

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

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie {
    padding: 0.7rem 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

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

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

.btn-cookie:hover {
    opacity: 0.9;
}

.page-header {
    padding: 3rem 0 2rem;
    background: var(--white);
}

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

.page-lead {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.team-member {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.team-member:last-child {
    border-bottom: none;
}

.team-role {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.team-mantra {
    margin-top: 1rem;
    font-style: italic;
    color: var(--text-secondary);
}

.services-intro {
    padding: 2rem 0;
    background: var(--bg-light);
}

.service-detail {
    padding: 3rem 0;
}

.service-card-full {
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    position: relative;
}

.service-card-full.featured-service {
    border-color: var(--accent-color);
    border-width: 3px;
}

.service-badge {
    position: absolute;
    top: -12px;
    left: 2.5rem;
    padding: 0.5rem 1.5rem;
    background: var(--accent-color);
    color: var(--white);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
}

.service-price {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 0;
}

.service-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 1rem 0 2rem;
}

.service-includes {
    list-style: none;
    margin-left: 0;
    margin-bottom: 2rem;
}

.service-includes li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
}

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

.btn-service {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--white);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.2s ease;
    margin-top: 1rem;
}

.btn-service:hover {
    background: #b71c1c;
    color: var(--white);
}

.contact-section {
    padding: 2rem 0 4rem;
}

.contact-info {
    margin-bottom: 3rem;
}

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

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.contact-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-item .note {
    font-size: 0.95rem;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-note {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

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

.thanks-section {
    padding: 4rem 0;
    text-align: center;
}

.thanks-lead {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.thanks-content {
    max-width: 600px;
    margin: 3rem auto;
    text-align: left;
}

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

.legal-page {
    padding-bottom: 3rem;
}

.legal-date {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-style: italic;
}

.legal-content {
    padding: 2rem 0;
}

.legal-content h2 {
    margin-top: 3rem;
}

.legal-content h3 {
    margin-top: 2rem;
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .minimal-nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 5%;
    }

    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

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

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

    .story-section {
        padding: 2.5rem 0;
    }

    .inline-cta-block,
    .inline-cta-block.prominent {
        padding: 2.5rem 0;
    }

    .pricing-reveal {
        padding: 2.5rem 0;
    }

    .form-section {
        padding: 2.5rem 0;
    }

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

    .sticky-cta-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: space-between;
    }

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

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

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

    .process-step {
        padding-left: 3rem;
    }

    .step-number {
        font-size: 1.5rem;
    }
}

@media (min-width: 769px) {
    .benefits-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 2.5rem;
    }

    .benefit-item {
        flex: 1 1 calc(50% - 1.25rem);
        min-width: 280px;
    }
}

@media (min-width: 1024px) {
    .pricing-cards {
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
    }

    .pricing-cards .price-card {
        flex: 1 1 calc(50% - 1rem);
        min-width: 320px;
    }

    .price-card.featured {
        flex: 1 1 100%;
        max-width: 700px;
        margin: 0 auto;
    }
}