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

:root {
    --color-primary: #1a1a1a;
    --color-secondary: #f5f5f5;
    --color-accent: #0066ff;
    --color-text: #2c2c2c;
    --color-text-light: #666666;
    --color-border: #e0e0e0;
    --color-white: #ffffff;
    --spacing-unit: 8px;
    --max-width: 1400px;
    --max-width-narrow: 800px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--color-text);
    line-height: 1.6;
    background: var(--color-white);
    overflow-x: hidden;
}

.nav-minimal {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
    padding: calc(var(--spacing-unit) * 3) 0;
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 calc(var(--spacing-unit) * 4);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: calc(var(--spacing-unit) * 5);
}

.nav-links a {
    text-decoration: none;
    color: var(--color-text);
    font-size: 15px;
    font-weight: 400;
    transition: color 0.2s ease;
}

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

.hero-minimal {
    margin-top: 80px;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: calc(var(--spacing-unit) * 15) calc(var(--spacing-unit) * 4);
    position: relative;
}

.hero-content-centered {
    text-align: center;
    max-width: 900px;
    margin-bottom: calc(var(--spacing-unit) * 8);
}

.hero-title-large {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--color-primary);
    letter-spacing: -2px;
    margin-bottom: calc(var(--spacing-unit) * 4);
}

.hero-subtitle-thin {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 300;
    color: var(--color-text-light);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.hero-image-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.section-spacious {
    padding: calc(var(--spacing-unit) * 20) calc(var(--spacing-unit) * 4);
}

.light-bg {
    background: #fafafa;
}

.white-bg {
    background: var(--color-white);
}

.content-narrow {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
}

.content-wide {
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-title-minimal {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 300;
    line-height: 1.2;
    color: var(--color-primary);
    margin-bottom: calc(var(--spacing-unit) * 6);
    letter-spacing: -1px;
}

.text-large {
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 300;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: calc(var(--spacing-unit) * 3);
}

.cta-text-link {
    display: inline-block;
    font-size: 18px;
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 400;
    margin-top: calc(var(--spacing-unit) * 4);
    transition: opacity 0.2s ease;
}

.cta-text-link:hover {
    opacity: 0.7;
}

.section-image-overlay {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--spacing-unit) * 15) calc(var(--spacing-unit) * 4);
}

.overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.dark-overlay .overlay-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.overlay-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    color: var(--color-white);
}

.overlay-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: calc(var(--spacing-unit) * 3);
}

.overlay-source {
    font-size: 16px;
    font-weight: 400;
    opacity: 0.9;
}

.services-minimal {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 10);
}

.service-card-premium {
    display: flex;
    gap: calc(var(--spacing-unit) * 8);
    align-items: flex-start;
}

.service-card-premium:nth-child(even) {
    flex-direction: row-reverse;
}

.service-visual {
    flex: 1;
    min-width: 0;
}

.service-visual img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.service-details {
    flex: 1;
    min-width: 0;
}

.service-title {
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 400;
    color: var(--color-primary);
    margin-bottom: calc(var(--spacing-unit) * 3);
    letter-spacing: -0.5px;
}

.service-description {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: calc(var(--spacing-unit) * 4);
}

.service-specs {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 2);
    margin-bottom: calc(var(--spacing-unit) * 5);
}

.spec-item {
    font-size: 14px;
    color: var(--color-text-light);
    font-weight: 400;
}

.price-wrapper {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 1);
    margin-bottom: calc(var(--spacing-unit) * 4);
}

.price-label {
    font-size: 14px;
    color: var(--color-text-light);
    font-weight: 400;
}

.price-value {
    font-size: 32px;
    font-weight: 300;
    color: var(--color-primary);
    letter-spacing: -1px;
}

.btn-primary {
    padding: calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 5);
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: background 0.2s ease;
    border-radius: 2px;
}

.btn-primary:hover {
    background: #333333;
}

.btn-primary-large {
    padding: calc(var(--spacing-unit) * 3) calc(var(--spacing-unit) * 8);
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    transition: background 0.2s ease;
    width: 100%;
    border-radius: 2px;
}

.btn-primary-large:hover {
    background: #333333;
}

.testimonials-minimal {
    padding: calc(var(--spacing-unit) * 20) calc(var(--spacing-unit) * 4);
    background: #f9f9f9;
}

.testimonial-item {
    max-width: 800px;
    margin: 0 auto calc(var(--spacing-unit) * 10);
    text-align: center;
}

.testimonial-item:last-child {
    margin-bottom: 0;
}

.testimonial-text {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 300;
    line-height: 1.6;
    color: var(--color-primary);
    margin-bottom: calc(var(--spacing-unit) * 3);
    font-style: italic;
}

.testimonial-author {
    font-size: 16px;
    color: var(--color-text-light);
    font-weight: 400;
}

.cta-section-minimal {
    padding: calc(var(--spacing-unit) * 20) calc(var(--spacing-unit) * 4);
    background: var(--color-white);
}

.cta-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 300;
    line-height: 1.2;
    color: var(--color-primary);
    margin-bottom: calc(var(--spacing-unit) * 3);
    text-align: center;
    letter-spacing: -1px;
}

.cta-subtitle {
    font-size: 18px;
    font-weight: 300;
    color: var(--color-text-light);
    text-align: center;
    margin-bottom: calc(var(--spacing-unit) * 8);
}

.form-minimal {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: calc(var(--spacing-unit) * 4);
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    color: var(--color-text);
    font-weight: 400;
    margin-bottom: calc(var(--spacing-unit) * 1);
}

.form-group input,
.form-group select {
    padding: calc(var(--spacing-unit) * 2);
    border: 1px solid var(--color-border);
    font-size: 16px;
    font-family: inherit;
    background: var(--color-white);
    color: var(--color-text);
    border-radius: 2px;
}

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

.footer-minimal {
    padding: calc(var(--spacing-unit) * 15) calc(var(--spacing-unit) * 4);
    background: var(--color-primary);
    color: var(--color-white);
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 6);
}

.footer-brand {
    text-align: center;
}

.footer-logo {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: calc(var(--spacing-unit) * 2);
}

.footer-tagline {
    font-size: 16px;
    font-weight: 300;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: calc(var(--spacing-unit) * 4);
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

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

.footer-bottom {
    text-align: center;
    font-size: 14px;
    opacity: 0.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    padding: calc(var(--spacing-unit) * 3) calc(var(--spacing-unit) * 4);
    z-index: 2000;
    display: none;
}

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

.cookie-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: calc(var(--spacing-unit) * 4);
}

.cookie-text {
    color: var(--color-white);
    font-size: 14px;
    font-weight: 300;
}

.cookie-buttons {
    display: flex;
    gap: calc(var(--spacing-unit) * 2);
}

.btn-cookie {
    padding: calc(var(--spacing-unit) * 1.5) calc(var(--spacing-unit) * 4);
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: var(--color-white);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 2px;
}

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

.btn-cookie.reject:hover {
    border-color: var(--color-white);
}

@media (max-width: 768px) {
    .nav-links {
        gap: calc(var(--spacing-unit) * 3);
    }

    .nav-links a {
        font-size: 14px;
    }

    .section-spacious {
        padding: calc(var(--spacing-unit) * 10) calc(var(--spacing-unit) * 3);
    }

    .service-card-premium,
    .service-card-premium:nth-child(even) {
        flex-direction: column;
    }

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

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