* {
    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: #fff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a2e;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

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

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 5%;
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.nav-right {
    display: flex;
    gap: 35px;
}

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

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

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-content {
    max-width: 550px;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #fff;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 35px;
    color: rgba(255,255,255,0.9);
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

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

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: #fff;
    color: #667eea;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s, color 0.3s;
    cursor: pointer;
}

.btn-secondary:hover {
    background: #fff;
    color: #1a1a2e;
}

.intro-asymmetric {
    display: flex;
    padding: 100px 5%;
    gap: 80px;
    background: #f8f9fa;
    align-items: center;
}

.intro-block {
    flex: 1.5;
}

.intro-block h2 {
    font-size: 36px;
    margin-bottom: 25px;
    line-height: 1.3;
}

.intro-block p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.intro-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: #667eea;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: #666;
    margin-top: 10px;
}

.problem-section {
    display: flex;
    min-height: 500px;
}

.problem-left {
    flex: 1;
    overflow: hidden;
}

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

.problem-right {
    flex: 1;
    padding: 80px 60px;
    background: #2c3e50;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.problem-right h2 {
    font-size: 38px;
    margin-bottom: 30px;
}

.problem-right p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
}

.link-cta {
    color: #3498db;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
    border-bottom: 2px solid #3498db;
    transition: border-color 0.3s;
}

.link-cta:hover {
    border-color: transparent;
}

.insight-centered {
    padding: 120px 5%;
    text-align: center;
    background: #fff;
}

.insight-content {
    max-width: 800px;
    margin: 0 auto;
}

.insight-content h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.insight-content p {
    font-size: 20px;
    color: #555;
    line-height: 1.8;
}

.services-grid {
    padding: 100px 5%;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 44px;
    margin-bottom: 15px;
}

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

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    flex: 0 0 calc(33.333% - 20px);
    min-width: 280px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    position: relative;
}

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

.service-card.featured {
    border: 3px solid #667eea;
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #667eea;
    color: #fff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-card p {
    color: #666;
    margin-bottom: 25px;
    flex-grow: 1;
    line-height: 1.6;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 20px;
}

.btn-select-service {
    width: 100%;
    padding: 14px;
    background: #667eea;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select-service:hover {
    background: #5568d3;
}

.testimonial-block {
    padding: 80px 5%;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.testimonial-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.testimonial-content blockquote {
    font-size: 28px;
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-content cite {
    font-size: 16px;
    font-style: normal;
    opacity: 0.9;
}

.cta-split {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
    align-items: center;
    background: #fff;
}

.cta-left {
    flex: 1;
}

.cta-left h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.cta-left p {
    font-size: 18px;
    color: #666;
}

.cta-right {
    flex: 1;
    text-align: center;
}

.btn-primary-large {
    display: inline-block;
    padding: 20px 50px;
    background: #667eea;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 20px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
}

.form-section {
    padding: 100px 5%;
    background: #f8f9fa;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.form-container h2 {
    font-size: 34px;
    margin-bottom: 15px;
    text-align: center;
}

.form-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 16px;
}

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

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

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

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

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: normal;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-group a {
    color: #667eea;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #667eea;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #5568d3;
}

.trust-indicators {
    display: flex;
    padding: 60px 5%;
    gap: 50px;
    background: #fff;
    justify-content: center;
}

.trust-item {
    text-align: center;
    flex: 0 0 250px;
}

.trust-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.trust-item p {
    color: #666;
}

.footer {
    background: #1a1a2e;
    color: #fff;
    padding: 60px 5% 20px;
}

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

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

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

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

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

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

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

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.sticky-btn {
    display: inline-block;
    padding: 15px 30px;
    background: #f5576c;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(245, 87, 108, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.sticky-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(245, 87, 108, 0.6);
}

@media (max-width: 768px) {
    .hero-split,
    .problem-section {
        flex-direction: column;
    }

    .hero-left,
    .hero-right,
    .problem-left,
    .problem-right {
        flex: 1 0 100%;
    }

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

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

    .cta-split {
        flex-direction: column;
        text-align: center;
    }

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

    .nav-right {
        gap: 20px;
        font-size: 14px;
    }

    .trust-indicators {
        flex-direction: column;
    }

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

    .sticky-cta {
        bottom: 15px;
        right: 15px;
    }
}