:root {
    --primary: #3B82F6;
    --secondary: #06B6D4;
    --accent: #10B981;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* Navbar Styles */
.navbar {
    padding: 1rem 0;
    background: white !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-link {
    font-weight: 500;
    color: #6b7280 !important;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover {
    color: var(--primary) !important;
}

.nav-link.active {
    color: var(--primary) !important;
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    padding: 0.7rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(59,130,246,0.3);
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 0.7rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: white;
}

.glass-box {
    background: rgba(255, 255, 255, 0.75);   /* полупрозрачный белый */
    backdrop-filter: blur(12px);             /* размытие фона */
    -webkit-backdrop-filter: blur(12px);     /* Safari */
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.6);
}
/*
.glass-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    border: 1px solid rgba(255,255,255,0.3);
}
/* Hero Section */
.hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #EFF6FF 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url(images/slider-dry-4.jpg);
    background-size: cover;
    background-position: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59,130,246,0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -100px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    -- border-radius: 48%;
    width: 800px;
    height: 800px;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.floating-badge {
    position: absolute;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.badge-1 {
    top: 50px;
    right: 50px;
}

.badge-2 {
    bottom: 100px;
    left: 0;
}

/* Partners Section */
.partners {
    padding: 3rem 0;
    background: #f8f9fa;
}

.partner-logo {
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s;
    height: 40px;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Feature Card */
.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    background: white;
    transition: all 0.3s;
    border: 1px solid #f0f0f0;
    height: 100%;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

/* Service Card */
.service-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s;
    background: white;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-body {
    padding: 1.5rem;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.service-body ul {
    list-style: none;
    padding-left: 0;
}

.service-body ul li::before {
    content: '✓';
    color: var(--accent);
    font-weight: bold;
    margin-right: 8px;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.price .currency,
.total-price .currency {
    color: #9CA3AF;
    font-size: 1rem;
    font-weight: 400;
    margin-left: 2px;
}

/* Process Section */
.process-step {
    text-align: center;
    position: relative;
}

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

/* Promo Section */
.promo-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #F0F9FF 0%, #fff 100%);
    position: relative;
}

.promo-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.circle-1 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(59,130,246,0.2), transparent);
    top: 50px;
    left: 10%;
}

.circle-2 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(16,185,129,0.2), transparent);
    bottom: 100px;
    right: 15%;
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Guide Card */
.guide-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

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

.guide-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.newsletter-input {
    border-radius: 50px;
    padding: 1rem 1.5rem;
    border: none;
}

.newsletter-btn {
    background: white;
    color: var(--primary);
    border-radius: 50px;
    padding: 0.8rem 2rem;
    font-weight: 600;
    border: none;
    transition: transform 0.3s;
}

.newsletter-btn:hover {
    transform: scale(1.05);
}

/* Footer */
footer {
    padding: 50px 0 20px;
    background: #1a1a1a;
    color: white;
}

footer h4, footer h5 {
    color: white;
}

footer p {
    color: #d1d5db;
}

footer .text-muted {
    color: #d1d5db !important;
}

footer ul li {
    color: #d1d5db;
}

.footer-link {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: white;
}

/* Breadcrumb */
.breadcrumb-section {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, #EFF6FF 0%, #fff 100%);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-image img {
        width: 300px;
        height: 300px;
    }
    
    .floating-badge {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .badge-1 {
        top: 20px;
        right: 20px;
    }
    
    .badge-2 {
        bottom: 50px;
        left: 0;
    }
}

/* Pricing Table Section */
#pricing {
    background: linear-gradient(135deg, #F8F9FF 0%, #fff 100%);
}

.pricing-table-wrapper {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
}

.pricing-table thead {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.pricing-table thead th {
    padding: 1.5rem 1rem;
    text-align: center;
    font-weight: 600;
    border: none;
}

.pricing-table thead th:first-child {
    text-align: left;
    padding-left: 1.5rem;
}

.pricing-table tbody td {
    padding: 1.5rem 1rem;
    border-bottom: 1px solid #f0f0f0;
    text-align: center;
}

.pricing-table tbody td:first-child {
    text-align: left;
    padding-left: 1.5rem;
}

.pricing-table tbody tr:last-child td {
    border-bottom: none;
}

.service-name {
    color: #1a1a1a;
    font-weight: 500;
}

.service-name .small {
    display: block;
    margin-top: 0.3rem;
    font-weight: 400;
}

.pricing-table tbody tr:hover {
    background: #f8f9ff;
}

.pricing-table .price {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.25rem;
}

.pricing-table .total-row {
    background: linear-gradient(135deg, rgba(59,130,246,0.05), rgba(6,182,212,0.05));
    font-weight: 700;
}

.pricing-table .total-row td {
    padding: 1.75rem 1rem;
    border-top: 2px solid var(--primary);
}

.pricing-table .total-row .total-price {
    color: var(--primary);
    font-size: 1.4rem;
    display: inline-block;
}

/* Responsive Table */
@media (max-width: 992px) {
    .pricing-table {
        font-size: 0.9rem;
    }
    
    .pricing-table thead th,
    .pricing-table tbody td {
        padding: 1rem 0.75rem;
    }
    
    .pricing-table thead th:first-child,
    .pricing-table tbody td:first-child {
        padding-left: 1rem;
    }
}

/* Mobile Pricing Cards */
.pricing-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.15);
    border-color: var(--primary);
}

.card-weight {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(6, 182, 212, 0.1));
    padding: 0.75rem 1rem;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 1.25rem;
}

.card-services {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.service-label {
    display: flex;
    align-items: center;
    color: #4b5563;
    font-weight: 500;
    font-size: 0.95rem;
}

.service-label i {
    font-size: 1.1rem;
}

.service-price {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
    white-space: nowrap;
}

.service-price .currency {
    color: #9CA3AF;
    font-size: 0.73rem;
    font-weight: 400;
    margin-left: 2px;
}

.card-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 1rem;
}

.card-total span:first-child {
    color: #6b7280;
}

.total-amount {
    color: var(--primary);
    font-size: 1.3rem;
}

.total-amount .currency {
    color: #9CA3AF;
    font-size: 0.87rem;
    font-weight: 400;
    margin-left: 2px;
}

@media (max-width: 768px) {
    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .pricing-table {
        font-size: 0.85rem;
    }
    
    .pricing-table thead th,
    .pricing-table tbody td {
        padding: 0.75rem 0.5rem;
    }
    
    .pricing-table thead th:first-child,
    .pricing-table tbody td:first-child {
        padding-left: 0.75rem;
    }
    
    .service-name .small {
        font-size: 0.75rem;
    }
    
    .pricing-table .price {
        font-size: 1rem;
    }
    
    .pricing-table .total-price {
        font-size: 1.1rem;
    }
}