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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a202c;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

.cookie-content a {
    color: #63b3ed;
    text-decoration: underline;
}

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

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

.btn-accept {
    background: #48bb78;
    color: #fff;
}

.btn-accept:hover {
    background: #38a169;
}

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

.btn-reject:hover {
    background: #2d3748;
}

.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2b6cb0;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2d3748;
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #2d3748;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #2b6cb0;
}

.hero-section {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1545158535-c3f7168c28b6?w=1600');
    background-size: cover;
    background-position: center;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(43, 108, 176, 0.88), rgba(26, 32, 44, 0.82));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 40px 20px;
}

.hero-content h1 {
    font-size: 56px;
    margin-bottom: 24px;
    line-height: 1.2;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 400;
}

.cta-primary {
    display: inline-block;
    padding: 18px 48px;
    background: #f56565;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(245, 101, 101, 0.4);
}

.cta-primary:hover {
    background: #e53e3e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 101, 101, 0.5);
}

.stats-cards {
    background: #f7fafc;
    padding: 80px 20px;
}

.card-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-card {
    background: #fff;
    padding: 36px 28px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: #2b6cb0;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 15px;
    color: #718096;
    font-weight: 500;
}

.problem-section {
    padding: 100px 20px;
    background: #fff;
}

.problem-section h2 {
    font-size: 38px;
    margin-bottom: 28px;
    line-height: 1.3;
    color: #1a202c;
}

.problem-section p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #4a5568;
    line-height: 1.8;
}

.highlight-box {
    background: #fef5e7;
    border-left: 5px solid #f59e0b;
    padding: 28px 32px;
    margin: 36px 0;
    border-radius: 8px;
}

.highlight-box p {
    margin: 0;
    font-size: 19px;
    color: #744210;
}

.how-it-works {
    padding: 100px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.how-it-works h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

.process-cards {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
}

.process-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 40px 28px;
    border-radius: 16px;
    flex: 1;
    min-width: 240px;
    max-width: 280px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.process-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    color: #667eea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    margin: 0 auto 24px;
}

.process-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

.process-card p {
    font-size: 16px;
    opacity: 0.92;
    line-height: 1.6;
}

.cities-showcase {
    padding: 100px 20px;
    background: #fff;
}

.cities-showcase h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a202c;
}

.cities-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 48px;
}

.city-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.city-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.city-info {
    padding: 24px;
}

.city-info h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: #1a202c;
}

.city-info p {
    color: #718096;
    margin-bottom: 12px;
}

.price-badge {
    display: inline-block;
    background: #48bb78;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.text-center {
    text-align: center;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: #2b6cb0;
    text-decoration: none;
    border: 2px solid #2b6cb0;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #2b6cb0;
    color: #fff;
}

.testimonial-section {
    padding: 80px 20px;
    background: #f7fafc;
}

.testimonial-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 28px;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.7;
}

.testimonial-author {
    color: #2d3748;
    font-weight: 600;
}

.services-preview {
    padding: 100px 20px;
    background: #fff;
}

.services-preview h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a202c;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #718096;
    margin-bottom: 60px;
}

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

.service-card {
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 36px 28px;
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    position: relative;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #2b6cb0;
    box-shadow: 0 8px 28px rgba(43, 108, 176, 0.15);
    transform: translateY(-6px);
}

.service-card.featured {
    border-color: #f59e0b;
    background: linear-gradient(135deg, #fef3c7 0%, #fff 50%);
}

.badge-popular {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #f59e0b;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

.service-header {
    margin-bottom: 28px;
}

.service-header h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a202c;
}

.service-price {
    font-size: 36px;
    font-weight: 800;
    color: #2b6cb0;
}

.service-price span {
    font-size: 16px;
    font-weight: 500;
    color: #718096;
}

.service-features {
    list-style: none;
    margin-bottom: 28px;
}

.service-features li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: #4a5568;
    font-size: 15px;
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: 700;
    font-size: 18px;
}

.btn-service {
    width: 100%;
    padding: 16px;
    background: #2b6cb0;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: #2c5282;
    transform: translateY(-2px);
}

.features-detailed {
    padding: 100px 20px;
    background: #f7fafc;
}

.features-detailed h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a202c;
}

.features-layout {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.feature-block {
    flex: 1;
    min-width: 260px;
    background: #fff;
    padding: 36px;
    border-radius: 12px;
    border-left: 5px solid #2b6cb0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.feature-block h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a202c;
}

.feature-block p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.cta-urgent {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f56565 0%, #c53030 100%);
    color: #fff;
    text-align: center;
}

.cta-urgent h2 {
    font-size: 42px;
    margin-bottom: 24px;
}

.cta-urgent p {
    font-size: 20px;
    margin-bottom: 36px;
}

.cta-large {
    display: inline-block;
    padding: 20px 56px;
    background: #fff;
    color: #c53030;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 800;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
}

.cta-note {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.9;
}

.order-section {
    padding: 100px 20px;
    background: #fff;
}

.order-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a202c;
}

.order-form {
    background: #f7fafc;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

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

.checkbox-group label {
    margin: 0;
    font-weight: 400;
    font-size: 14px;
}

.checkbox-group a {
    color: #2b6cb0;
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: #48bb78;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #38a169;
    transform: translateY(-2px);
}

.faq-section {
    padding: 100px 20px;
    background: #f7fafc;
}

.faq-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a202c;
}

.faq-item {
    background: #fff;
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a202c;
}

.faq-item p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.footer {
    background: #1a202c;
    color: #cbd5e0;
    padding: 60px 20px 20px;
}

.footer-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

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

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

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

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

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

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

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

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
}

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

.sticky-btn {
    display: block;
    padding: 16px 32px;
    background: #f56565;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(245, 101, 101, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #e53e3e;
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(245, 101, 101, 0.5);
}

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

    .nav-menu {
        position: absolute;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: #fff;
        width: 100%;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        padding: 20px;
        gap: 16px;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

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

    .hero-subtitle {
        font-size: 18px;
    }

    .problem-section h2,
    .cities-showcase h2,
    .services-preview h2,
    .features-detailed h2,
    .cta-urgent h2,
    .order-section h2,
    .faq-section h2 {
        font-size: 32px;
    }

    .how-it-works h2 {
        font-size: 32px;
    }

    .order-form {
        padding: 32px 24px;
    }

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

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

    .sticky-btn {
        padding: 14px 24px;
        font-size: 14px;
    }
}