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

:root {
    --color-primary: #1a1a2e;
    --color-secondary: #16213e;
    --color-accent: #e94560;
    --color-text: #2c3e50;
    --color-text-light: #5f6c7b;
    --color-bg: #ffffff;
    --color-bg-alt: #f8f9fa;
    --color-border: #e1e8ed;
    --font-primary: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --spacing-unit: 1rem;
}

body {
    font-family: var(--font-primary);
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
}

.nav-minimal {
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.2rem 0;
}

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

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-menu a {
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--color-accent);
}

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

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--color-primary);
    margin: 3px 0;
    transition: 0.3s;
}

.editorial-layout {
    max-width: 100%;
    margin: 0 auto;
}

.narrow-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-editorial {
    padding: 5rem 0 3rem;
}

.hero-editorial h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.lead {
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.story-flow {
    padding: 3rem 0;
}

.story-flow h2 {
    font-size: 2rem;
    line-height: 1.3;
    color: var(--color-primary);
    margin: 3rem 0 1.5rem;
    font-weight: 700;
}

.story-flow h3 {
    font-size: 1.5rem;
    line-height: 1.4;
    color: var(--color-primary);
    margin: 2.5rem 0 1rem;
    font-weight: 600;
}

.story-flow p {
    margin-bottom: 1.5rem;
}

.story-flow em {
    font-style: italic;
    color: var(--color-accent);
}

.story-flow strong {
    font-weight: 600;
    color: var(--color-primary);
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 2.5rem 0;
    border-radius: 8px;
    display: block;
}

.inline-image-small {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 2rem auto;
    border-radius: 8px;
    display: block;
}

blockquote {
    border-left: 4px solid var(--color-accent);
    padding-left: 1.5rem;
    margin: 2.5rem 0;
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--color-primary);
    font-style: italic;
}

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

.story-list {
    list-style-position: outside;
    margin: 1.5rem 0 1.5rem 1.5rem;
    padding-left: 0.5rem;
}

.story-list li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.process-list {
    list-style: none;
    counter-reset: process-counter;
    margin: 2rem 0;
}

.process-list li {
    counter-increment: process-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
}

.process-list li::before {
    content: counter(process-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background: var(--color-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.cta-inline {
    margin: 2.5rem 0;
    text-align: left;
}

.cta-section-embedded {
    background: var(--color-bg-alt);
    padding: 2.5rem;
    border-radius: 8px;
    margin: 3rem 0;
    text-align: center;
}

.cta-section-embedded h3 {
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.btn-primary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: var(--color-accent);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: var(--color-secondary);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-text {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.btn-text:hover {
    color: #d63850;
}

.btn-full {
    width: 100%;
}

.trust-signals {
    padding: 4rem 0;
    background: var(--color-bg-alt);
}

.social-proof {
    padding: 4rem 0;
}

.how-it-works {
    padding: 4rem 0;
    background: var(--color-bg-alt);
}

.urgency-soft {
    padding: 3rem 0;
    text-align: center;
}

.urgency-soft h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

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

.contact-form {
    max-width: 500px;
    margin: 2rem auto 0;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: border-color 0.3s ease;
}

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

.service-card-vertical {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 2.5rem;
    margin: 2rem 0;
    transition: box-shadow 0.3s ease;
}

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

.service-card-vertical h2,
.service-card-vertical h3 {
    margin-top: 0;
}

.service-card-vertical ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-card-vertical ul li {
    margin-bottom: 0.8rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent);
    margin: 1.5rem 0;
}

.final-nudge {
    padding: 3rem 0;
    text-align: center;
    background: var(--color-bg-alt);
}

.contact-info {
    margin: 2rem 0;
}

.contact-info p {
    margin-bottom: 1.5rem;
}

.contact-info a {
    color: var(--color-accent);
    text-decoration: none;
}

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

.footer {
    background: var(--color-primary);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

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

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

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 1.5rem 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-secondary);
    color: white;
    padding: 1.5rem;
    z-index: 9999;
    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;
    gap: 2rem;
    flex-wrap: wrap;
}

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

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

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

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-bg);
        flex-direction: column;
        padding: 1rem 2rem;
        border-bottom: 1px solid var(--color-border);
        display: none;
        gap: 1rem;
    }

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

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

    .lead {
        font-size: 1.2rem;
    }

    .story-flow h2 {
        font-size: 1.6rem;
    }

    .story-flow h3 {
        font-size: 1.3rem;
    }

    body {
        font-size: 16px;
    }

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

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

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

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-buttons button {
        width: 100%;
    }
}