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

:root {
    --primary: #1a1a2e;
    --secondary: #16213e;
    --accent: #0f3460;
    --highlight: #e94560;
    --light: #f5f5f5;
    --white: #ffffff;
    --gray: #6b7280;
    --dark-gray: #374151;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: var(--white);
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 6px 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: 1rem;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

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

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

.nav-minimal {
    position: sticky;
    top: 0;
    background: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

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

.nav-links a {
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hero-visual-full {
    position: relative;
    height: 85vh;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-visual-full::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1579621970563-ebec7560ff3e?w=1600&h=900&fit=crop') center/cover;
    opacity: 0.15;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(26, 26, 46, 0.7) 100%);
}

.hero-content-centered {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
    color: var(--white);
}

.hero-content-centered h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 800;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-hero {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: var(--highlight);
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.4);
}

.cta-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 69, 96, 0.6);
}

.story-intro {
    padding: 5rem 2rem;
    background: var(--white);
}

.narrow-content {
    max-width: 750px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
}

.bold-callout {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 2rem;
}

.problem-amplify {
    padding: 5rem 2rem;
    background: var(--light);
}

.content-wide {
    max-width: 1200px;
    margin: 0 auto;
}

.problem-amplify h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary);
}

.problem-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.problem-card {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.problem-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--highlight);
}

.problem-card p {
    line-height: 1.7;
    color: var(--gray);
}

.section-conclusion {
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    color: var(--primary);
    max-width: 800px;
    margin: 0 auto;
}

.insight-reveal {
    padding: 5rem 2rem;
    background: var(--white);
}

.insight-reveal h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
    color: var(--primary);
}

.insight-list {
    list-style: none;
    margin: 2.5rem 0;
}

.insight-list li {
    padding: 1rem 0 1rem 2.5rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.7;
    border-bottom: 1px solid #e5e7eb;
}

.insight-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--highlight);
    font-weight: 700;
    font-size: 1.3rem;
}

.trust-builder {
    padding: 6rem 2rem;
    background: var(--primary);
    color: var(--white);
}

.content-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.split-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-inline {
    padding: 4rem 2rem;
    background: var(--light);
}

.testimonial-inline blockquote {
    border-left: 4px solid var(--highlight);
    padding-left: 2rem;
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--dark-gray);
}

.testimonial-inline cite {
    display: block;
    margin-top: 1.5rem;
    font-style: normal;
    font-weight: 600;
    color: var(--primary);
}

.dark-bg {
    background: var(--secondary);
}

.dark-bg blockquote {
    color: var(--white);
}

.dark-bg cite {
    color: var(--highlight);
}

.methodology-deep {
    padding: 6rem 2rem;
    background: var(--white);
}

.methodology-deep h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary);
}

.method-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.step {
    flex: 1;
    min-width: 250px;
    position: relative;
    padding-top: 4rem;
}

.step-number {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 3rem;
    font-weight: 800;
    color: var(--highlight);
    opacity: 0.3;
}

.step h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.step p {
    line-height: 1.7;
    color: var(--gray);
}

.case-study {
    padding: 5rem 2rem;
    background: var(--light);
}

.case-study h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 3rem;
    color: var(--primary);
}

.case-item {
    background: var(--white);
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.case-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--highlight);
}

.case-item p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.case-item strong {
    color: var(--primary);
}

.benefits-reveal {
    padding: 6rem 2rem;
    background: var(--white);
}

.benefits-reveal h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary);
}

.benefits-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.benefit-major {
    flex: 1 1 calc(60% - 1rem);
    min-width: 300px;
    background: var(--primary);
    color: var(--white);
    padding: 3rem;
    border-radius: 8px;
}

.benefit-minor {
    flex: 1 1 calc(40% - 1rem);
    min-width: 250px;
    background: var(--light);
    padding: 2.5rem;
    border-radius: 8px;
}

.benefit-major h3,
.benefit-minor h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.benefit-major p,
.benefit-minor p {
    line-height: 1.7;
}

.benefit-minor {
    color: var(--dark-gray);
}

.services-reveal {
    padding: 6rem 2rem;
    background: var(--light);
}

.services-reveal h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary);
}

.services-intro {
    text-align: center;
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto 4rem;
    color: var(--gray);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 300px;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card.featured {
    border: 2px solid var(--highlight);
}

.service-label {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--highlight);
    color: var(--white);
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.service-card > p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
    flex-grow: 1;
}

.service-features li {
    padding: 0.6rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: var(--dark-gray);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--highlight);
    font-weight: 700;
}

.service-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin: 1.5rem 0;
}

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

.btn-service:hover {
    background: #d63851;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 69, 96, 0.3);
}

.urgency-subtle {
    padding: 5rem 2rem;
    background: var(--white);
}

.urgency-subtle h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.final-cta-block {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
}

.content-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.content-centered h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1.5rem;
}

.content-centered p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    overflow-y: auto;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    position: relative;
    margin: 2rem;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray);
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--primary);
}

.modal-content h2 {
    margin-bottom: 2rem;
    color: var(--primary);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.form-group input[readonly] {
    background: var(--light);
}

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

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

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    padding: 1rem 2rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
    display: none;
}

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

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

.sticky-text {
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

.btn-sticky {
    padding: 0.75rem 2rem;
    background: var(--highlight);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: #d63851;
}

.footer {
    background: var(--primary);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

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

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

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-section p {
    line-height: 1.7;
    opacity: 0.9;
}

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

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

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
}

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

@media (max-width: 768px) {
    .nav-container {
        padding: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

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

    .benefits-asymmetric {
        flex-direction: column;
    }

    .benefit-major,
    .benefit-minor {
        flex: 1 1 100%;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .sticky-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content-centered h1 {
        font-size: 1.8rem;
    }

    .modal-content {
        padding: 2rem 1.5rem;
    }
}