body {
    font-family: 'Poppins', sans-serif !important;
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
}

.header {
    width: 100%;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: fixed;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

.logo {
    color: #08406a;
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
}

.nav {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav a {
    color: #333333;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
    font-weight: 500;
}

.nav a:hover {
    color: #08406a;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #08406a;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
}

.header-phone:hover {
    color: var(--accent-color) !important;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #333333;
    font-size: 24px;
    cursor: pointer;
}

.hero {
    margin-top: 70px;
    min-height: 500px;
    background-color: #08406a;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    color: white;
}

.hero-title {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
}

.hero-features {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.hero-feature {
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-feature i {
    color: #4dc247;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center; /* центрируем кнопки */
}

.btn {
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    display: inline-block;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-weight: 500;
}

.btn-primary {
    background: #4dc247;
    color: white;
}

.btn-primary:hover {
    background: #3da137;
}

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

.btn-secondary:hover {
    background: white;
    color: #08406a;
}

.section {
    padding: 80px 0;
}

.section-light {
    background-color: #f8f8f8;
}

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

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

.section-title {
    font-size: 36px;
    font-weight: 600;
    color: #08406a;
    margin-bottom: 15px;
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    text-align: center;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 40px 25px;
    transition: all 0.3s;
}

.feature-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.feature-icon {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #08406a;
    margin-bottom: 25px;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.feature-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.advantages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    text-align: center;
}

.advantage-number {
    font-size: 48px;
    font-weight: 700;
    color: #08406a;
    margin-bottom: 10px;
}

.advantage-title {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.advantage-text {
    font-size: 16px;
    color: #666;
}

.process {
    background-color: #ffffff;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

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

.process-step-number {
    width: 70px;
    height: 70px;
    background: #08406a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 25px;
}

.process-step-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.process-step-text {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.pricing {
    background-color: #f8f8f8;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.pricing-card.featured {
    border: 2px solid #08406a;
}

.pricing-card.featured::before {
    content: 'Популярно';
    position: absolute;
    top: 0;
    right: 20px;
    background: #08406a;
    color: white;
    padding: 5px 20px;
    font-size: 14px;
    border-radius: 0 0 5px 5px;
}

.pricing-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.pricing-price {
    font-size: 36px;
    font-weight: 700;
    color: #08406a;
    margin-bottom: 25px;
}

.pricing-price span {
    font-size: 16px;
    font-weight: 400;
    color: #666;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 10px 0;
    font-size: 16px;
    color: #666;
}

.pricing-features i {
    color: #4dc247;
    margin-right: 10px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: #08406a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 18px;
}

.testimonial-name {
    font-weight: 600;
    font-size: 16px;
    color: #333;
}

.testimonial-role {
    font-size: 14px;
    color: #666;
}

.cta {
    background: #08406a;
    color: white;
    text-align: center;
    padding: 60px 0;
}

.cta-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 15px;
}

.cta-text {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-section p {
    line-height: 1.6;
    color: #cccccc;
    font-size: 16px;
}

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    display: block;
    padding: 5px 0;
    font-size: 16px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #4dc247;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #999;
    font-size: 14px;
}

.floating-buttons {
    position: fixed;
    bottom: 20px;
    display: none;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: all 0.3s;
}

.floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.floating-btn.phone {
    background: #4dc247;
    position: fixed;
    left: 20px;
    bottom: 20px;
}

.floating-btn.whatsapp {
    background: #25D366;
    position: fixed;
    right: 20px;
    bottom: 20px;
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .header-phone {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        margin-top: 60px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .btn {
        padding: 12px 30px;
        font-size: 15px;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .features-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .advantages {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .floating-buttons {
        display: block;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .cta-text {
        font-size: 18px;
    }
}

/* === Uzbekistan Theme Palette Overrides === */
:root {
    --primary-color: #0075C9;
    --accent-color: #F6B40E;
    --accent-color-dark: #DFA200;
}

/* Primary brand color */
.logo,
.nav a:hover,
.header-phone,
.header-phone:hover,
.section-title,
.feature-icon,
.advantage-number,
.testimonial-avatar {
    color: var(--primary-color) !important;
}

.hero,
.process-step-number,
.pricing-card.featured,
.pricing-card.featured::before,
.testimonial-avatar,
.cta {
    background-color: var(--primary-color) !important;
}

/* Accent color */
.btn-primary,
.floating-btn.phone {
    background: var(--accent-color) !important;
}

.btn-primary:hover {
    background: var(--accent-color-dark) !important;
}

.hero-feature i,
.footer-section a:hover {
    color: var(--accent-color) !important;
}

/* Featured pricing card contrast fix */
.pricing-card.featured,
.pricing-card.featured .pricing-title,
.pricing-card.featured .pricing-price,
.pricing-card.featured .pricing-price span,
.pricing-card.featured .pricing-features li,
.pricing-card.featured .pricing-features li i {
    color: #ffffff !important;
}