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

:root {
    --primary: #1a1a1a;
    --accent: #d4a574;
    --secondary: #2d2d2d;
    --light: #f5f5f5;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.15);
}

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    position: fixed;
    top: 30px;
    right: 40px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 50px;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
    color: var(--primary);
    letter-spacing: -0.5px;
    position: fixed;
    top: 30px;
    left: 40px;
    z-index: 1001;
}

nav {
    display: flex;
    gap: 35px;
}

nav a {
    color: var(--primary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
}

.hero-content {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.hero-left {
    flex: 1;
    padding-top: 60px;
}

.hero-left h1 {
    font-size: 72px;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: -2px;
}

.hero-left p {
    font-size: 19px;
    line-height: 1.7;
    color: var(--secondary);
    max-width: 520px;
    margin-bottom: 50px;
}

.hero-right {
    flex: 1;
    position: relative;
    margin-top: -40px;
}

.hero-image {
    width: 100%;
    height: 600px;
    background: linear-gradient(135deg, #e8dcc8 0%, #d4a574 100%);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.cta-primary {
    display: inline-flex;
    padding: 18px 45px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.3s, background 0.3s;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.section-offset {
    padding: 140px 0;
    display: flex;
    gap: 100px;
    align-items: center;
}

.offset-left {
    flex: 1;
    padding-right: 80px;
}

.offset-right {
    flex: 1.2;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.section-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--secondary);
    margin-bottom: 25px;
}

.feature-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 50px;
}

.feature-card {
    background: var(--light);
    padding: 35px;
    flex: 1;
    min-width: 280px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    font-size: 16px;
    color: var(--secondary);
    line-height: 1.7;
}

.services-section {
    padding: 120px 0;
    background: var(--light);
}

.services-intro {
    max-width: 700px;
    margin-bottom: 80px;
}

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

.service-item {
    display: flex;
    gap: 60px;
    background: var(--white);
    padding: 50px;
    align-items: flex-start;
    position: relative;
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
    margin-left: 80px;
}

.service-item:nth-child(odd) {
    margin-right: 80px;
}

.service-content {
    flex: 1;
}

.service-visual {
    flex: 1;
    height: 320px;
    background: linear-gradient(135deg, #e8dcc8 0%, #d4a574 100%);
    position: relative;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-item h3 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-item p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--secondary);
    margin-bottom: 25px;
}

.price-tag {
    display: inline-block;
    padding: 12px 28px;
    background: var(--accent);
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    margin: 20px 0;
}

.cta-secondary {
    display: inline-block;
    padding: 14px 35px;
    border: 2px solid var(--primary);
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s;
}

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

.asymmetric-block {
    display: flex;
    min-height: 600px;
    margin: 100px 0;
}

.asym-content {
    flex: 1;
    background: var(--primary);
    color: var(--white);
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.asym-visual {
    flex: 1.3;
    background: linear-gradient(45deg, #d4a574 0%, #e8dcc8 100%);
    margin-top: 60px;
    margin-bottom: -60px;
}

.asym-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-section {
    padding: 120px 0;
}

.about-layout {
    display: flex;
    gap: 120px;
}

.about-main {
    flex: 1.5;
}

.about-sidebar {
    flex: 1;
    padding-top: 40px;
}

.stats-block {
    display: flex;
    gap: 40px;
    margin: 60px 0;
}

.stat-item {
    flex: 1;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--secondary);
}

.form-section {
    padding: 100px 0;
    background: var(--light);
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.form-intro {
    margin-bottom: 60px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px 20px;
    border: 2px solid #ddd;
    font-size: 16px;
    font-family: inherit;
    background: var(--white);
    transition: border-color 0.3s;
}

.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 {
    padding: 18px 45px;
    background: var(--primary);
    color: var(--white);
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    align-self: flex-start;
}

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

.contact-info {
    padding: 100px 0;
}

.contact-grid {
    display: flex;
    gap: 80px;
}

.contact-block {
    flex: 1;
}

.contact-block h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}

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

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

.footer-content {
    display: flex;
    gap: 100px;
    margin-bottom: 60px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

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

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

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cookie-text {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

.cookie-accept:hover {
    background: #c49564;
}

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

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    padding: 18px 35px;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.sticky-cta:hover {
    transform: translateY(-3px);
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 150px 20px 100px;
}

.policy-content h1 {
    font-size: 48px;
    margin-bottom: 40px;
    font-weight: 700;
}

.policy-content h2 {
    font-size: 28px;
    margin-top: 50px;
    margin-bottom: 20px;
    font-weight: 600;
}

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

.policy-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.policy-content ul li {
    font-size: 17px;
    line-height: 1.8;
    color: var(--secondary);
    margin-bottom: 12px;
}

.thanks-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 150px 20px;
}

.thanks-content h1 {
    font-size: 64px;
    margin-bottom: 30px;
    font-weight: 700;
}

.thanks-content p {
    font-size: 20px;
    color: var(--secondary);
    margin-bottom: 50px;
    max-width: 600px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--primary);
    transition: all 0.3s;
}

@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        gap: 50px;
    }

    .hero-left h1 {
        font-size: 56px;
    }

    .section-offset {
        flex-direction: column;
        gap: 50px;
    }

    .service-item,
    .service-item:nth-child(even) {
        flex-direction: column;
        margin-left: 0;
        margin-right: 0;
    }

    .asymmetric-block {
        flex-direction: column;
    }

    .about-layout {
        flex-direction: column;
        gap: 60px;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    header {
        top: 20px;
        right: 20px;
    }

    .logo {
        top: 20px;
        left: 20px;
    }

    nav {
        position: fixed;
        top: 80px;
        right: -100%;
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        box-shadow: -5px 0 20px var(--shadow);
        transition: right 0.3s;
        min-width: 250px;
    }

    nav.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-left h1 {
        font-size: 42px;
    }

    .section-title {
        font-size: 36px;
    }

    .service-item h3 {
        font-size: 26px;
    }

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

    .sticky-cta {
        bottom: 20px;
        right: 20px;
        padding: 14px 25px;
        font-size: 14px;
    }
}
