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

    :root {
      --bg: #ffffff;
      --fg: #0f172a;
      --primary: #f97316;
      --primary-fg: #ffffff;
      --secondary: #f1f5f9;
      --secondary-fg: #0f172a;
      --muted: #64748b;
      --accent: #1e88e5;
      --border: #e2e8f0;
      --radius: 0.75rem;
      --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
      --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
      --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
      --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
      
      /* Унифицированные переменные по ТЗ */
      --nav-padding-x: clamp(1rem, 3vw, 2rem);
      --header-height: 72px;
      --nav-spacing-unit: 2rem;
      --shadow-unified: var(--shadow-xl);
      --accent-primary: #f97316;
    }

    html { scroll-behavior: smooth; }
    body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--fg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; display: block; }
    ul { list-style: none; }
    button { cursor: pointer; border: none; background: none; font-family: inherit; }
    select, input { font-family: inherit; }

    .container { max-width: 1280px; margin: 0 auto; padding: 0 var(--nav-padding-x); }

    /* ========== Animations ========== */
    @keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
    @keyframes shimmer { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
    .animate-pulse-dot { animation: pulse-dot 2s ease-in-out infinite; }
    .animate-shimmer { animation: shimmer 2s infinite; }

    /* ========== SVG Icons (inline via CSS) ========== */
    .icon { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .icon svg { width: 100%; height: 100%; }

    /* ========== Top Bar (Unified) ========== */
    .topbar { background: var(--fg); color: var(--primary-fg); border-bottom: 1px solid rgba(255,255,255,0.05); }
    .topbar-inner { 
      display: flex; 
      align-items: center; 
      justify-content: space-between; 
      padding: 0.625rem var(--nav-padding-x); 
      font-size: 0.875rem; 
      max-width: 1280px; 
      margin: 0 auto; 
    }
    .topbar-left { display: flex; align-items: center; gap: 1.5rem; }
    .topbar-item { display: flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.8); }
    .topbar-item .icon { color: var(--primary); }
    .topbar-hours { display: none; }

    /* ========== Header (Unified) ========== */
    .header { 
      position: sticky; 
      top: 0; 
      z-index: 50; 
      background: rgba(255,255,255,0.95); 
      backdrop-filter: blur(12px); 
      border-bottom: 1px solid rgba(226,232,240,0.5);
      height: var(--header-height);
      display: flex;
      align-items: center;
    }
    .header-inner { 
      display: flex; 
      align-items: center; 
      justify-content: space-between; 
      padding: 0 var(--nav-padding-x); 
      max-width: 1280px; 
      margin: 0 auto; 
      width: 100%;
    }
    .logo { display: flex; align-items: center; gap: 0.625rem; height: 100%; }
    .logo .icon { color: var(--primary); }
    .logo-text { font-size: 1.25rem; font-weight: 900; letter-spacing: -0.025em; text-transform: uppercase; color: var(--fg); }
    
    /* Стили навигации */
    .nav-desktop { display: none; align-items: center; gap: var(--nav-spacing-unit); }
    .nav-desktop a { 
        font-size: clamp(14px, 0.8vw + 8px, 15px); 
        font-weight: 600; 
        color: var(--fg); 
        transition: color 0.2s; 
        position: relative; 
        text-decoration: none; 
    }
    .nav-desktop a:hover, .nav-desktop a.is-active { color: var(--accent-primary); }
    
    .nav-desktop > a:after, .nav-item-dropdown > a:after { 
        content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--primary); border-radius: 999px; transition: width 0.3s; 
    }
    .nav-desktop > a:hover:after, .nav-item-dropdown:hover > a:after, .nav-desktop > a.is-active:after { width: 100%; }

    /* Настройка выпадающего списка */
    .nav-item-dropdown { position: relative; padding: 10px 0; cursor: pointer; }
    
    .dropdown-menu { 
        display: none; 
        position: absolute; 
        top: 100%;
        left: 0; 
        background: #ffffff !important; 
        min-width: 250px; 
        box-shadow: var(--shadow-unified); 
        border-radius: 8px; 
        padding: 6px; 
        z-index: 1000; 
        border: 1px solid var(--border); 
    }

    .nav-item-dropdown:hover .dropdown-menu { display: block; }

    .dropdown-menu a { 
        display: block; 
        padding: 10px 16px !important;
        margin: 0 !important;
        border-radius: 6px;
        background: #ffffff !important; 
        color: var(--fg) !important;
        font-size: 0.875rem;
        line-height: 1.4 !important;
    }

    .dropdown-menu a:hover, .dropdown-menu a.is-active { 
        background: var(--secondary) !important; 
        color: var(--primary) !important; 
        padding-left: 20px !important; 
    }

    .dropdown-menu a::after { display: none !important; }

    .header-phone-block { display: none; text-align: right; }
    .header-phone { font-size: 1.125rem; font-weight: 800; letter-spacing: -0.025em; color: var(--fg); transition: color 0.2s; }
    .header-phone:hover { color: var(--primary); }
    .header-status { display: flex; align-items: center; justify-content: flex-end; gap: 0.375rem; font-size: 0.75rem; font-weight: 600; color: #10b981; margin-top: 2px; }
    .header-status-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: #10b981; }

    .burger-btn { display: flex; align-items: center; justify-content: center; padding: 0.5rem; border-radius: 0.5rem; color: var(--fg); transition: background 0.2s; }
    .burger-btn:hover { background: var(--secondary); }

    /* ========== Mobile Menu ========== */
    .mobile-overlay { display: none; position: fixed; inset: 0; z-index: 998; background: rgba(15,23,42,0.5); backdrop-filter: blur(4px); }
    .mobile-overlay.active { display: block; }
    .mobile-menu { position: fixed; top: 0; right: 0; z-index: 999; width: min(80vw, 320px); height: 100%; background: var(--bg); box-shadow: var(--shadow-xl); transform: translateX(100%); transition: transform 0.3s ease; display: flex; flex-direction: column; }
    .mobile-menu.active { transform: translateX(0); }
    .mobile-menu-header { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem; border-bottom: 1px solid var(--border); }
    .mobile-menu-header span { font-size: 1.125rem; font-weight: 700; }
    .mobile-close-btn { display: flex; align-items: center; justify-content: center; padding: 0.375rem; border-radius: 0.5rem; color: var(--fg); transition: background 0.2s; }
    .mobile-close-btn:hover { background: var(--secondary); }
    .mobile-nav { flex: 1; padding: 1rem; display: flex; flex-direction: column; }
    .mobile-nav a { display: block; padding: 1rem 0; font-size: 1rem; font-weight: 600; color: var(--fg); border-bottom: 1px solid rgba(226,232,240,0.5); transition: color 0.2s; }
    .mobile-nav a:hover, .mobile-nav a.is-active { color: var(--primary); }
    .mobile-footer { border-top: 1px solid var(--border); padding: 1.25rem; }
    .mobile-footer-phone { display: block; font-size: 1.125rem; font-weight: 800; color: var(--fg); margin-bottom: 0.5rem; }
    .mobile-footer-status { display: flex; align-items: center; gap: 0.375rem; font-size: 0.875rem; font-weight: 600; color: #10b981; }

    /* ========== Hero ========== */
    .hero { position: relative; overflow: hidden; background: var(--secondary); padding: 3.5rem 0 4rem 0 !important; }
    .hero-blob-1 { position: absolute; top: -8rem; right: -4rem; width: 500px; height: 500px; border-radius: 50%; background: rgba(249,115,22,0.05); pointer-events: none; }
    .hero-blob-2 { position: absolute; bottom: -8rem; left: -4rem; width: 400px; height: 400px; border-radius: 50%; background: rgba(30,136,229,0.05); pointer-events: none; }
    .hero-inner { position: relative; z-index: 10; }
    .hero-grid { display: grid; gap: 1.5rem; align-items: start; }
    .hero h1 { font-size: 2.25rem; font-weight: 900; line-height: 1.15; letter-spacing: -0.025em; color: var(--fg); margin-top: 0 !important; margin-bottom: 1rem; text-wrap: balance; }
    .hero h1 span { color: var(--primary); }
    .hero-desc { font-size: 1.125rem; line-height: 1.6; color: var(--muted); max-width: 32rem; margin-bottom: 1.5rem; }

    @media (max-width: 1023px) {
        .hero-grid { display: flex !important; flex-direction: column !important; align-items: center !important; text-align: center !important; }
        .hero h1 { text-align: center !important; }
        .hero-desc { margin-left: auto !important; margin-right: auto !important; text-align: center !important; }
    }

    .features-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
    .feature-card { display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem; border-radius: 0.75rem; border: 1px solid rgba(226,232,240,0.6); background: var(--bg); box-shadow: var(--shadow-sm); transition: transform 0.2s, box-shadow 0.2s; }
    .feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
    .feature-icon-wrap { flex-shrink: 0; width: 3rem; height: 3rem; display: flex; align-items: center; justify-content: center; border-radius: 0.75rem; background: rgba(249,115,22,0.1); }
    .feature-icon-wrap svg { width: 1.5rem; height: 1.5rem; color: var(--primary); stroke: var(--primary); }
    .feature-title { font-weight: 700; color: var(--fg); }
    .feature-desc { font-size: 0.875rem; color: var(--muted); }

    /* ========== Calculator Form ========== */
    .calc-card { position: relative; border-radius: 1rem; border: 1px solid var(--border); background: var(--bg); padding: 1.5rem; box-shadow: var(--shadow-xl); }
    .calc-accent-line { position: absolute; top: 0; left: 0; right: 0; height: 4px; border-radius: 1rem 1rem 0 0; background: linear-gradient(to right, var(--primary), var(--accent)); }
    .calc-header { text-align: center; margin-bottom: 1.5rem; }
    .calc-header h3 { font-size: 1.5rem; font-weight: 800; color: var(--fg); }
    .calc-header p { font-size: 0.875rem; color: var(--muted); margin-top: 0.25rem; }
    .calc-form { display: flex; flex-direction: column; gap: 1rem; }
    .form-row { display: grid; gap: 1rem; }
    .form-field { display: flex; flex-direction: column; gap: 0.375rem; }
    .form-field label { font-size: 0.875rem; font-weight: 600; color: var(--fg); }
    .form-field select, .form-field input { width: 100%; padding: 0.75rem 1rem; border-radius: 0.5rem; border: 2px solid var(--border); background: var(--secondary); font-size: 0.875rem; color: var(--fg); transition: border-color 0.2s, background 0.2s, box-shadow 0.2s; outline: none; }
    .form-field select:focus, .form-field input:focus { border-color: var(--primary); background: var(--bg); box-shadow: 0 0 0 3px rgba(249,115,22,0.2); }
    .form-field input::placeholder { color: var(--muted); }
    .submit-btn { position: relative; overflow: hidden; width: 100%; padding: 1rem 1.5rem; border-radius: 0.75rem; background: var(--primary); color: var(--primary-fg); font-size: 1rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; box-shadow: 0 10px 15px -3px rgba(249,115,22,0.3); transition: transform 0.2s, box-shadow 0.2s; margin-top: 0.5rem; }
    .submit-btn:hover { transform: translateY(-2px); box-shadow: 0 20px 25px -5px rgba(249,115,22,0.4); }
    .submit-btn .shimmer { position: absolute; inset: 0; background: linear-gradient(to right, transparent, rgba(255,255,255,0.2), transparent); }
    .calc-privacy { text-align: center; font-size: 0.75rem; color: var(--muted); }
    .calc-privacy a { text-decoration: underline; transition: color 0.2s; }
    .calc-privacy a:hover { color: var(--fg); }
    
    .consult-banner { padding: 20px 0; background-color: #ffffff; }
    .consult-banner .container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
    .consult-card { background: #fffff; border-radius: 24px; padding: 40px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 30px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); border: 1px solid #edf2f7; }
    .consult-info { flex: 1; min-width: 300px; }
    .consult-info h2 { font-size: 2rem; font-weight: 800; color: #1a202c; margin: 0 0 15px 0; line-height: 1.2; }
    .consult-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
    .badge { background: #fff7ed; color: #f97316; padding: 6px 16px; border-radius: 100px; font-size: 0.85rem; font-weight: 600; border: 1px solid #ffedd5; }
    .consult-info p { font-size: 1.1rem; color: #4a5568; margin: 0; }
    .consult-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 15px; }
    .phone-link { font-size: 1.8rem; font-weight: 800; color: #1a202c; text-decoration: none; transition: color 0.3s; }
    .phone-link:hover { color: #f97316; }

    .btn-call { display: inline-flex; align-items: center; gap: 10px; background: #f97316; color: #fff !important; padding: 16px 32px; border-radius: 14px; font-weight: 700; text-decoration: none; font-size: 1.1rem; transition: all 0.3s ease; box-shadow: 0 8px 15px rgba(249, 115, 22, 0.3); position: relative; overflow: hidden; animation: pulse-ring 2s infinite; }
    .btn-call:hover { background: #ea580c; transform: translateY(-2px); box-shadow: 0 12px 20px rgba(249, 115, 22, 0.4); }

    @keyframes pulse-ring {
        0% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4); }
        70% { box-shadow: 0 0 0 12px rgba(249, 115, 22, 0); }
        100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); }
    }

    @media (max-width: 768px) {
        .consult-card { padding: 30px 20px; text-align: center; justify-content: center; }
        .consult-info { min-width: 100%; }
        .consult-badges { justify-content: center; }
        .consult-actions { align-items: center; width: 100%; }
        .phone-link { font-size: 1.5rem; }
        .btn-call { width: 100%; justify-content: center; }
    }

    /* ========== Services ========== */
    .services { background: var(--bg); padding: 5rem 0; }
    .section-header { text-align: center; margin-bottom: 1.5rem; }
    .section-header h2 { font-size: 2.25rem; font-weight: 900; color: var(--fg); margin-bottom: 0.75rem; }
    .section-header h2 span { color: var(--primary); }
    .section-header p { color: var(--muted); max-width: 35rem; margin: 0 auto; font-size: 1.1rem; }

    .services-modern-wrapper { display: flex; justify-content: center; flex-wrap: wrap; gap: 30px; max-width: 1100px; margin: 0 auto; padding: 0 20px; }
    .modern-card { flex: 1 1 450px; max-width: 600px; display: flex; align-items: center; background: #ffffff; border: 1px solid var(--border); border-radius: 24px; padding: 35px; gap: 30px; transition: all 0.3s ease; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05); position: relative; overflow: hidden; }
    .modern-card:hover { transform: translateY(-5px); border-color: var(--primary); box-shadow: 0 20px 25px -5px rgba(249, 115, 22, 0.1); }
    .modern-card-icon { flex-shrink: 0; width: 90px; height: 90px; background: #fff7ed; color: var(--primary); border-radius: 20px; display: flex; align-items: center; justify-content: center; padding: 20px; }
    .modern-card-icon svg { width: 100%; height: 100%; stroke-width: 1.5; }
    .modern-card-info { flex-grow: 1; }
    .modern-card-info h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 10px; color: var(--fg); }
    .modern-card-info p { color: var(--muted); margin-bottom: 20px; line-height: 1.5; }
    .modern-btn { display: inline-flex; align-items: center; font-weight: 700; color: var(--primary); text-decoration: none; transition: 0.2s; }
    .modern-btn:hover { color: #ea580c; gap: 5px; }
    .modern-btn svg { width: 18px; height: 18px; margin-left: 5px; }

    @media (max-width: 768px) {
        .modern-card { flex-direction: column; text-align: center; padding: 30px 20px; }
        .modern-card-icon { margin: 0 auto; width: 70px; height: 70px; padding: 15px; }
        .modern-btn { background: var(--primary); color: white; padding: 12px 0; width: 100%; justify-content: center; border-radius: 12px; }
    }

    /* ========== Steps ========== */
    .steps-section { background:#f8fafc; padding: 5rem 0; }
    .steps-grid { display: grid; gap: 2rem; }
    .step-wrapper { position: relative; }
    .step-card { display: flex; flex-direction: column; align-items: center; padding: 1.5rem; border-radius: 1rem; background: var(--bg); box-shadow: var(--shadow-sm); transition: transform 0.2s, box-shadow 0.2s; }
    .step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
    .step-num { width: 4rem; height: 4rem; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--primary); color: var(--primary-fg); font-size: 1.5rem; font-weight: 900; box-shadow: 0 10px 15px -3px rgba(249,115,22,0.3); margin-bottom: 1.25rem; }
    .step-title-wrap { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; }
    .step-title-wrap svg { width: 1.25rem; height: 1.25rem; stroke: var(--primary); }
    .step-title-wrap h4 { font-size: 1.125rem; font-weight: 700; color: var(--fg); }
    .step-card p { text-align: center; font-size: 0.875rem; color: var(--muted); }

    /* ========== Advantages ========== */
    .advantages { background: var(--bg); padding: 2.5rem 0 0.5rem 0; }
    .advantages-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
    .advantage-card { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 2rem; border-radius: 1rem; border: 2px solid transparent; background: var(--secondary); transition: transform 0.3s, border-color 0.3s, background 0.3s, box-shadow 0.3s; }
    .advantage-card:hover { transform: translateY(-8px); border-color: var(--primary); background: var(--bg); box-shadow: var(--shadow-xl); }
    .advantage-icon { width: 4rem; height: 4rem; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(249,115,22,0.1); margin-bottom: 1.25rem; transition: transform 0.3s; }
    .advantage-card:hover .advantage-icon { transform: scale(1.1); }
    .advantage-icon svg { width: 1.75rem; height: 1.75rem; stroke: var(--primary); }
    .advantage-card h4 { font-size: 1.125rem; font-weight: 700; color: var(--fg); margin-bottom: 0.75rem; }
    .advantage-card p { font-size: 0.875rem; line-height: 1.6; color: var(--muted); }

    /* ========== SEO Section ========== */
    .seo-section { background: var(--secondary); padding: 5rem 0; }
    .seo-box { max-width: 56rem; margin: 0 auto; border-radius: 1rem; border: 2px solid var(--border); background: var(--bg); padding: 2rem; box-shadow: var(--shadow-sm); }
    .seo-box h2 { display: flex; align-items: center; gap: 0.75rem; font-size: 1.5rem; font-weight: 800; color: var(--fg); margin-bottom: 2rem; }
    .seo-box h2 svg { flex-shrink: 0; width: 1.75rem; height: 1.75rem; stroke: var(--primary); }
    .seo-box h3 { display: flex; align-items: center; gap: 0.75rem; font-size: 1.25rem; font-weight: 700; color: var(--fg); margin-top: 2rem; margin-bottom: 1rem; }
    .seo-box h3 svg { width: 1.25rem; height: 1.25rem; stroke: var(--primary); }
    .seo-box p { line-height: 1.7; color: var(--muted); margin-bottom: 1.5rem; }
    .seo-box strong { color: var(--fg); }
    .seo-box em { color: var(--muted); }

    /* ========== Footer ========== */
    .site-footer { background: var(--fg); color: var(--primary-fg); }
    .footer-inner { max-width: 1280px; margin: 0 auto; padding: 4rem 1rem 2rem; }
    .footer-grid { display: grid; gap: 3rem; padding-bottom: 3rem; margin-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .footer-logo { display: flex; align-items: center; gap: 0.625rem; margin-bottom: 1.25rem; }
    .footer-logo svg { color: var(--primary); }
    .footer-logo span { font-size: 1.125rem; font-weight: 900; letter-spacing: -0.025em; text-transform: uppercase; }
    .footer-desc { line-height: 1.6; color: rgba(255,255,255,0.6); }
    .footer-heading { font-size: 1.125rem; font-weight: 800; color: var(--primary); margin-bottom: 1.25rem; }
    .footer-nav a { display: block; color: rgba(255,255,255,0.6); padding: 0.375rem 0; transition: color 0.2s, padding-left 0.2s; }
    .footer-nav a:hover { color: var(--primary); padding-left: 4px; }
    .footer-contact li { display: flex; align-items: center; gap: 0.625rem; color: rgba(255,255,255,0.6); padding: 0.375rem 0; }
    .footer-contact li svg { flex-shrink: 0; width: 1rem; height: 1rem; stroke: var(--primary); }
    .footer-copy { text-align: center; font-size: 0.875rem; color: rgba(255,255,255,0.4); }

    /* ========== Responsive ========== */
    @media (min-width: 640px) {
      .features-grid { grid-template-columns: repeat(2, 1fr); }
      .form-row { grid-template-columns: repeat(2, 1fr); }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .steps-grid { grid-template-columns: repeat(2, 1fr); }
      .advantages-grid { grid-template-columns: repeat(2, 1fr); }
      .topbar-hours { display: flex; }
    }

    @media (min-width: 768px) {
      .hero { padding: 6rem 0; }
      .hero h1 { font-size: 3rem; }
      .calc-card { padding: 2rem; }
      .seo-box { padding: 3rem; }
      .section-header h2 { font-size: 2.25rem; }
      .seo-box h2 { font-size: 1.875rem; }
      .footer-grid { grid-template-columns: repeat(3, 1fr); }
    }

   @media (min-width: 1024px) {
    .nav-desktop { display: flex !important; align-items: center; gap: var(--nav-spacing-unit); }
    .header-phone-block { display: block !important; }
    .burger-btn { display: none !important; }

    .nav-item-dropdown { position: relative; padding: 15px 0; }
    .nav-link { font-size: 0.875rem; font-weight: 600; cursor: pointer; }

    .dropdown-menu {
        position: absolute;
        top: 100%; 
        left: 50%;
        transform: translateX(-50%);
        background: #ffffff !important;
        min-width: 260px;
        border-radius: 12px;
        box-shadow: var(--shadow-unified);
        border: 1px solid #e2e8f0;
        padding: 10px 0;
        display: none;
        z-index: 9999;
    }

    .nav-item-dropdown:hover .dropdown-menu { display: block !important; }

    .dropdown-menu a {
        display: block !important;
        padding: 10px 20px !important;
        font-size: 0.9rem !important;
        font-weight: 500 !important;
        color: #0f172a !important;
        text-align: left;
        transition: all 0.2s !important;
        background: #ffffff !important;
    }

    .dropdown-menu a:hover, .dropdown-menu a.is-active {
        background: #f8fafc !important;
        color: #f97316 !important;
        padding-left: 25px !important;
    }

    .hero-grid { grid-template-columns: repeat(2, 1fr); gap: 5rem; }
    .hero h1 { font-size: 3.25rem; }
    .services-grid { grid-template-columns: repeat(4, 1fr); }
    .steps-grid { grid-template-columns: repeat(4, 1fr); }
    .advantages-grid { grid-template-columns: repeat(3, 1fr); }
    }

    .btn-primary-action { display: inline-flex; align-items: center; background-color: #000000; color: #ffffff; padding: 18px 35px; border-radius: 12px; font-weight: 700; font-size: 1.1rem; text-decoration: none; text-transform: uppercase; transition: all 0.3s ease; box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); border: none; cursor: pointer; }
    .btn-primary-action:hover { background-color: #ff4d00; color: #ffffff; transform: translateY(-3px); box-shadow: 0 15px 30px rgba(255, 77, 0, 0.4); }
    .btn-primary-action svg { stroke: #ffffff; transition: transform 0.3s ease; }
    .btn-primary-action:hover svg { transform: translateX(5px); }

    @media (max-width: 640px) {
        .header-phone-block { display: none !important; }
        .logo-text { font-size: 18px !important; }
        .logo svg { width: 24px !important; height: 24px !important; }
        .mobile-call-icon { display: flex !important; align-items: center; justify-content: center; width: 40px; height: 40px; background-color: #ff4d00; color: white; border-radius: 50%; box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3); margin-left: auto; margin-right: 15px; }
        .header-inner { padding: 10px var(--nav-padding-x) !important; display: flex !important; align-items: center; justify-content: space-between !important; }
    }

    .mobile-call-icon { display: none; }

    @media (max-width: 768px) {
        .seo-content { padding: 30px 0 !important; display: block !important; }
        .seo-content .container h1, .seo-content .container h2, .seo-content .container h3 { margin-top: 1.5rem !important; margin-bottom: 0.5rem !important; font-size: 1.5rem !important; line-height: 1.2 !important; font-weight: 800 !important; display: block !important; }
        .seo-content .container h1 { margin-top: 0 !important; font-size: 1.7rem !important; }
        .seo-content .container p { margin-top: 0 !important; margin-bottom: 0.8rem !important; line-height: 1.5 !important; }
        .seo-list { padding-left: 20px !important; margin-top: 0 !important; margin-bottom: 1rem !important; }
        .seo-content p:empty { display: none !important; }
        .section-header h2 { font-size: 1.8rem !important; margin-bottom: 0.5rem !important; }
        .services, .steps-section, .advantages { padding: 2.5rem 0 !important; }
        .section-header { margin-bottom: 1.5rem !important; }
    }

    .reviews-widget { padding: 20px 0; overflow: hidden; background: #f8fafc; }
    .reviews-container-relative { position: relative; max-width: 1200px; margin: 0 auto; }
    .reviews-slider { display: flex; gap: 20px; padding: 20px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; scroll-behavior: smooth; }
    .reviews-slider::-webkit-scrollbar { display: none; }
    .review-card { flex: 0 0 320px; background: white; padding: 25px; border-radius: 18px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); scroll-snap-align: center; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid #e2e8f0; }
    .nav-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 45px; height: 45px; background: white; border: 1px solid #e2e8f0; border-radius: 50%; cursor: pointer; z-index: 10; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(0,0,0,0.1); transition: all 0.3s ease; font-size: 1.2rem; }
    .nav-btn:hover { background: #f97316; color: white; border-color: #f97316; }
    .prev-btn { left: -10px; }
    .next-btn { right: -10px; }
    .review-header { display: flex; align-items: center; margin-bottom: 15px; }
    .review-avatar { width: 45px; height: 45px; background: #e2e8f0; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; color: #64748b; margin-right: 12px; }
    .review-meta h4 { font-size: 1rem; margin: 0; color: #0f172a; }
    .review-location { font-size: 0.75rem; color: #94a3b8; }
    .review-rating { color: #fbbf24; margin-bottom: 10px; font-size: 0.9rem; }
    .review-text { font-size: 0.9rem; line-height: 1.5; color: #334155; font-style: italic; }
    .review-source { margin-top: 15px; display: flex; align-items: center; font-size: 0.75rem; font-weight: 600; }
    .source-google { color: #4285F4; }
    .source-yandex { color: #ff0000; }

    @media (max-width: 1024px) { .nav-btn { display: none; } }
    @media (max-width: 768px) { .review-card { flex: 0 0 280px; padding: 20px; } }

    .seo-content { padding: 60px 0 10px 0; background-color: #ffffff; font-family: 'Inter', system-ui, -apple-system, sans-serif; line-height: 1.8; color: #334155; }
    .seo-content .container { max-width: 1100px; margin: 0 auto; padding: 0 15px; }
    .seo-content h1 { font-size: 2.2rem; font-weight: 800; color: #0f172a; margin-bottom: 1.5rem; line-height: 1.2; }
    .seo-content h2 { font-size: 1.6rem; font-weight: 700; color: #1e293b; margin: 2.5rem 0 1rem; }
    .seo-content h3 { font-size: 1.25rem; font-weight: 700; color: #000000; margin-top: 2rem; }
    .seo-content p { margin-bottom: 1.2rem; font-size: 1.1rem; }
    .seo-content .highlight-box { background: #fff7ed; border-left: 4px solid #f97316; padding: 24px; border-radius: 12px; margin: 30px 0; }
    .seo-content .highlight-box p { margin-bottom: 0; font-weight: 500; color: #1e293b; }
    .seo-list { list-style: none; padding: 0; margin: 20px 0; }
    .seo-list li { position: relative; padding-left: 28px; margin-bottom: 12px; font-size: 1.05rem; }
    .seo-list li::before { content: "•"; color: #f97316; font-weight: bold; position: absolute; left: 0; font-size: 1.5rem; line-height: 1; }

    @media (max-width: 768px) {
        .seo-content { padding: 40px 0; }
        .seo-content h1 { font-size: 1.7rem; }
        .seo-content h2 { font-size: 1.4rem; }
        .site-footer { text-align: center !important; }
        .footer-grid { grid-template-columns: 1fr !important; gap: 2.5rem !important; }
        .footer-logo { justify-content: center !important; margin-bottom: 1rem !important; }
        .footer-nav { display: flex; flex-direction: column; align-items: center !important; }
        .footer-contact li { justify-content: center !important; display: flex; align-items: center; }
        .footer-desc { margin-left: auto !important; margin-right: auto !important; max-width: 280px; }
        .footer-copy { margin-top: 1.5rem; }
    }

    @media (max-width: 1023px) {
        section h2, .services h2, .steps h2, .advantages h2, .reviews h2 { text-align: center !important; margin-left: auto !important; margin-right: auto !important; width: 100% !important; }
        .section-subtitle { text-align: center !important; }
    }

    /* БЛОК ПРАВОК ДЛЯ ДЕСКТОПА */
    .nav-desktop .dropdown-menu a:hover, .nav-desktop .dropdown-menu a.is-active {
        background: #f8fafc !important;      
        color: var(--primary) !important;     
        box-shadow: none !important;          
    }

    .nav-desktop .nav-item-dropdown .dropdown-menu {
        top: 100% !important;    
        margin-top: 0 !important;
    }

    .nav-item-dropdown:hover, .nav-item-dropdown:active {
        background: transparent !important;
    }
    /* Контейнер для адаптивности */
.table-container {
  width: 100%;
  overflow-x: auto;
  margin: 20px 0;
}