* {
    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: #fafafa;
}

.main-nav {
    background: #ffffff;
    padding: 2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e5e5e5;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
}

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

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

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

.ad-label {
    font-size: 0.75rem;
    color: #999;
    border-left: 1px solid #ddd;
    padding-left: 2rem;
}

.hero-minimal {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 3rem;
    background: #ffffff;
}

.hero-content {
    text-align: center;
    max-width: 900px;
}

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

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.intro-space {
    padding: 10rem 3rem;
    background: #f5f5f5;
}

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

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

.large-text {
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: #333;
}

.visual-break {
    width: 100%;
    background-color: #e8e8e8;
}

.visual-break img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.philosophy-block {
    padding: 10rem 3rem;
    background: #ffffff;
}

.philosophy-block h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 3rem;
    letter-spacing: -1px;
}

.philosophy-block p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 300;
    color: #444;
}

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

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

.insight-panel h2 {
    font-size: 3.5rem;
    font-weight: 200;
    text-align: center;
    margin-bottom: 6rem;
    letter-spacing: -1px;
}

.insight-grid {
    display: flex;
    gap: 4rem;
    justify-content: center;
}

.insight-item {
    flex: 1;
    max-width: 320px;
}

.insight-item h3 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.insight-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 300;
    color: #ccc;
}

.services-preview {
    padding: 12rem 3rem;
    background: #ffffff;
}

.services-preview h2 {
    font-size: 3.5rem;
    font-weight: 200;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.section-intro {
    font-size: 1.4rem;
    color: #666;
    margin-bottom: 6rem;
    font-weight: 300;
}

.service-list-minimal {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-minimal {
    padding: 3rem 0;
    border-bottom: 1px solid #e5e5e5;
}

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

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1.5rem;
}

.service-minimal h3 {
    font-size: 2rem;
    font-weight: 300;
}

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

.service-minimal p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 300;
}

.btn-select {
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
    font-weight: 300;
}

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

.btn-select.selected {
    background: #4a4a4a;
}

.form-section {
    padding: 10rem 3rem;
    background: #f5f5f5;
}

.form-section h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.form-section > .content-narrow > p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 4rem;
}

.minimal-form {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

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

.form-group label {
    font-size: 0.9rem;
    font-weight: 400;
    margin-bottom: 0.8rem;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.form-group input[readonly] {
    background: #f9f9f9;
    color: #666;
}

.btn-submit {
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 1.5rem 3rem;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 1rem;
    font-weight: 300;
}

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

.btn-submit:disabled {
    background: #999;
    cursor: not-allowed;
}

.trust-element {
    padding: 8rem 3rem;
    background: #ffffff;
}

.testimonial-minimal {
    border-left: 3px solid #1a1a1a;
    padding-left: 3rem;
}

.testimonial-minimal p {
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: #333;
}

.testimonial-minimal cite {
    font-size: 1.1rem;
    font-style: normal;
    color: #666;
}

.disclaimer-section {
    padding: 5rem 3rem;
    background: #f5f5f5;
}

.disclaimer {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    font-weight: 300;
}

.main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 6rem 3rem 3rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.footer-section p {
    font-size: 0.95rem;
    color: #999;
    font-weight: 300;
}

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

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 300;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 3rem;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #666;
    font-weight: 300;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 2rem;
    z-index: 10000;
    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;
    font-weight: 300;
}

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.8rem 2rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background 0.3s ease;
}

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

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

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

.btn-cookie-reject:hover {
    background: #333;
}

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

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

    .large-text {
        font-size: 1.3rem;
    }

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

    .nav-links {
        gap: 1.5rem;
    }

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

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