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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

.ad-disclosure {
    background: #2c2c2c;
    color: #ffffff;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    font-weight: 700;
    font-size: 18px;
    color: #d64545;
    border-bottom: 2px solid #d64545;
    padding-bottom: 10px;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

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

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

.hero-content-offset {
    position: absolute;
    top: 25%;
    left: 8%;
    max-width: 520px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.92);
    padding: 50px 45px;
    border-radius: 4px;
}

.hero-title {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
    color: #1a1a1a;
}

.hero-intro {
    font-size: 18px;
    margin-bottom: 35px;
    color: #4a4a4a;
}

.hero-visual-block {
    position: absolute;
    right: 0;
    top: 0;
    width: 65%;
    height: 100%;
    background: #f5f5f5;
}

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

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

.cta-primary:hover {
    background: #b83737;
}

.intro-offset {
    padding: 120px 0;
    background: #f9f9f9;
}

.intro-text-narrow {
    max-width: 680px;
    margin: 0 auto 0 15%;
    padding: 0 30px;
}

.intro-text-narrow h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 30px;
    font-weight: 700;
}

.intro-text-narrow p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.services-cards-stagger {
    padding: 100px 5% 120px;
    background: #ffffff;
}

.section-header-left {
    margin-bottom: 60px;
    padding-left: 40px;
}

.section-header-left h2 {
    font-size: 42px;
    font-weight: 700;
}

.cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    position: relative;
}

.service-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.card-position-1 {
    width: calc(48% - 20px);
    margin-left: 0;
}

.card-position-2 {
    width: calc(48% - 20px);
    margin-left: auto;
    margin-top: -60px;
}

.card-position-3 {
    width: calc(45% - 20px);
    margin-left: 5%;
}

.card-position-4 {
    width: calc(48% - 20px);
    margin-left: auto;
    margin-top: -40px;
}

.card-position-5 {
    width: calc(50% - 20px);
    margin-left: 0;
}

.card-position-6 {
    width: calc(46% - 20px);
    margin-left: auto;
    margin-top: -80px;
}

.card-visual {
    width: 100%;
    height: 240px;
    background: #f0f0f0;
}

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

.card-content {
    padding: 30px 25px;
}

.card-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
}

.card-content p {
    font-size: 16px;
    color: #5a5a5a;
    margin-bottom: 20px;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #d64545;
    margin-bottom: 20px;
}

.select-service {
    width: 100%;
    padding: 14px 24px;
    background: #2c2c2c;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service:hover {
    background: #d64545;
}

.select-service.selected {
    background: #4caf50;
}

.why-choose-split {
    display: flex;
    min-height: 70vh;
}

.split-left {
    width: 48%;
    background: #e8e8e8;
}

.split-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-right {
    width: 52%;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-right h2 {
    font-size: 38px;
    margin-bottom: 35px;
    font-weight: 700;
}

.benefits-list {
    list-style: none;
    margin-bottom: 40px;
}

.benefits-list li {
    font-size: 18px;
    padding: 15px 0;
    padding-left: 35px;
    position: relative;
    border-bottom: 1px solid #e0e0e0;
}

.benefits-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: 700;
    font-size: 20px;
}

.cta-secondary {
    display: inline-block;
    background: #2c2c2c;
    color: #ffffff;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    align-self: flex-start;
    transition: background 0.3s;
}

.cta-secondary:hover {
    background: #d64545;
}

.form-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.form-container-offset {
    max-width: 600px;
    margin-left: 20%;
    background: #ffffff;
    padding: 50px 45px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-container-offset h2 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
}

.form-subtitle {
    font-size: 16px;
    color: #5a5a5a;
    margin-bottom: 35px;
}

.form-notice {
    background: #fff3cd;
    color: #856404;
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 25px;
    display: none;
}

.form-notice.show {
    display: block;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c2c2c;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
}

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

.form-submit {
    width: 100%;
    padding: 16px 24px;
    background: #d64545;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.form-submit:hover {
    background: #b83737;
}

.form-submit:disabled {
    background: #cccccc;
    cursor: not-allowed;
}

.disclaimer-section {
    padding: 60px 10%;
    background: #f9f9f9;
}

.disclaimer-text {
    font-size: 14px;
    color: #6a6a6a;
    line-height: 1.7;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.footer-asymmetric {
    background: #1a1a1a;
    color: #ffffff;
    padding: 70px 8% 40px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #d64545;
}

.footer-brand p {
    max-width: 350px;
    color: #b0b0b0;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #3a3a3a;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    color: #808080;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #ffffff;
    padding: 25px 30px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    display: none;
}

.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: 15px;
}

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.cookie-btn.accept {
    background: #4caf50;
    color: #ffffff;
}

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

.cookie-btn.reject {
    background: #ffffff;
    color: #2c2c2c;
}

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

.cookie-link {
    color: #b0b0b0;
    text-decoration: underline;
    font-size: 14px;
    transition: color 0.3s;
}

.cookie-link:hover {
    color: #ffffff;
}

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

.thanks-content {
    max-width: 600px;
    text-align: center;
    background: #ffffff;
    padding: 60px 50px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #4caf50;
}

.thanks-content p {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 15px;
}

.thanks-content .service-selected {
    font-weight: 700;
    color: #d64545;
}

.thanks-content a {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background: #2c2c2c;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.thanks-content a:hover {
    background: #d64545;
}

@media (max-width: 1024px) {
    .nav-floating {
        position: static;
        margin: 20px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .nav-links {
        flex-direction: row;
    }

    .hero-content-offset {
        position: static;
        max-width: 100%;
        margin: 40px 5%;
    }

    .hero-visual-block {
        position: static;
        width: 100%;
        height: 400px;
    }

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

    .split-left,
    .split-right {
        width: 100%;
    }

    .why-choose-split {
        flex-direction: column;
    }

    .card-position-1,
    .card-position-2,
    .card-position-3,
    .card-position-4,
    .card-position-5,
    .card-position-6 {
        width: 100%;
        margin-left: 0;
        margin-top: 0;
    }

    .form-container-offset {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-main {
        flex-direction: column;
        gap: 30px;
    }

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .intro-text-narrow h2 {
        font-size: 28px;
    }

    .section-header-left h2 {
        font-size: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}