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

:root {
    --primary: #1a4d7a;
    --secondary: #e85d04;
    --accent: #faa307;
    --dark: #0a1128;
    --light: #f8f9fa;
    --text: #2b2d42;
    --border: #dde1e7;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--light);
}

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

header {
    background: white;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    flex-wrap: wrap;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.ad-label {
    font-size: 11px;
    color: #666;
    background: #f0f0f0;
    padding: 4px 10px;
    border-radius: 3px;
    margin-left: 16px;
}

nav ul {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
}

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

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

.hero-asymmetric {
    display: flex;
    min-height: 540px;
    position: relative;
    overflow: hidden;
}

.hero-content-offset {
    width: 58%;
    padding: 80px 60px 80px 80px;
    background: linear-gradient(135deg, var(--primary) 0%, #2563a0 100%);
    color: white;
    position: relative;
    z-index: 2;
    clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
}

.hero-content-offset h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-content-offset p {
    font-size: 20px;
    margin-bottom: 36px;
    opacity: 0.95;
}

.hero-image-offset {
    width: 42%;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-left: -40px;
}

.btn {
    display: inline-block;
    padding: 16px 38px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

.btn-primary:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232, 93, 4, 0.3);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

.section-overlap {
    margin-top: -60px;
    position: relative;
    z-index: 3;
}

.card-offset-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 80px;
}

.card-tilted {
    background: white;
    padding: 42px 36px;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    flex: 1;
    min-width: 280px;
    position: relative;
    transition: transform 0.3s;
}

.card-tilted:nth-child(even) {
    transform: translateY(20px);
}

.card-tilted:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.card-tilted h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary);
}

.card-tilted p {
    font-size: 16px;
    color: #5a6272;
    line-height: 1.6;
}

.split-irregular {
    display: flex;
    gap: 60px;
    margin: 100px 0;
    align-items: center;
}

.split-text {
    flex: 1.3;
}

.split-visual {
    flex: 1;
    position: relative;
}

.split-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    object-fit: cover;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--dark);
}

.section-subtitle {
    font-size: 20px;
    color: #6c757d;
    margin-bottom: 36px;
    line-height: 1.6;
}

.services-asymmetric {
    padding: 100px 0;
    background: white;
}

.service-card-stagger {
    display: flex;
    gap: 48px;
    margin-bottom: 60px;
    align-items: stretch;
}

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

.service-visual {
    flex: 0 0 380px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    position: relative;
    min-height: 320px;
}

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-size: 32px;
    margin-bottom: 18px;
    color: var(--primary);
}

.service-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #495057;
}

.price-tag {
    display: inline-block;
    background: var(--accent);
    color: var(--dark);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 22px;
    margin-top: 12px;
}

.form-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    margin: 80px 0;
}

.form-wrapper {
    max-width: 680px;
    margin: 0 auto;
    background: white;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.form-wrapper h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: var(--primary);
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
}

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

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

.btn-submit {
    width: 100%;
    padding: 18px;
    font-size: 18px;
}

.contact-asymmetric {
    display: flex;
    gap: 80px;
    padding: 100px 0;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 38px;
    margin-bottom: 32px;
    color: var(--primary);
}

.info-block {
    margin-bottom: 32px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--dark);
    font-weight: 600;
}

.info-block p {
    font-size: 17px;
    color: #6c757d;
    line-height: 1.6;
}

.contact-map {
    flex: 1.2;
    min-height: 450px;
    background: #e9ecef;
    border-radius: 12px;
    position: relative;
}

footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--accent);
}

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

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

.footer-col a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: white;
}

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

.disclaimer {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 24px;
    margin: 60px 0;
    border-radius: 4px;
}

.disclaimer p {
    font-size: 15px;
    color: #856404;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 24px;
    z-index: 1000;
    display: none;
}

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

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

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

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

.btn-cookie {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

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

.btn-accept:hover {
    background: #154766;
}

.btn-reject {
    background: #e9ecef;
    color: var(--text);
}

.btn-reject:hover {
    background: #dee2e6;
}

.about-layout {
    padding: 80px 0;
}

.about-offset-block {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.about-offset-block:nth-child(even) {
    flex-direction: row-reverse;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary);
}

.about-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #495057;
}

.about-image {
    flex: 0 0 420px;
    height: 380px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 32px;
    color: var(--primary);
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--dark);
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #495057;
}

.legal-content ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

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

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
}

.thanks-box {
    text-align: center;
    max-width: 600px;
    background: white;
    padding: 60px 48px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.thanks-box h1 {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 24px;
}

.thanks-box p {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 32px;
    line-height: 1.6;
}

.checkmark {
    width: 80px;
    height: 80px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    font-size: 48px;
    color: white;
}

@media (max-width: 768px) {
    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-content-offset {
        width: 100%;
        clip-path: none;
    }

    .hero-image-offset {
        width: 100%;
        min-height: 300px;
        margin-left: 0;
    }

    .split-irregular,
    .contact-asymmetric,
    .service-card-stagger,
    .about-offset-block {
        flex-direction: column;
    }

    .service-visual,
    .about-image {
        flex: 0 0 auto;
        width: 100%;
    }

    nav ul {
        flex-direction: column;
        gap: 16px;
    }

    .header-main {
        flex-direction: column;
        align-items: flex-start;
    }

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