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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #f4f4f4;
    --accent-color: #2d5f8f;
    --text-color: #333;
    --light-text: #666;
    --border-color: #ddd;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: #fff;
}

.nav-minimal {
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

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

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

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

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

.hero-minimal {
    padding: 12rem 2rem 10rem;
    text-align: center;
    background: var(--secondary-color);
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 3rem;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--light-text);
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.intro-wide {
    padding: 8rem 2rem;
}

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

.lead-text {
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 300;
}

.insight-block {
    background: var(--primary-color);
    color: #fff;
    padding: 10rem 2rem;
}

.insight-container {
    max-width: 900px;
    margin: 0 auto;
}

.insight-text h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    font-weight: 400;
    line-height: 1.3;
}

.insight-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #ccc;
}

.cta-inline {
    text-align: center;
    padding: 5rem 2rem;
}

.btn-primary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--accent-color);
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    border-radius: 3px;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #234a6f;
}

.principles-section {
    padding: 10rem 2rem;
    background: var(--secondary-color);
}

.section-title {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 6rem;
    font-weight: 300;
}

.principles-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.principle-card {
    flex: 1;
    min-width: 280px;
}

.principle-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.principle-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--light-text);
}

.story-flow {
    padding: 10rem 2rem;
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.story-content > p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.process-steps {
    margin-top: 5rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    font-size: 3rem;
    font-weight: 200;
    color: var(--accent-color);
    min-width: 80px;
}

.step-content h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 1.1rem;
    color: var(--light-text);
    line-height: 1.6;
}

.cta-block-center {
    text-align: center;
    padding: 8rem 2rem;
    background: #f9f9f9;
}

.cta-block-center h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.btn-secondary {
    display: inline-block;
    padding: 1.2rem 3rem;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.1rem;
    border-radius: 3px;
    transition: all 0.3s;
}

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

.testimonial-section {
    padding: 10rem 2rem;
}

.testimonial-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 300px;
}

.quote {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.author {
    font-size: 1rem;
    color: var(--light-text);
}

.services-preview {
    padding: 10rem 2rem;
    background: var(--secondary-color);
}

.section-title-center {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 6rem;
    font-weight: 300;
}

.services-minimal {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-item {
    padding: 3rem 0;
    border-bottom: 1px solid var(--border-color);
}

.service-item:last-child {
    border-bottom: none;
}

.service-item h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.service-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--light-text);
    margin-bottom: 2rem;
}

.price {
    display: block;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.btn-select {
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: #fff;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 3px;
    transition: background 0.3s;
}

.btn-select:hover {
    background: #333;
}

.form-section {
    padding: 10rem 2rem;
}

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

.form-container h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.form-group label {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--light-text);
}

.form-group input,
.form-group select {
    padding: 1rem;
    font-size: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    font-family: inherit;
}

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

.btn-submit {
    padding: 1.3rem;
    background: var(--accent-color);
    color: #fff;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 3px;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #234a6f;
}

.final-cta {
    padding: 12rem 2rem;
    background: var(--primary-color);
    color: #fff;
    text-align: center;
}

.final-content h2 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.final-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #ccc;
}

.btn-final {
    display: inline-block;
    padding: 1.3rem 4rem;
    background: #fff;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.1rem;
    border-radius: 3px;
    transition: all 0.3s;
}

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

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

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

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--light-text);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--text-color);
}

.footer-copy {
    font-size: 0.85rem;
    color: var(--light-text);
}

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

.sticky-btn {
    display: block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s;
}

.sticky-btn:hover {
    background: #234a6f;
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: #fff;
    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;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    border-radius: 3px;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.cookie-btn.accept {
    background: #fff;
    color: var(--primary-color);
}

.cookie-btn.reject {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

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

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }

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

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

    .insight-text h2,
    .story-content h2 {
        font-size: 2rem;
    }

    .section-title,
    .section-title-center {
        font-size: 2.5rem;
    }

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

    .nav-links {
        gap: 1.5rem;
    }

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

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

    .final-content h2 {
        font-size: 2.5rem;
    }
}
