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

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

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.brand-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e74c3c;
    text-decoration: none;
}

.nav-right {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-right a {
    text-decoration: none;
    color: #34495e;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-right a:hover {
    color: #e74c3c;
}

.nav-cta {
    background: #e74c3c;
    color: #fff !important;
    padding: 0.6rem 1.5rem;
    border-radius: 5px;
}

.nav-cta:hover {
    background: #c0392b;
    color: #fff !important;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 4rem 5%;
}

.hero-text-block h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #7f8c8d;
    margin-bottom: 2.5rem;
    max-width: 520px;
}

.btn-primary-large {
    display: inline-block;
    background: #e74c3c;
    color: #fff;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary-large:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(231,76,60,0.3);
}

.hero-visual {
    flex: 1;
    height: 85vh;
    overflow: hidden;
}

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

.trust-indicators {
    display: flex;
    justify-content: space-around;
    padding: 3rem 5%;
    background: #ecf0f1;
}

.indicator-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.indicator-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e74c3c;
    display: block;
}

.indicator-label {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-top: 0.5rem;
}

.why-choose-asymmetric {
    padding: 5rem 5%;
    background: #fff;
}

.why-text-offset {
    max-width: 600px;
    margin-bottom: 3rem;
}

.why-text-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    color: #2c3e50;
}

.why-text-offset p {
    font-size: 1.15rem;
    color: #7f8c8d;
}

.why-features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.feature-card {
    flex: 1 1 calc(50% - 1rem);
    background: #f8f9fa;
    padding: 2rem;
    border-left: 4px solid #e74c3c;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.feature-card p {
    color: #7f8c8d;
    line-height: 1.7;
}

.services-showcase {
    padding: 5rem 5%;
    background: #fafafa;
}

.services-intro-split {
    display: flex;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: center;
}

.services-intro-left {
    flex: 1;
}

.services-intro-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    color: #2c3e50;
}

.services-intro-left p {
    font-size: 1.1rem;
    color: #7f8c8d;
}

.services-intro-right {
    flex: 1;
}

.services-intro-right img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.services-pricing-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

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

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.service-info {
    padding: 1.8rem;
}

.service-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.service-info p {
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-price {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #e74c3c;
}

.price-note {
    font-size: 0.85rem;
    color: #95a5a6;
}

.btn-service-select {
    width: 100%;
    background: #34495e;
    color: #fff;
    border: none;
    padding: 0.9rem;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-service-select:hover {
    background: #2c3e50;
}

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

.testimonials-flow {
    padding: 5rem 5%;
    background: #2c3e50;
    color: #fff;
}

.testimonials-flow h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.testimonial-grid-offset {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial-box {
    flex: 1 1 calc(33.333% - 2rem);
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.9rem;
    color: #bdc3c7;
}

.process-split-visual {
    display: flex;
    min-height: 90vh;
}

.process-visual-side {
    flex: 1;
    overflow: hidden;
}

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

.process-content-side {
    flex: 1;
    padding: 4rem 5%;
    background: #fff;
}

.process-content-side h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: #2c3e50;
}

.process-steps {
    margin-bottom: 3rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #e74c3c;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.step-text p {
    color: #7f8c8d;
}

.main-form-container {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
}

.main-form-container h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #34495e;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

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

.btn-submit-main {
    background: #e74c3c;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-submit-main:hover {
    background: #c0392b;
}

.cta-final-split {
    display: flex;
    align-items: center;
    background: #ecf0f1;
}

.cta-text-block {
    flex: 1;
    padding: 4rem 5%;
}

.cta-text-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    color: #2c3e50;
}

.cta-text-block p {
    font-size: 1.15rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
}

.btn-secondary-large {
    display: inline-block;
    background: #34495e;
    color: #fff;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary-large:hover {
    background: #2c3e50;
}

.cta-visual-block {
    flex: 1;
    height: 400px;
    overflow: hidden;
}

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

.main-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 5% 1.5rem;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-col p,
.footer-col a {
    color: #bdc3c7;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-col a:hover {
    color: #e74c3c;
}

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

.footer-bottom p {
    color: #95a5a6;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #34495e;
    color: #fff;
    padding: 1.5rem 5%;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 10000;
    display: none;
}

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

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    flex: 1;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

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

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

.btn-cookie-reject {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

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

.cookie-link {
    color: #fff;
    text-decoration: underline;
    font-size: 0.9rem;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 5%;
    background: #ecf0f1;
}

.thanks-box {
    background: #fff;
    padding: 4rem;
    border-radius: 8px;
    text-align: center;
    max-width: 600px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.thanks-box h1 {
    font-size: 2.5rem;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.thanks-box p {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.thanks-service {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 2rem;
    font-weight: 600;
    color: #2c3e50;
}

@media (max-width: 1024px) {
    .hero-split,
    .services-intro-split,
    .cta-final-split,
    .process-split-visual {
        flex-direction: column;
    }

    .hero-visual,
    .process-visual-side {
        height: 400px;
    }

    .service-card {
        flex: 1 1 calc(50% - 2rem);
    }

    .testimonial-box {
        flex: 1 1 100%;
    }

    .footer-columns {
        flex-wrap: wrap;
    }

    .footer-col {
        flex: 1 1 calc(50% - 1.5rem);
    }
}

@media (max-width: 768px) {
    .nav-split {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-right {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-text-block h1 {
        font-size: 2.5rem;
    }

    .trust-indicators {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .indicator-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .feature-card,
    .service-card {
        flex: 1 1 100%;
    }

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

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

    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
    }

    .footer-col {
        flex: 1 1 100%;
    }
}