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

:root {
    --color-primary: #2c2c2c;
    --color-secondary: #6b6b6b;
    --color-accent: #4a4a4a;
    --color-light: #f8f8f8;
    --color-white: #ffffff;
    --color-border: #e0e0e0;
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --spacing-xs: 1rem;
    --spacing-sm: 2rem;
    --spacing-md: 4rem;
    --spacing-lg: 6rem;
    --spacing-xl: 8rem;
    --spacing-xxl: 12rem;
}

body {
    font-family: var(--font-primary);
    color: var(--color-primary);
    line-height: 1.7;
    font-size: 18px;
    background: var(--color-white);
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

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

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

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

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.hero-minimal {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

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

.hero-minimal h1 {
    font-size: 5rem;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--color-secondary);
    font-weight: 300;
    margin-bottom: 3rem;
    letter-spacing: 0.01em;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.spacer-large {
    height: var(--spacing-xl);
}

.spacer-medium {
    height: var(--spacing-md);
}

.intro-statement {
    padding: var(--spacing-md) 0;
}

.intro-statement h2 {
    font-size: 2.8rem;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 2.5rem;
    letter-spacing: -0.02em;
}

.text-large {
    font-size: 1.35rem;
    line-height: 1.8;
    color: var(--color-secondary);
    font-weight: 300;
}

.philosophy-block {
    padding: var(--spacing-md) 0;
}

.philosophy-block h3 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.text-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: var(--color-secondary);
}

.visual-break {
    margin: var(--spacing-lg) 0;
}

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

.image-container img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.services-minimal {
    padding: var(--spacing-lg) 0;
}

.services-minimal h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 4rem;
    text-align: center;
    letter-spacing: -0.02em;
}

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

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

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

.service-item h3 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.service-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 300;
    margin: 1.5rem 0;
    color: var(--color-primary);
}

.cta-primary {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 3rem;
    background: transparent;
    color: var(--color-primary);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    border: 1px solid var(--color-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.cta-secondary:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.cta-select {
    padding: 0.8rem 2.5rem;
    background: transparent;
    color: var(--color-primary);
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    border: 1px solid var(--color-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
}

.cta-select:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.testimonial-simple {
    padding: var(--spacing-md) 0;
    text-align: center;
}

.testimonial-simple blockquote {
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--color-secondary);
}

.testimonial-simple cite {
    font-size: 1rem;
    font-style: normal;
    color: var(--color-secondary);
}

.approach-block {
    padding: var(--spacing-md) 0;
}

.approach-block h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: -0.02em;
}

.approach-steps {
    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(--color-border);
    flex-shrink: 0;
    line-height: 1;
}

.step h4 {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 0.8rem;
}

.step p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-secondary);
}

.cta-center {
    text-align: center;
    padding: var(--spacing-lg) 0;
}

.cta-center h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.cta-center p {
    font-size: 1.2rem;
    color: var(--color-secondary);
    margin-bottom: 2.5rem;
}

.footer-minimal {
    background: var(--color-light);
    padding: 4rem 2rem 2rem;
    margin-top: var(--spacing-xl);
}

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

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.2rem;
}

.footer-col p {
    font-size: 0.95rem;
    color: var(--color-secondary);
    line-height: 1.6;
}

.footer-col a {
    display: block;
    font-size: 0.95rem;
    color: var(--color-secondary);
    margin-bottom: 0.7rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--color-secondary);
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--color-white);
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--color-secondary);
    line-height: 1;
}

.modal-close:hover {
    color: var(--color-primary);
}

.modal-content h3 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.modal-content p {
    font-size: 1.1rem;
    color: var(--color-secondary);
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--color-border);
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: border-color 0.3s ease;
}

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

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

.cookie-banner.active {
    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 {
    font-size: 0.95rem;
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: var(--color-white);
    text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    font-family: var(--font-primary);
    cursor: pointer;
    border: none;
    transition: opacity 0.3s ease;
}

.cookie-accept {
    background: var(--color-white);
    color: var(--color-primary);
}

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

.cookie-accept:hover,
.cookie-reject:hover {
    opacity: 0.8;
}

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

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.page-header .subtitle {
    font-size: 1.3rem;
    color: var(--color-secondary);
    font-weight: 300;
}

.services-detailed {
    padding: var(--spacing-md) 0;
}

.service-detail {
    margin-bottom: 5rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--color-border);
}

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

.service-info h2 {
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.service-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-secondary);
    margin-bottom: 1.2rem;
}

.service-info ul {
    margin: 1.5rem 0 2rem 1.5rem;
}

.service-info li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-secondary);
    margin-bottom: 0.6rem;
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 300;
    margin: 2rem 0 1.5rem;
    color: var(--color-primary);
}

.about-story {
    padding: var(--spacing-md) 0;
}

.about-story h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.about-philosophy {
    padding: var(--spacing-md) 0;
}

.about-philosophy h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.team-section {
    padding: var(--spacing-md) 0;
}

.team-section h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: -0.02em;
}

.team-intro p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

.values-section {
    padding: var(--spacing-md) 0;
}

.values-section h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: -0.02em;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.value-item h3 {
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 0.8rem;
}

.value-item p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-secondary);
}

.contact-info {
    padding: var(--spacing-md) 0;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-block h3 {
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.contact-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-secondary);
}

.contact-block a {
    color: var(--color-primary);
    text-decoration: underline;
}

.contact-note {
    padding: var(--spacing-md) 0;
}

.contact-note a {
    color: var(--color-primary);
    text-decoration: underline;
}

.thanks-container {
    padding: var(--spacing-lg) 0;
    text-align: center;
}

.thanks-content h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.order-summary {
    margin: 3rem 0;
}

.summary-box {
    background: var(--color-light);
    padding: 2rem;
    margin: 2rem 0;
}

.summary-box h3 {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.summary-box p {
    font-size: 1.1rem;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.thanks-actions {
    margin-top: 3rem;
}

.thanks-next-steps {
    padding: var(--spacing-md) 0;
}

.thanks-next-steps h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: -0.02em;
}

.steps-simple {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.step-item h4 {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 0.8rem;
}

.step-item p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-secondary);
}

.legal-content {
    padding: var(--spacing-md) 0;
}

.legal-content h2 {
    font-size: 2rem;
    font-weight: 400;
    margin: 3rem 0 1.5rem;
    letter-spacing: -0.01em;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.4rem;
    font-weight: 400;
    margin: 2rem 0 1rem;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-secondary);
    margin-bottom: 1.2rem;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.legal-content li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-secondary);
    margin-bottom: 0.6rem;
}

.legal-content a {
    color: var(--color-primary);
    text-decoration: underline;
}

.legal-updated {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
    font-style: italic;
    color: var(--color-secondary);
}

@media (max-width: 768px) {
    .nav-minimal {
        padding: 1.5rem 2rem;
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .hero-minimal h1 {
        font-size: 3rem;
    }

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

    .intro-statement h2 {
        font-size: 2rem;
    }

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

    .services-minimal h2 {
        font-size: 2.2rem;
    }

    .service-item h3 {
        font-size: 1.4rem;
    }

    .service-price {
        font-size: 1.6rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .cta-secondary {
        margin-left: 0;
        margin-top: 1rem;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: space-between;
    }

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

    .step {
        flex-direction: column;
        gap: 1rem;
    }

    :root {
        --spacing-lg: 4rem;
        --spacing-xl: 5rem;
        --spacing-xxl: 6rem;
    }

    .image-container img {
        height: 300px;
    }
}
