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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

.ad-disclosure {
    background: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

.nav-floating {
    position: fixed;
    top: 60px;
    right: 40px;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav-brand {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

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

.nav-links a {
    text-decoration: none;
    color: #555;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #3498db;
}

.hero-asymmetric {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    overflow: hidden;
}

.hero-content-offset {
    position: relative;
    z-index: 2;
    max-width: 520px;
    margin-left: 80px;
}

.hero-content-offset h1 {
    font-size: 52px;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-content-offset p {
    font-size: 19px;
    color: #555;
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: #2980b9;
}

.hero-image-overlap {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%) rotate(-3deg);
    width: 700px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

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

.intro-offset {
    display: flex;
    gap: 80px;
    padding: 120px 60px 80px 140px;
    align-items: flex-start;
}

.intro-block-left {
    flex: 1.3;
    padding-right: 40px;
}

.intro-block-left h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #2c3e50;
    line-height: 1.2;
}

.intro-block-left p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.intro-stats-right {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.stat-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transform: rotate(2deg);
}

.stat-card:nth-child(2) {
    transform: rotate(-2deg);
    margin-left: 30px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 15px;
    color: #666;
}

.problem-visual {
    position: relative;
    padding: 100px 60px 100px 200px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.problem-image-float {
    position: relative;
    width: 380px;
    height: 480px;
    border-radius: 16px;
    overflow: hidden;
    transform: translateY(-30px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    background-color: #34495e;
}

.problem-image-float img {
    width: 100%;
    height: 100%;
}

.problem-text-overlap {
    flex: 1;
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-left: -80px;
    z-index: 2;
}

.problem-text-overlap h3 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.problem-text-overlap ul {
    list-style: none;
    margin-bottom: 24px;
}

.problem-text-overlap ul li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: #555;
    font-size: 16px;
}

.problem-text-overlap ul li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: 700;
}

.problem-text-overlap p {
    color: #666;
    line-height: 1.7;
}

.services-asymmetric {
    padding: 100px 60px;
    background: #f8f9fa;
}

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

.section-header-offset h2 {
    font-size: 42px;
    margin-bottom: 18px;
    color: #2c3e50;
}

.section-header-offset p {
    font-size: 17px;
    color: #666;
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 0 60px;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.service-card-large {
    flex: 1 1 calc(60% - 15px);
    transform: rotate(-1deg);
}

.service-card-offset {
    flex: 1 1 calc(40% - 15px);
    transform: rotate(1.5deg);
    margin-top: 40px;
}

.service-card-small {
    flex: 1 1 calc(35% - 15px);
    transform: rotate(-0.8deg);
}

.service-card-wide {
    flex: 1 1 calc(65% - 15px);
    transform: rotate(0.5deg);
    margin-top: -20px;
}

.service-card-medium {
    flex: 1 1 calc(48% - 15px);
    transform: rotate(-1.2deg);
}

.service-image-bg {
    height: 220px;
    overflow: hidden;
}

.service-image-bg img {
    width: 100%;
    height: 100%;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 14px;
    color: #2c3e50;
}

.service-content p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 16px;
}

.btn-select-service {
    background: #3498db;
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select-service:hover {
    background: #2980b9;
}

.service-card.selected .btn-select-service {
    background: #27ae60;
}

.service-card.selected {
    border: 3px solid #27ae60;
}

.form-section-diagonal {
    position: relative;
    padding: 120px 60px 120px 200px;
    display: flex;
    gap: 80px;
    align-items: center;
    background: white;
}

.form-container {
    flex: 1;
    max-width: 540px;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.form-container p {
    font-size: 16px;
    color: #666;
    margin-bottom: 32px;
}

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

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.form-group input[readonly] {
    background: #f5f5f5;
    cursor: not-allowed;
}

.btn-submit {
    background: #27ae60;
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #229954;
}

.form-visual-accent {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%) rotate(4deg);
    width: 400px;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    background-color: #2c3e50;
}

.form-visual-accent img {
    width: 100%;
    height: 100%;
}

.trust-elements-scattered {
    padding: 100px 80px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.trust-item {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.trust-left {
    flex: 1 1 calc(40% - 30px);
    transform: rotate(-1.5deg);
    margin-left: 40px;
}

.trust-right {
    flex: 1 1 calc(35% - 30px);
    transform: rotate(2deg);
    margin-top: 60px;
}

.trust-center {
    flex: 1 1 calc(45% - 30px);
    transform: rotate(-0.8deg);
    margin-left: 120px;
    margin-top: -40px;
}

.trust-item h4 {
    font-size: 24px;
    margin-bottom: 14px;
    color: #2c3e50;
}

.trust-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.footer-asymmetric {
    background: #2c3e50;
    color: white;
    padding: 60px 80px 30px 80px;
}

.footer-main {
    display: flex;
    gap: 80px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col-wide {
    flex: 1.5;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #bdc3c7;
}

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

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

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

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

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #ecf0f1;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 24px 40px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-cookie-accept {
    background: #27ae60;
    color: white;
}

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

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

.btn-cookie-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 1200px) {
    .hero-image-overlap {
        width: 500px;
        height: 400px;
    }

    .nav-floating {
        top: 50px;
        right: 20px;
        padding: 15px 20px;
    }

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

    .problem-visual {
        flex-direction: column;
        padding: 80px 40px;
    }

    .problem-text-overlap {
        margin-left: 0;
    }

    .form-section-diagonal {
        flex-direction: column;
        padding: 80px 40px;
    }

    .form-visual-accent {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
    }
}

@media (max-width: 768px) {
    .hero-content-offset {
        margin-left: 20px;
    }

    .hero-content-offset h1 {
        font-size: 36px;
    }

    .hero-image-overlap {
        display: none;
    }

    .nav-floating {
        position: relative;
        top: 0;
        right: 0;
        margin: 20px;
    }

    .services-grid-irregular {
        flex-direction: column;
    }

    .service-card {
        transform: none !important;
        margin-top: 0 !important;
    }

    .trust-elements-scattered {
        flex-direction: column;
    }

    .trust-item {
        transform: none !important;
        margin: 0 !important;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}
