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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

.nav-minimal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.02em;
}

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

.nav-links a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.6;
}

.hero-minimal {
    padding: 15rem 3rem 12rem;
    text-align: center;
}

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

.hero-title-large {
    font-size: 5.5rem;
    font-weight: 300;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 2.5rem;
}

.hero-subtitle-spacious {
    font-size: 1.4rem;
    color: #666;
    font-weight: 300;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.intro-minimal {
    padding: 8rem 3rem;
    background: #f8f8f8;
}

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

.container-medium {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 3rem;
}

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
}

.text-large {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.5;
    color: #1a1a1a;
}

.text-large-centered {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.5;
    color: #1a1a1a;
    text-align: center;
}

.visual-break {
    padding: 0;
}

.full-width-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.story-section {
    padding: 10rem 3rem;
}

.section-heading-minimal {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.text-medium {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem;
}

.insight-minimal {
    padding: 8rem 3rem;
    background: #1a1a1a;
    color: #ffffff;
}

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

.insight-title {
    font-size: 2.2rem;
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.insight-source {
    font-size: 0.95rem;
    opacity: 0.6;
    font-style: italic;
}

.problem-section {
    padding: 10rem 3rem;
}

.image-section {
    padding: 0;
}

.solution-intro {
    padding: 10rem 3rem;
    background: #f8f8f8;
}

.services-minimal {
    padding: 10rem 3rem;
}

.service-card-minimal {
    padding: 4rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.service-title {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.service-desc {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
    max-width: 600px;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 300;
    color: #1a1a1a;
}

.testimonial-minimal {
    padding: 10rem 3rem;
    background: #f8f8f8;
}

.testimonial-quote {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.testimonial-author {
    font-size: 1rem;
    color: #666;
}

.cta-section-minimal {
    padding: 8rem 3rem 4rem;
}

.cta-heading {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.cta-text {
    font-size: 1.15rem;
    color: #666;
}

.form-section {
    padding: 4rem 3rem 12rem;
}

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

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    border: 1px solid #ddd;
    background: #ffffff;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a1a1a;
}

.btn-submit {
    width: 100%;
    padding: 1.3rem;
    font-size: 1rem;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: opacity 0.3s;
}

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

.final-thought {
    padding: 10rem 3rem;
    background: #1a1a1a;
    color: #ffffff;
}

.footer-minimal {
    padding: 5rem 3rem 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-container {
    max-width: 1400px;
    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: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #1a1a1a;
}

.footer-copy {
    font-size: 0.85rem;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem 3rem;
    z-index: 10000;
    display: none;
}

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

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

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

.cookie-content a {
    color: #ffffff;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.8rem;
    font-size: 0.9rem;
    border: 1px solid #ffffff;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-accept:hover {
    background: #ffffff;
    color: #1a1a1a;
}

.btn-reject:hover {
    opacity: 0.7;
}

.page-header {
    padding: 12rem 3rem 6rem;
    text-align: center;
}

.page-title {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: -0.02em;
}

.page-content {
    padding: 4rem 3rem 8rem;
}

.content-section {
    margin-bottom: 4rem;
}

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

.content-section h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1rem;
}

.content-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.content-section li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-info {
    background: #f8f8f8;
    padding: 3rem;
    margin-bottom: 3rem;
}

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

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-item p {
    font-size: 1.1rem;
    color: #555;
}

.thanks-section {
    padding: 15rem 3rem 12rem;
    text-align: center;
}

.thanks-title {
    font-size: 4.5rem;
    font-weight: 300;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
}

.thanks-message {
    font-size: 1.4rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.thanks-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: opacity 0.3s;
}

.thanks-cta:hover {
    opacity: 0.8;
}

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

    .nav-links {
        gap: 1.5rem;
    }

    .hero-minimal {
        padding: 10rem 1.5rem 8rem;
    }

    .hero-title-large {
        font-size: 3rem;
    }

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

    .intro-minimal,
    .story-section,
    .problem-section,
    .solution-intro,
    .services-minimal,
    .testimonial-minimal,
    .cta-section-minimal,
    .form-section,
    .final-thought {
        padding: 5rem 1.5rem;
    }

    .insight-minimal {
        padding: 5rem 1.5rem;
    }

    .container-medium,
    .container-wide {
        padding: 0 1.5rem;
    }

    .text-large,
    .text-large-centered {
        font-size: 1.4rem;
    }

    .section-heading-minimal {
        font-size: 2rem;
    }

    .insight-title {
        font-size: 1.5rem;
    }

    .service-title {
        font-size: 1.5rem;
    }

    .testimonial-quote {
        font-size: 1.4rem;
    }

    .cta-heading {
        font-size: 1.8rem;
    }

    .full-width-image {
        height: 300px;
    }

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

    .cookie-banner {
        padding: 1.5rem;
    }

    .page-header {
        padding: 8rem 1.5rem 4rem;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .page-content {
        padding: 2rem 1.5rem 5rem;
    }

    .thanks-section {
        padding: 10rem 1.5rem 8rem;
    }

    .thanks-title {
        font-size: 2.5rem;
    }

    .thanks-message {
        font-size: 1.1rem;
    }
}
