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

:root {
    --primary: #2d3561;
    --secondary: #c73e1d;
    --accent: #e67e22;
    --dark: #1a1a2e;
    --light: #f8f9fa;
    --gray: #6c757d;
    --white: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background: var(--white);
}

.nav-minimal {
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

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

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

.hero-visual-dark {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #7e22ce 100%);
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

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

.hero-content-narrow h1 {
    font-size: 3.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-lead {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.9);
    font-weight: 400;
}

.story-intro {
    padding: 6rem 2rem;
    background: var(--light);
}

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

.intro-text {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.8rem;
}

.story-intro p {
    font-size: 1.2rem;
    margin-bottom: 1.3rem;
    color: #3a3a3a;
}

.highlight-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-top: 2.5rem;
}

.insight-block {
    padding: 7rem 2rem;
    background: var(--white);
}

.container-wide {
    max-width: 1300px;
    margin: 0 auto;
}

.split-content {
    display: flex;
    gap: 5rem;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2.6rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.split-text p {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    color: #4a4a4a;
}

.split-visual {
    flex: 1;
}

.visual-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3.5rem 2.5rem;
    border-radius: 12px;
    text-align: center;
    color: var(--white);
}

.stat-large {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.visual-card p {
    font-size: 1.2rem;
    line-height: 1.5;
}

.problem-amplify {
    padding: 6rem 2rem;
    background: #f1f3f5;
}

.problem-amplify h2 {
    font-size: 2.4rem;
    color: var(--primary);
    margin-bottom: 2rem;
    text-align: center;
}

.problem-amplify > p {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #4a4a4a;
}

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

.problem-card {
    flex: 1;
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary);
}

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

.problem-card p {
    font-size: 1.05rem;
    color: #5a5a5a;
}

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

.alternating-blocks {
    display: flex;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: center;
}

.alternating-blocks.reverse {
    flex-direction: row-reverse;
}

.block-left,
.block-right {
    flex: 1;
}

.block-content h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.3rem;
}

.block-content p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.image-placeholder {
    width: 100%;
    height: 360px;
    border-radius: 8px;
}

.cta-inline {
    padding: 5rem 2rem;
    background: var(--primary);
}

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

.cta-box h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

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

.trust-section {
    padding: 6rem 2rem;
    background: var(--light);
}

.trust-section h2 {
    font-size: 2.4rem;
    color: var(--primary);
    margin-bottom: 2rem;
    text-align: center;
}

.trust-section > p {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #4a4a4a;
}

.trust-elements {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
}

.trust-item {
    flex: 1;
}

.trust-item strong {
    display: block;
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.trust-item p {
    font-size: 1.05rem;
    color: #5a5a5a;
}

.testimonial-inline {
    padding: 5rem 2rem;
    background: var(--white);
}

.testimonial-large {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--primary);
    border-left: 5px solid var(--secondary);
    padding-left: 2.5rem;
    line-height: 1.8;
}

.testimonial-large cite {
    display: block;
    font-size: 1rem;
    font-style: normal;
    margin-top: 1.5rem;
    color: var(--gray);
}

.services-reveal {
    padding: 7rem 2rem;
    background: #fafbfc;
}

.container-medium {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header-center {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header-center h2 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-header-center p {
    font-size: 1.2rem;
    color: var(--gray);
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: all 0.3s;
    position: relative;
}

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

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

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

.service-card > p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.service-includes {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.8rem;
}

.service-includes span {
    font-size: 0.95rem;
    color: #5a5a5a;
}

.price-tag {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

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

.btn-select-service:hover {
    background: #1f2745;
}

.btn-select-service.selected {
    background: var(--secondary);
}

.urgency-block {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #c73e1d 0%, #e67e22 100%);
}

.urgency-content {
    text-align: center;
    color: var(--white);
}

.urgency-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.urgency-content p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.urgency-highlight {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2rem;
}

.form-section {
    padding: 6rem 2rem;
    background: var(--light);
}

.form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    max-width: 700px;
    margin: 0 auto;
}

.form-wrapper h2 {
    font-size: 2.4rem;
    color: var(--primary);
    margin-bottom: 1rem;
    text-align: center;
}

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

.main-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    background: var(--secondary);
    color: var(--white);
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}

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

.final-cta {
    padding: 6rem 2rem;
    background: var(--primary);
}

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

.final-cta h2 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.final-cta p {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2.5rem;
}

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

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

.footer {
    background: #1a1a2e;
    color: var(--white);
    padding: 3rem 2rem 1.5rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    display: flex;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 0.95rem;
    opacity: 0.8;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    margin-bottom: 0.6rem;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 1.5rem 2rem;
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

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

.cookie-content a {
    color: var(--accent);
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

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

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

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

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

.sticky-btn {
    background: var(--secondary);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s;
    display: inline-block;
}

.sticky-btn:hover {
    background: #a33318;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

@media (max-width: 968px) {
    .nav-links {
        gap: 1rem;
    }

    .hero-content-narrow h1 {
        font-size: 2.5rem;
    }

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

    .split-content {
        flex-direction: column;
        gap: 3rem;
    }

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

    .alternating-blocks,
    .alternating-blocks.reverse {
        flex-direction: column;
    }

    .trust-elements {
        flex-direction: column;
        gap: 2rem;
    }

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

    .form-row {
        flex-direction: column;
    }

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

@media (max-width: 640px) {
    .hero-content-narrow h1 {
        font-size: 2rem;
    }

    .intro-text {
        font-size: 1.4rem;
    }

    .split-text h2 {
        font-size: 2rem;
    }

    .section-header-center h2 {
        font-size: 2.2rem;
    }

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

    .sticky-btn {
        display: block;
        text-align: center;
    }
}