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

:root {
    --primary: #2d3436;
    --secondary: #636e72;
    --accent: #d4a574;
    --accent-dark: #b8956a;
    --light: #f8f6f3;
    --white: #ffffff;
    --dark: #1a1a1a;
    --border: #e8e4df;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--primary);
    background: var(--white);
}

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

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

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--dark);
}

.logo span {
    color: var(--accent);
}

.nav-desktop {
    display: none;
}

.nav-desktop ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-desktop a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--secondary);
    position: relative;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-desktop a:hover::after {
    width: 100%;
}

.nav-desktop a:hover {
    color: var(--dark);
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    margin-right: -10px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    display: flex;
    flex-direction: column;
    padding: 40px 24px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 999;
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-nav a {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--dark);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 24px 100px;
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.hero h1 strong {
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-decor {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.05;
    top: 10%;
    right: -100px;
}

.hero-decor-2 {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.03;
    bottom: 10%;
    left: -50px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    font-size: 0.95rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--dark);
    color: var(--white);
}

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

.btn-outline {
    background: transparent;
    border: 1px solid var(--dark);
    color: var(--dark);
}

.btn-outline:hover {
    background: var(--dark);
    color: var(--white);
}

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

.btn-accent:hover {
    background: var(--accent-dark);
}

.section {
    padding: 100px 0;
}

.section-lg {
    padding: 140px 0;
}

.section-light {
    background: var(--light);
}

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

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 20px;
}

.section-dark .section-title {
    color: var(--white);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--secondary);
    max-width: 600px;
    margin: 0 auto;
}

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.intro-block {
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
}

.intro-text {
    max-width: 700px;
    text-align: center;
}

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

.intro-image {
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--border) 0%, #d9d5cf 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.intro-image svg {
    width: 80px;
    height: 80px;
    opacity: 0.3;
}

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

.service-card {
    background: var(--white);
    padding: 50px 40px;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--accent);
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--dark);
}

.service-card p {
    color: var(--secondary);
    line-height: 1.8;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent);
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.service-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--secondary);
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 800px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border);
}

.feature-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.feature-number {
    font-size: 3rem;
    font-weight: 200;
    color: var(--accent);
    line-height: 1;
}

.feature-item h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--dark);
}

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

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 700px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.process-marker {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: var(--accent);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.process-content h3 {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 10px;
}

.process-content p {
    color: var(--secondary);
    line-height: 1.7;
}

.testimonials-wrap {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.testimonial {
    background: var(--white);
    padding: 50px;
    border: 1px solid var(--border);
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 6rem;
    color: var(--accent);
    opacity: 0.15;
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--primary);
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--accent);
}

.testimonial-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
}

.testimonial-info span {
    font-size: 0.9rem;
    color: var(--secondary);
}

.cta-section {
    text-align: center;
    padding: 120px 24px;
    background: var(--dark);
    color: var(--white);
}

.cta-section h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 300;
    margin-bottom: 20px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.stats-row {
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: center;
    padding: 60px 0;
}

.stat-item {
    padding: 30px 0;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 200;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-dark .stat-label {
    color: rgba(255, 255, 255, 0.6);
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent);
}

.contact-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--secondary);
    line-height: 1.6;
}

.form-wrap {
    background: var(--light);
    padding: 50px 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    font-size: 1rem;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--dark);
    transition: border-color 0.3s ease;
    font-family: inherit;
}

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

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 18px;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--dark);
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.form-submit:hover {
    background: var(--accent);
}

.about-hero {
    padding: 180px 24px 100px;
    text-align: center;
    background: var(--light);
}

.about-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 300;
    margin-bottom: 25px;
    color: var(--dark);
}

.about-hero p {
    font-size: 1.2rem;
    color: var(--secondary);
    max-width: 700px;
    margin: 0 auto;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.about-block {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-block h2 {
    font-size: 2rem;
    font-weight: 400;
    color: var(--dark);
}

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

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.value-card {
    padding: 40px;
    background: var(--white);
    border: 1px solid var(--border);
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 15px;
}

.value-card p {
    color: var(--secondary);
    line-height: 1.7;
}

.page-header {
    padding: 160px 24px 80px;
    text-align: center;
    background: var(--light);
}

.page-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--dark);
    margin-bottom: 15px;
}

.page-header p {
    color: var(--secondary);
    font-size: 1.1rem;
}

.legal-content {
    padding: 80px 24px;
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--dark);
    margin: 40px 0 20px;
}

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

.legal-content p {
    color: var(--secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
    color: var(--secondary);
}

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.thanks-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 24px;
    text-align: center;
    background: var(--light);
}

.thanks-content {
    max-width: 600px;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--accent);
    margin: 0 auto 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-icon svg {
    width: 50px;
    height: 50px;
    stroke: var(--white);
}

.thanks-content h1 {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--dark);
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 1.15rem;
    color: var(--secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 24px 40px;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--accent);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-contact p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.footer-legal a:hover {
    color: var(--accent);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 25px;
    z-index: 9999;
    display: none;
}

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

.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
}

.cookie-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    font-size: 0.9rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.cookie-accept:hover {
    background: var(--accent-dark);
}

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

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

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sticky-cta.visible {
    opacity: 1;
    visibility: visible;
}

.sticky-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(212, 165, 116, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta a:hover {
    background: var(--accent-dark);
    transform: scale(1.1);
}

.sticky-cta svg {
    width: 24px;
    height: 24px;
}

.image-placeholder {
    background: linear-gradient(135deg, var(--border) 0%, #d9d5cf 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(255, 255, 255, 0.1) 20px,
        rgba(255, 255, 255, 0.1) 40px
    );
}

.image-placeholder svg {
    width: 60px;
    height: 60px;
    opacity: 0.3;
    position: relative;
    z-index: 1;
}

.gallery-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gallery-item {
    aspect-ratio: 4/3;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: block;
    }

    .hamburger {
        display: none;
    }

    .hero {
        padding: 180px 24px 120px;
    }

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(50% - 15px);
    }

    .stats-row {
        flex-direction: row;
        justify-content: center;
        gap: 80px;
    }

    .contact-grid {
        flex-direction: row;
    }

    .contact-info {
        flex: 1;
    }

    .form-wrap {
        flex: 1;
    }

    .footer-grid {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .cookie-inner {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 1 1 calc(50% - 20px);
    }

    .gallery-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .gallery-item {
        flex: 1 1 calc(50% - 10px);
    }

    .testimonials-wrap {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonial {
        flex: 1 1 calc(50% - 25px);
    }

    .intro-block {
        flex-direction: row;
        align-items: center;
    }

    .intro-text {
        text-align: left;
    }

    .intro-image {
        flex: 1;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 40px;
    }

    .section {
        padding: 120px 0;
    }

    .section-lg {
        padding: 160px 0;
    }

    .service-card {
        flex: 1 1 calc(33.333% - 20px);
    }

    .feature-item {
        flex-direction: row;
        align-items: flex-start;
        gap: 40px;
    }

    .feature-number {
        min-width: 80px;
    }

    .value-card {
        flex: 1 1 calc(25% - 30px);
    }

    .gallery-item {
        flex: 1 1 calc(33.333% - 14px);
    }
}
