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

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-brand {
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.nav-brand a {
    color: #1a1a1a;
}

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

.nav-links a {
    color: #1a1a1a;
    font-size: 0.95rem;
    transition: opacity 0.3s ease;
    font-weight: 400;
}

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

.hero-minimal {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 5% 6rem;
    background-color: #fafafa;
}

.hero-spacer {
    height: 8vh;
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
    max-width: 900px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 400;
    color: #555;
    margin-bottom: 3rem;
    max-width: 600px;
}

.cta-primary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 2px;
    transition: background-color 0.3s ease;
    letter-spacing: 0.01em;
}

.cta-primary:hover {
    background-color: #333;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: #1a1a1a;
    font-size: 1rem;
    font-weight: 500;
    border: 2px solid #1a1a1a;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #1a1a1a;
    color: #ffffff;
}

.section-intro {
    padding: 8rem 5% 6rem;
    background-color: #ffffff;
}

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

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

.text-large {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    line-height: 1.4;
    font-weight: 300;
    letter-spacing: -0.01em;
    color: #1a1a1a;
}

.text-medium {
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
    line-height: 1.7;
    font-weight: 400;
    color: #333;
    margin-bottom: 1.5rem;
}

.section-image-full {
    width: 100%;
    overflow: hidden;
}

.full-image {
    width: 100%;
    height: 60vh;
    object-fit: cover;
}

.section-statement {
    padding: 10rem 5% 8rem;
    background-color: #fafafa;
}

.heading-xl {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 2.5rem;
}

.heading-lg {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.heading-md {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.heading-sm {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.section-insight {
    padding: 8rem 5%;
    background-color: #ffffff;
}

.insight-block {
    margin-bottom: 5rem;
}

.insight-block:last-child {
    margin-bottom: 0;
}

.section-cta-inline {
    padding: 5rem 5%;
    text-align: center;
    background-color: #fafafa;
}

.section-problem {
    padding: 8rem 5%;
    background-color: #ffffff;
}

.section-spacer {
    height: 8rem;
    background-color: #fafafa;
}

.section-spacer-small {
    height: 4rem;
    background-color: #ffffff;
}

.section-visual-split {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
}

.split-content {
    padding: 6rem 5%;
}

.split-text {
    max-width: 650px;
    margin: 0 auto;
}

.split-text p {
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.split-image {
    width: 100%;
    height: 60vh;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-trust {
    padding: 8rem 5%;
    background-color: #f5f5f5;
}

.trust-element {
    margin-bottom: 4rem;
}

.trust-element:last-child {
    margin-bottom: 0;
}

.quote {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-style: italic;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1rem;
}

.attribution {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.section-services {
    padding: 8rem 5%;
    background-color: #ffffff;
}

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

.service-card {
    padding: 3rem;
    background-color: #fafafa;
    border: 1px solid #e5e5e5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.service-title {
    font-size: clamp(1.3rem, 2.2vw, 1.7rem);
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.service-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 2rem;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    padding: 1rem 2rem;
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 2px;
    transition: background-color 0.3s ease;
}

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

.section-urgency {
    padding: 8rem 5%;
    background-color: #1a1a1a;
    color: #ffffff;
}

.section-urgency .text-large {
    color: #ffffff;
}

.section-form {
    padding: 8rem 5%;
    background-color: #fafafa;
}

.form-minimal {
    max-width: 600px;
    margin: 3rem auto 0;
}

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

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

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

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

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 500;
    border-radius: 2px;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #333;
}

.section-final-cta {
    padding: 10rem 5%;
    background-color: #ffffff;
    text-align: center;
}

.section-final-cta .cta-primary {
    margin-top: 2rem;
}

.footer-minimal {
    padding: 4rem 5% 3rem;
    background-color: #1a1a1a;
    color: #ffffff;
}

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

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

.footer-links a {
    color: #ffffff;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-copy {
    font-size: 0.85rem;
    opacity: 0.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem 5%;
    z-index: 2000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.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 {
    margin: 0;
    font-size: 0.95rem;
}

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

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

.btn-cookie,
.btn-cookie-alt {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 2px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

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

.btn-cookie:hover {
    background-color: #e5e5e5;
}

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

.btn-cookie-alt:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.page-hero {
    padding: 12rem 5% 6rem;
    background-color: #fafafa;
    text-align: center;
}

.page-hero .hero-subtitle {
    margin: 0 auto;
}

.section-content {
    padding: 6rem 5%;
    background-color: #ffffff;
}

.services-detail {
    padding: 4rem 5% 8rem;
    background-color: #ffffff;
}

.service-detail-card {
    margin-bottom: 5rem;
    padding-bottom: 5rem;
    border-bottom: 1px solid #e5e5e5;
}

.service-detail-card:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.service-detail-card .cta-secondary {
    margin-top: 2rem;
}

.contact-section {
    padding: 6rem 5% 8rem;
    background-color: #ffffff;
}

.contact-info {
    margin-bottom: 4rem;
}

.contact-detail {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-note {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #fafafa;
    border-left: 3px solid #1a1a1a;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10rem 5%;
    background-color: #fafafa;
}

.thanks-section .content-narrow {
    text-align: center;
}

.thanks-section .heading-xl {
    margin-bottom: 2rem;
}

.thanks-section .cta-secondary {
    margin-top: 3rem;
}

.legal-content {
    padding: 4rem 5% 8rem;
    background-color: #ffffff;
}

.legal-content h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.legal-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

@media (min-width: 768px) {
    .section-visual-split {
        flex-direction: row;
    }

    .split-content {
        flex: 1;
        display: flex;
        align-items: center;
    }

    .split-image {
        flex: 1;
        height: auto;
        min-height: 600px;
    }

    .services-grid {
        display: flex;
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: row;
    }
}

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

    .nav-links a {
        font-size: 0.85rem;
    }

    .hero-minimal {
        padding: 6rem 5% 4rem;
    }

    .section-intro,
    .section-statement,
    .section-insight,
    .section-problem,
    .section-trust,
    .section-services,
    .section-urgency,
    .section-form,
    .section-final-cta {
        padding: 5rem 5%;
    }

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

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

    .btn-cookie,
    .btn-cookie-alt {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .nav-minimal {
        padding: 1.5rem 5%;
    }

    .nav-brand {
        font-size: 1.1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.8rem;
    }

    .service-card {
        padding: 2rem;
    }
}