/* =============================================
   VARIABLES & RESET
   ============================================= */

:root {
    --primary: #2196F3;
    --primary-dark: #1565C0;
    --primary-light: #64B5F6;
    --accent: #FF9800;
    --accent-dark: #E65100;
    --dark: #0F1923;
    --dark-secondary: #1A2634;
    --dark-card: #1E2D3D;
    --light: #EEF1F6;
    --light-secondary: #E4E8F0;
    --border: #D8E0EA;
    --text-primary: #1A2634;
    --text-secondary: #5A7184;
    --success: #10B981;
    --danger: #EF4444;
    --purple: #8B5CF6;
    --shadow-sm: 0 2px 12px rgba(33, 150, 243, 0.08);
    --shadow-md: 0 8px 32px rgba(33, 150, 243, 0.15);
    --shadow-lg: 0 20px 60px rgba(33, 150, 243, 0.2);
    --shadow-dark: 0 18px 60px rgba(0, 0, 0, 0.35);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font);
    color: var(--text-primary);
    background: #F7F8FA;
    overflow-x: hidden;
    line-height: 1.6;
}

section {
    scroll-margin-top: 72px;
}

a,
button {
    transition: var(--transition);
}

button {
    font-family: inherit;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-label {
    display: inline-block;
    padding: 6px 14px;
    margin-bottom: 12px;
    border-radius: 50px;
    background: rgba(33, 150, 243, 0.1);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.section-label--light {
    background: rgba(255, 152, 0, 0.15);
    color: var(--accent);
}

.section-title {
    margin-bottom: 16px;
    color: var(--text-primary);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
}

.section-title--light {
    color: #ffffff;
}

.section-subtitle {
    max-width: 560px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
}

.section-subtitle--light {
    color: rgba(255, 255, 255, 0.75);
}

.text-gradient {
    color: var(--primary);
}

/* =============================================
   SCROLLBAR
   ============================================= */

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: var(--primary-dark);
    }

/* =============================================
   HEADER
   ============================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition);
}

    .site-header.scrolled {
        border-bottom-color: rgba(226, 234, 240, 0.75);
        box-shadow: 0 4px 24px rgba(33, 150, 243, 0.1);
    }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 0;
}

.site-logo,
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #ffffff;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
}

.site-logo:hover .logo-icon,
.footer-logo:hover .logo-icon {
    transform: rotate(-5deg) scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-title {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.logo-subtitle {
    color: var(--text-secondary);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.04em;
}

.header-contacts {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    text-decoration: none;
}

    .header-phone:hover {
        background: var(--light);
    }

.phone-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(33, 150, 243, 0.1);
    color: var(--primary);
    font-size: 0.75rem;
}

.phone-number {
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 700;
}

.header-instagram {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF);
    color: #ffffff;
    font-size: 0.85rem;
    text-decoration: none;
}

    .header-instagram:hover {
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(221, 42, 123, 0.35);
    }

/* =============================================
   BUTTONS
   ============================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(33, 150, 243, 0.35);
}

    .btn-primary-custom:hover {
        background: linear-gradient(135deg, #1E88E5, var(--primary-dark));
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(33, 150, 243, 0.5);
    }

    .btn-primary-custom:active {
        transform: translateY(0);
    }

.btn-accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(255, 152, 0, 0.35);
}

    .btn-accent:hover {
        background: linear-gradient(135deg, #FFA726, var(--accent-dark));
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(255, 152, 0, 0.5);
    }

.btn-outline-custom {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
}

    .btn-outline-custom:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: #ffffff;
        color: #ffffff;
        transform: translateY(-2px);
    }

.btn-lg-custom {
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-size: 1rem;
}

.btn-header {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.bg-accent-gradient {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}

/* =============================================
   HERO SECTION
   ============================================= */

.hero-section {
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 72px 0;
    background: radial-gradient(circle at 78% 22%, rgba(33, 150, 243, 0.16), transparent 32%), radial-gradient(circle at 14% 78%, rgba(255, 152, 0, 0.08), transparent 28%), var(--dark);
}

    .hero-section .container {
        position: relative;
        z-index: 1;
    }

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

    .hero-bg-pattern::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(33, 150, 243, 0.15) 0%, transparent 70%);
    }

    .hero-bg-pattern::after {
        content: '';
        position: absolute;
        bottom: -50px;
        left: 10%;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(255, 152, 0, 0.08) 0%, transparent 70%);
    }

.hero-geo-1,
.hero-geo-2,
.hero-geo-3,
.hero-geo-4 {
    position: absolute;
    pointer-events: none;
}

.hero-geo-1 {
    right: 10%;
    top: 20%;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(33, 150, 243, 0.1);
    border-radius: 50%;
    animation: rotateSlow 30s linear infinite;
}

.hero-geo-2 {
    right: 18%;
    top: 28%;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(255, 152, 0, 0.15);
    border-radius: 50%;
    animation: rotateSlow 20s linear infinite reverse;
}

.hero-geo-3 {
    left: 5%;
    top: 15%;
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    background: rgba(33, 150, 243, 0.08);
    animation: floatShape 6s ease-in-out infinite;
}

.hero-geo-4 {
    left: 8%;
    bottom: 25%;
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    background: rgba(255, 152, 0, 0.1);
    animation: floatShape 8s ease-in-out infinite 2s;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 152, 0, 0.3);
    border-radius: 50px;
    background: rgba(255, 152, 0, 0.15);
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulseDot 2s ease-in-out infinite;
}

.hero-title {
    max-width: 620px;
    margin-bottom: 20px;
    color: #ffffff;
    font-size: clamp(2.2rem, 5.5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

    .hero-title .highlight {
        color: var(--accent);
        text-shadow: 0 0 28px rgba(255, 152, 0, 0.28);
    }

.hero-subtitle {
    max-width: 540px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.1rem;
    line-height: 1.7;
}

.hero-checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
    list-style: none;
}

    .hero-checklist li {
        display: flex;
        align-items: center;
        gap: 12px;
        color: rgba(255, 255, 255, 0.85);
        font-size: 0.95rem;
    }

.check-icon {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--success), #059669);
    color: #ffffff;
    font-size: 0.65rem;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    max-width: 620px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat-number {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
}

    .hero-stat-number span {
        color: var(--accent);
    }

.hero-stat-label {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
}

/* Hero card */

.hero-card-widget {
    position: relative;
    z-index: 2;
    padding: 34px 16px 34px 52px;
    overflow: visible;
}

.hero-card {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 520px;
    margin-left: auto;
    padding: 32px;
    border: 1px solid transparent;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)) padding-box, linear-gradient(135deg, rgba(255, 255, 255, 0.38), rgba(33, 150, 243, 0.22), rgba(255, 255, 255, 0.03), rgba(255, 152, 0, 0.22)) border-box;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-card-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
}

    .hero-card-title i {
        color: var(--accent);
    }

.hero-card-services {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.hero-service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04)) padding-box, linear-gradient(135deg, rgba(255, 255, 255, 0.20), rgba(33, 150, 243, 0.10), rgba(255, 255, 255, 0.02)) border-box;
}

    .hero-service-item:hover {
        background: linear-gradient(135deg, rgba(33, 150, 243, 0.18), rgba(33, 150, 243, 0.08)) padding-box, linear-gradient(135deg, rgba(100, 181, 246, 0.35), rgba(255, 255, 255, 0.03)) border-box;
    }

.hero-service-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 8px;
    font-size: 0.85rem;
}

.hero-service-name {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    font-weight: 500;
}

.hero-card-cta {
    width: 100%;
}

/* Floating badges */

.hero-floating-badge {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 230px;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-dark);
    white-space: nowrap;
    animation: floatBadge 4s ease-in-out infinite;
}

.hero-floating-badge--1 {
    top: 4px;
    left: 10px;
}

.hero-floating-badge--2 {
    right: 18px;
    bottom: 6px;
    animation-delay: 2s;
}

.floating-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 10px;
    font-size: 1rem;
}

.floating-text {
    min-width: 0;
    overflow: hidden;
}

    .floating-text strong,
    .floating-text span {
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .floating-text strong {
        color: var(--text-primary);
        font-size: 0.85rem;
        font-weight: 700;
        line-height: 1.2;
    }

    .floating-text span {
        color: var(--text-secondary);
        font-size: 0.7rem;
    }

/* =============================================
   ADVANTAGES SECTION
   ============================================= */

.advantages-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background: radial-gradient(circle at 85% 20%, rgba(33, 150, 243, 0.08), transparent 32%), radial-gradient(circle at 15% 90%, rgba(255, 152, 0, 0.05), transparent 28%), var(--light);
}

    .advantages-section::before {
        content: '';
        position: absolute;
        right: -100px;
        bottom: -100px;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(33, 150, 243, 0.05) 0%, transparent 70%);
        pointer-events: none;
    }

.advantage-card {
    background: 
        linear-gradient(#F9FAFB, #F9FAFB) padding-box, 
        linear-gradient(135deg, 
            rgba(33, 150, 243, 0.35), 
            rgba(33, 150, 243, 0.08), 
            rgba(255, 255, 255, 0), 
            rgba(255, 152, 0, 0.24)) border-box;
}

    .advantage-card::before {
        content: '';
        position: absolute;
        left: 0;
        top: 18px;
        width: 4px;
        height: 0;
        border-radius: 0 6px 6px 0;
        background: linear-gradient(180deg, var(--primary), rgba(33, 150, 243, 0));
        transition: height 0.4s ease;
    }

    .advantage-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 24px 70px rgba(33, 150, 243, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    }

        .advantage-card:hover::before {
            height: calc(100% - 36px);
        }

.advantage-icon-wrap,
.contact-icon-wrap,
.feature-icon,
.table-service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-icon-wrap {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    border-radius: var(--radius-md);
    font-size: 1.4rem;
}

.advantage-card:hover .advantage-icon-wrap {
    transform: scale(1.1) rotate(-5deg);
}

.advantage-card h5 {
    margin-bottom: 8px;
    color: var(--text-primary);
    font-size: 1.05rem;
    font-weight: 700;
}

.advantage-card p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
}

.advantage-number {
    position: absolute;
    right: 20px;
    top: 16px;
    color: rgba(33, 150, 243, 0.06);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.05em;
    pointer-events: none;
    user-select: none;
}

/* =============================================
   SERVICES SECTION
   ============================================= */

.services-section {
    padding: 80px 0;
    background: radial-gradient(circle at 20% 10%, rgba(33, 150, 243, 0.04), transparent 30%), #F0F3F8;
}

.service-card {
    position: relative;
    height: 100%;
    overflow: hidden;
    padding: 28px 24px;
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    background: linear-gradient(var(--light), var(--light)) padding-box, linear-gradient(135deg, rgba(33, 150, 243, 0.30), rgba(33, 150, 243, 0.06), rgba(255, 255, 255, 0), rgba(255, 152, 0, 0.22)) border-box;
    box-shadow: 0 18px 50px rgba(15, 25, 35, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.75);
    cursor: pointer;
}

    .service-card::after {
        content: '';
        position: absolute;
        inset: 0;
        z-index: 0;
        border-radius: var(--radius-md);
        background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        opacity: 0;
        transition: opacity 0.35s ease;
    }

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-md);
    }

        .service-card:hover::after {
            opacity: 1;
        }

.service-card-content {
    position: relative;
    z-index: 1;
}

.service-icon-wrap {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: var(--radius-sm);
    background: #ffffff;
    color: var(--primary);
    font-size: 1.3rem;
    box-shadow: var(--shadow-sm);
}

.service-card:hover .service-icon-wrap {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    box-shadow: none;
}

.service-card h5 {
    margin-bottom: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 700;
}

.service-card p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.83rem;
    line-height: 1.6;
}

.service-card:hover h5 {
    color: #ffffff;
}

.service-card:hover p {
    color: rgba(255, 255, 255, 0.75);
}

.service-card-arrow {
    position: absolute;
    right: 20px;
    bottom: 20px;
    z-index: 1;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(33, 150, 243, 0.1);
    color: var(--primary);
    font-size: 0.75rem;
}

.service-card:hover .service-card-arrow {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: translate(3px, -3px);
}

/* =============================================
   HOW WE WORK SECTION
   ============================================= */

.how-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background: radial-gradient(circle at 20% 20%, rgba(33, 150, 243, 0.11), transparent 32%), radial-gradient(circle at 80% 80%, rgba(255, 152, 0, 0.06), transparent 28%), var(--dark);
}

    .how-section::before {
        content: '';
        position: absolute;
        left: -200px;
        top: -200px;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(33, 150, 243, 0.08) 0%, transparent 70%);
        pointer-events: none;
    }

.steps-row {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.step-item {
    flex: 0 0 auto;
    max-width: 200px;
    padding: 0 8px;
    text-align: center;
}

.step-connector {
    flex: 1;
    max-width: 60px;
    height: 2px;
    margin-top: 40px;
    background: linear-gradient(90deg, rgba(33, 150, 243, 0.4), rgba(33, 150, 243, 0.1));
}

.step-circle {
    position: relative;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 900;
}

    .step-circle::before {
        content: '';
        position: absolute;
        inset: -4px;
        border: 2px dashed rgba(33, 150, 243, 0.3);
        border-radius: 50%;
        animation: rotateSlow 10s linear infinite;
    }

    .step-circle:hover {
        transform: scale(1.1);
    }

.step-circle--1 {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 8px 24px rgba(33, 150, 243, 0.4);
}

.step-circle--2 {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    box-shadow: 0 8px 24px rgba(255, 152, 0, 0.4);
}

.step-circle--3 {
    background: linear-gradient(135deg, var(--success), #059669);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
}

.step-circle--4 {
    background: linear-gradient(135deg, var(--purple), #6D28D9);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
}

.step-item h5 {
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
}

.step-item p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    line-height: 1.6;
}

/* =============================================
   PRICES SECTION
   ============================================= */

.prices-section {
    padding: 80px 0;
    background: radial-gradient(circle at 85% 20%, rgba(33, 150, 243, 0.08), transparent 32%), radial-gradient(circle at 15% 90%, rgba(255, 152, 0, 0.05), transparent 28%), var(--light);
}

.price-table-wrap {
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: var(--radius-lg);
    background: linear-gradient(#ffffff, #ffffff) padding-box, linear-gradient(135deg, rgba(33, 150, 243, 0.35), rgba(33, 150, 243, 0.08), rgba(255, 255, 255, 0), rgba(255, 152, 0, 0.24)) border-box;
    box-shadow: 0 18px 60px rgba(33, 150, 243, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.price-table-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 32px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

    .price-table-header span {
        color: #ffffff;
        font-size: 0.875rem;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
    }

.custom-table {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
}

    .custom-table tbody tr {
        border-bottom: 1px solid var(--border);
    }

        .custom-table tbody tr:last-child {
            border-bottom: none;
        }

        .custom-table tbody tr:hover {
            background: rgba(33, 150, 243, 0.04);
        }

    .custom-table td {
        padding: 18px 32px;
        color: var(--text-primary);
        font-size: 0.9rem;
        vertical-align: middle;
    }

        .custom-table td:first-child {
            display: flex;
            align-items: center;
            gap: 12px;
        }

.table-service-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 8px;
    background: rgba(33, 150, 243, 0.1);
    color: var(--primary);
    font-size: 0.75rem;
}

.price-badge {
    display: inline-block;
    float: right;
    padding: 4px 12px;
    border-radius: 50px;
    background: rgba(33, 150, 243, 0.1);
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 700;
}

.price-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 12px 16px;
    border: 1px solid rgba(255, 152, 0, 0.2);
    border-radius: var(--radius-sm);
    background: rgba(255, 152, 0, 0.08);
    color: #795548;
    font-size: 0.85rem;
}

    .price-note i {
        flex-shrink: 0;
        color: var(--accent);
    }

/* =============================================
   ORDER FORM SECTION
   ============================================= */

.order-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background: radial-gradient(circle at 78% 22%, rgba(33, 150, 243, 0.13), transparent 32%), radial-gradient(circle at 14% 78%, rgba(255, 152, 0, 0.07), transparent 28%), var(--dark-secondary);
}

    .order-section::before,
    .order-section::after {
        content: '';
        position: absolute;
        border-radius: 50%;
        pointer-events: none;
    }

    .order-section::before {
        right: -100px;
        top: -100px;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(33, 150, 243, 0.1) 0%, transparent 70%);
    }

    .order-section::after {
        left: -50px;
        bottom: -50px;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(255, 152, 0, 0.06) 0%, transparent 70%);
    }

.order-info,
.order-form-card {
    position: relative;
    z-index: 1;
}

.order-info-title {
    margin-bottom: 16px;
    color: #ffffff;
    font-size: clamp(1.75rem, 4vw, 2.4rem);
    font-weight: 900;
    line-height: 1.2;
}

.order-info-subtitle {
    margin-bottom: 36px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    line-height: 1.7;
}

.order-feature-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
    list-style: none;
}

    .order-feature-list li {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.9rem;
    }

.feature-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 10px;
    font-size: 0.8rem;
}

.feature-icon--blue {
    background: rgba(33, 150, 243, 0.2);
    color: var(--primary-light);
}

.feature-icon--orange {
    background: rgba(255, 152, 0, 0.2);
    color: var(--accent);
}

.feature-icon--green {
    background: rgba(16, 185, 129, 0.2);
    color: #34D399;
}

.feature-text strong {
    display: block;
    margin-bottom: 2px;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
}

.feature-text span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

.order-phones {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.order-phone-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
}

    .order-phone-link:hover,
    .order-phone-link i {
        color: var(--primary-light);
    }

.order-form-card {
    padding: 40px;
    border: 1px solid transparent;
    border-radius: var(--radius-xl);
    background: linear-gradient(#ffffff, #ffffff) padding-box, linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(33, 150, 243, 0.28), rgba(255, 255, 255, 0), rgba(255, 152, 0, 0.24)) border-box;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
}

.form-group-custom {
    margin-bottom: 20px;
}

.form-label-custom {
    display: block;
    margin-bottom: 6px;
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.form-control-custom,
.form-select-custom {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    outline: none;
    background: var(--light);
    color: var(--text-primary);
    font-family: var(--font);
    font-size: 0.9rem;
    appearance: none;
}

    .form-control-custom::placeholder {
        color: #A0B0C0;
    }

    .form-control-custom:focus,
    .form-select-custom:focus {
        border-color: var(--primary);
        background: #ffffff;
        box-shadow: 0 0 0 4px rgba(33, 150, 243, 0.1);
    }

.form-check-custom {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 24px;
}

    .form-check-custom input[type="checkbox"] {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
        margin-top: 2px;
        border: 2px solid var(--border);
        border-radius: 4px;
        cursor: pointer;
        accent-color: var(--primary);
    }

    .form-check-custom label {
        color: var(--text-secondary);
        font-size: 0.8rem;
        line-height: 1.5;
        cursor: pointer;
    }

        .form-check-custom label a {
            color: var(--primary);
            text-decoration: none;
        }

            .form-check-custom label a:hover {
                text-decoration: underline;
            }

.btn-submit {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-size: 1rem;
}

    .btn-submit::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
        opacity: 0;
    }

    .btn-submit:hover::before {
        opacity: 1;
    }

/* =============================================
   CONTACTS SECTION
   ============================================= */

.contacts-section {
    padding: 80px 0;
    background: radial-gradient(circle at 20% 10%, rgba(33, 150, 243, 0.04), transparent 30%), #F0F3F8;
}

.contact-card {
    height: 100%;
    padding: 32px 28px;
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    background: linear-gradient(var(--light), var(--light)) padding-box, linear-gradient(135deg, rgba(33, 150, 243, 0.30), rgba(33, 150, 243, 0.06), rgba(255, 255, 255, 0), rgba(255, 152, 0, 0.22)) border-box;
    text-align: center;
    box-shadow: 0 18px 50px rgba(15, 25, 35, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

    .contact-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }

.contact-icon-wrap {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: var(--radius-md);
    font-size: 1.4rem;
}

.contact-card h5 {
    margin-bottom: 12px;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.contact-card p,
.contact-card a {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    text-decoration: none;
}

.contact-card a {
    color: var(--primary);
    font-weight: 600;
}

    .contact-card a:hover {
        color: var(--primary-dark);
    }

.instagram-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF);
    color: #ffffff !important;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
}

    .instagram-btn:hover {
        color: #ffffff !important;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(221, 42, 123, 0.4);
    }

/* =============================================
   FOOTER
   ============================================= */

.site-footer {
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: var(--dark);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-logo .logo-icon {
    width: 34px;
    height: 34px;
    font-size: 0.85rem;
}

.footer-logo .logo-title {
    color: #ffffff;
    font-size: 0.9rem;
}

.footer-copy {
    margin: 0;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    text-align: center;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

    .footer-links a {
        color: rgba(255, 255, 255, 0.4);
        font-size: 0.8rem;
        text-decoration: none;
    }

        .footer-links a:hover {
            color: var(--primary-light);
        }

/* =============================================
   THANK YOU PAGE
   ============================================= */

.thankyou-wrap {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 40px 20px;
    background: radial-gradient(circle at 20% 20%, rgba(33, 150, 243, 0.13), transparent 34%), radial-gradient(circle at 80% 80%, rgba(255, 152, 0, 0.08), transparent 30%), var(--dark);
}

.thankyou-card {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 520px;
    padding: 60px 48px;
    border: 1px solid transparent;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)) padding-box, linear-gradient(135deg, rgba(255, 255, 255, 0.35), rgba(33, 150, 243, 0.18), rgba(255, 255, 255, 0.02), rgba(255, 152, 0, 0.18)) border-box;
    text-align: center;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-dark);
}

.thankyou-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--success), #059669);
    color: #ffffff;
    font-size: 2.2rem;
    box-shadow: 0 16px 40px rgba(16, 185, 129, 0.4);
    animation: successPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.thankyou-card h1 {
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 2rem;
    font-weight: 900;
}

.thankyou-card p {
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

.thankyou-phone-block {
    margin-bottom: 28px;
    padding: 20px 24px;
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04)) padding-box, linear-gradient(135deg, rgba(255, 255, 255, 0.20), rgba(33, 150, 243, 0.10), rgba(255, 255, 255, 0.02)) border-box;
}

    .thankyou-phone-block small {
        display: block;
        margin-bottom: 6px;
        color: rgba(255, 255, 255, 0.4);
        font-size: 0.75rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .thankyou-phone-block a {
        color: #ffffff;
        font-size: 1.4rem;
        font-weight: 900;
        text-decoration: none;
    }

        .thankyou-phone-block a:hover {
            color: var(--primary-light);
        }

.thankyou-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

/* =============================================
   PRIVACY PAGE
   ============================================= */

.privacy-wrap {
    min-height: 100vh;
    padding: 60px 0;
    background: radial-gradient(circle at 85% 20%, rgba(33, 150, 243, 0.08), transparent 32%), radial-gradient(circle at 15% 90%, rgba(255, 152, 0, 0.05), transparent 28%), var(--light);
}

.privacy-card {
    margin-bottom: 16px;
    padding: 32px;
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    background: linear-gradient(#ffffff, #ffffff) padding-box, linear-gradient(135deg, rgba(33, 150, 243, 0.35), rgba(33, 150, 243, 0.08), rgba(255, 255, 255, 0), rgba(255, 152, 0, 0.24)) border-box;
    box-shadow: 0 18px 60px rgba(33, 150, 243, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

    .privacy-card h3 {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 12px;
        color: var(--text-primary);
        font-size: 1.1rem;
        font-weight: 700;
    }

        .privacy-card h3::before {
            content: '';
            width: 4px;
            height: 20px;
            flex-shrink: 0;
            border-radius: 2px;
            background: linear-gradient(180deg, var(--primary), rgba(33, 150, 243, 0));
        }

    .privacy-card p,
    .privacy-card ul {
        color: var(--text-secondary);
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .privacy-card ul {
        padding-left: 20px;
    }

/* =============================================
   VALIDATION
   ============================================= */

.field-validation-error {
    display: block;
    margin-top: 6px;
    color: var(--danger);
    font-size: 0.78rem;
}

.input-validation-error {
    border-color: var(--danger) !important;
}

.validation-summary-errors {
    margin-bottom: 20px;
    padding: 12px 16px;
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: var(--radius-sm);
    background: rgba(239, 68, 68, 0.08);
}

    .validation-summary-errors ul {
        margin: 0;
        padding-left: 20px;
        color: var(--danger);
        font-size: 0.85rem;
    }

/* =============================================
   ICON COLORS
   ============================================= */

.icon-blue {
    background: rgba(33, 150, 243, 0.1);
    color: var(--primary);
}

.icon-orange {
    background: rgba(255, 152, 0, 0.1);
    color: var(--accent);
}

.icon-green {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.icon-purple {
    background: rgba(139, 92, 246, 0.1);
    color: var(--purple);
}

/* =============================================
   ADMIN SMALL FIXES
   ============================================= */

.admin-table tr {
    transition: var(--transition);
}

    .admin-table tr:hover {
        background: var(--light-secondary);
    }

/* =============================================
   ANIMATIONS
   ============================================= */

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes floatShape {
    0%, 100% {
        transform: translateY(0) rotate(15deg);
    }

    50% {
        transform: translateY(-20px) rotate(20deg);
    }
}

@keyframes pulseDot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.7);
    }
}

@keyframes floatBadge {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes successPop {
    from {
        opacity: 0;
        transform: scale(0);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1199.98px) {
    .hero-floating-badge {
        display: none;
    }

    .hero-card-widget {
        padding: 0;
    }

    .hero-card {
        max-width: 100%;
    }
}

@media (max-width: 991.98px) {
    .hero-section {
        min-height: auto;
        padding: 56px 0;
    }

    .hero-card-widget {
        margin-top: 32px;
    }

    .steps-row {
        flex-wrap: wrap;
        gap: 20px;
    }

    .step-connector {
        display: none;
    }

    .step-item {
        max-width: 160px;
    }

    .order-info {
        margin-bottom: 40px;
    }
}

@media (max-width: 767.98px) {
    section {
        scroll-margin-top: 65px;
    }

    .header-inner {
        gap: 12px;
    }

    .header-phone .phone-number {
        display: none;
    }

    .btn-header span {
        display: none;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
    }

        .hero-actions .btn {
            width: 100%;
        }

    .hero-stats {
        gap: 20px;
    }

    .advantage-card,
    .service-card {
        padding: 24px 20px;
    }

    .order-form-card {
        padding: 28px 20px;
    }

    .steps-row {
        justify-content: center;
    }

    .step-item {
        max-width: 140px;
    }

    .custom-table td {
        padding: 14px 16px;
    }

    .price-table-header {
        padding: 16px 20px;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .thankyou-card {
        padding: 40px 24px;
    }
}

@media (max-width: 575.98px) {
    .hero-stat-number {
        font-size: 1.4rem;
    }

    .hero-stats {
        gap: 16px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .custom-table td:first-child {
        align-items: flex-start;
    }

    .price-badge {
        white-space: nowrap;
    }
}

/* =============================================
   CONTACTS CTA BLOCK
   ============================================= */

.contacts-cta {
    margin-top: 56px;
}

.contacts-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    padding: 36px 48px;
    border: 1px solid transparent;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035)) padding-box, linear-gradient(135deg, rgba(33,150,243,0.45), rgba(255,152,0,0.25)) border-box;
    background-color: var(--dark);
    box-shadow: var(--shadow-dark);
}

.contacts-cta-text h3 {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.contacts-cta-text p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    margin: 0;
}

.contacts-cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.btn-outline-dark-custom {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
}

    .btn-outline-dark-custom:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.5);
        color: #ffffff;
        transform: translateY(-2px);
    }

@media (max-width: 767.98px) {
    .contacts-cta-inner {
        flex-direction: column;
        padding: 28px 24px;
        text-align: center;
    }

    .contacts-cta-actions {
        width: 100%;
        flex-direction: column;
    }

        .contacts-cta-actions .btn,
        .contacts-cta-actions a {
            width: 100%;
            justify-content: center;
        }
}

/* =============================================
   SERVICES GRID — красивое отображение
   любого количества карточек
   ============================================= */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

    /* Если последний элемент одинок в строке — центрируем */
    .services-grid .service-grid-item:last-child:nth-child(3n - 2) {
        grid-column: 1 / 4;
        max-width: calc(33.333% - 8px);
        margin: 0 auto;
    }

    /* Если последних два — центрируем пару */
    .services-grid .service-grid-item:nth-last-child(2):nth-child(3n + 1) {
        grid-column-start: 1;
    }

    .services-grid .service-grid-item {
        min-width: 0;
    }

    /* Карточка занимает всю высоту ячейки */
    .services-grid .service-card {
        height: 100%;
    }

/* Tablet — 2 колонки */
@media (max-width: 991.98px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

        /* Одинокий последний при 2 колонках */
        .services-grid .service-grid-item:last-child:nth-child(odd) {
            grid-column: 1 / 3;
            max-width: calc(50% - 6px);
            margin: 0 auto;
        }

        /* Сбрасываем правило для 3 колонок */
        .services-grid .service-grid-item:last-child:nth-child(3n - 2) {
            grid-column: unset;
            max-width: unset;
            margin: unset;
        }
}

/* Mobile — 1 колонка */
@media (max-width: 575.98px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

        .services-grid .service-grid-item:last-child:nth-child(odd),
        .services-grid .service-grid-item:last-child:nth-child(3n - 2) {
            grid-column: unset;
            max-width: unset;
            margin: unset;
        }
}