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

:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --secondary: #0ea5e9;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border: #e2e8f0;
    --success: #10b981;
    --warning: #f59e0b;
}

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

.ad-notice {
    background: var(--warning);
    color: var(--bg-white);
    text-align: center;
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.nav-floating {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s;
}

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

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

.nav-menu a:hover {
    color: var(--primary);
}

.hero-asymmetric {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 80px 5%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.hero-content-offset {
    max-width: 600px;
    z-index: 10;
    margin-left: 8%;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.hero-text {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.cta-primary {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.cta-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.hero-image-overlap {
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%) rotate(-5deg);
    width: 55%;
    height: 70%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    background-color: var(--bg-light);
}

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

.intro-offset {
    padding: 100px 5%;
    display: flex;
    gap: 80px;
    align-items: center;
}

.intro-block {
    flex: 1;
    margin-left: 10%;
}

.intro-block h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.intro-block p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.intro-image-small {
    flex: 0 0 400px;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background-color: var(--bg-light);
}

.intro-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-staggered {
    padding: 120px 5%;
    background: var(--bg-light);
}

.section-header-left {
    max-width: 600px;
    margin-bottom: 60px;
    margin-left: 5%;
}

.section-header-left h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-header-left p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    width: calc(33.333% - 30px);
    min-width: 320px;
}

.service-card-1 {
    transform: translateY(20px);
}

.service-card-2 {
    transform: translateY(-20px);
}

.service-card-3 {
    transform: translateY(40px);
}

.service-card-4 {
    transform: translateY(-10px);
}

.service-card-5 {
    transform: translateY(30px);
}

.service-card-6 {
    transform: translateY(-30px);
}

.service-card:hover {
    transform: translateY(0) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: var(--bg-light);
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.select-service-btn {
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.select-service-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.select-service-btn.selected {
    background: var(--success);
}

.form-section-offset {
    padding: 100px 5%;
    display: flex;
    gap: 60px;
    align-items: center;
    background: white;
}

.form-container {
    flex: 1;
    max-width: 600px;
    margin-left: 8%;
}

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.form-intro {
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 1.05rem;
}

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

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

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 14px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.form-group input[readonly] {
    background: var(--bg-light);
    cursor: not-allowed;
}

.submit-btn {
    padding: 16px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.submit-btn:disabled {
    background: var(--text-light);
    cursor: not-allowed;
    transform: none;
}

.form-image-aside {
    flex: 0 0 45%;
    height: 600px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    background-color: var(--bg-light);
    transform: rotate(3deg);
}

.form-image-aside img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trust-section {
    padding: 100px 5%;
    background: var(--bg-light);
    text-align: center;
}

.trust-section h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.trust-grid {
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-item {
    flex: 0 0 300px;
    padding: 40px 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.trust-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.trust-item p {
    color: var(--text-light);
}

.cta-section-bottom {
    padding: 80px 5%;
    background: var(--primary);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
}

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

.cta-secondary {
    display: inline-block;
    background: white;
    color: var(--primary);
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 5% 20px;
}

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

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

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.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;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.7;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 25px 5%;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-content p {
    flex: 1;
    color: var(--text-dark);
}

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

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

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

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

.cookie-btn.accept:hover {
    background: #059669;
}

.cookie-btn.reject {
    background: var(--border);
    color: var(--text-dark);
}

.cookie-btn.reject:hover {
    background: #cbd5e1;
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-image-overlap {
        width: 50%;
        right: -5%;
    }

    .service-card {
        width: calc(50% - 20px);
    }

    .intro-offset {
        flex-direction: column;
        gap: 40px;
    }

    .intro-block {
        margin-left: 0;
    }

    .form-section-offset {
        flex-direction: column;
    }

    .form-container {
        margin-left: 0;
    }

    .form-image-aside {
        width: 100%;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .hero-asymmetric {
        flex-direction: column;
        padding: 60px 5%;
    }

    .hero-content-offset {
        margin-left: 0;
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-image-overlap {
        position: relative;
        width: 100%;
        height: 300px;
        right: 0;
        top: 0;
        transform: none;
        margin-top: 40px;
    }

    .service-card {
        width: 100%;
        transform: none !important;
    }

    .service-card:hover {
        transform: scale(1.02) !important;
    }

    .section-header-left {
        margin-left: 0;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}