/* Общие стили для страниц /uslugi/* — вынесены отдельно, чтобы не дублировать
   инлайн-стиль index.html в каждом файле услуги. Используется только на
   статических HTML-страницах, сборки не требует. */
@import url('mobile.css');

body {
    font-family: 'Inter', sans-serif;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}
html { scroll-behavior: smooth; }
body {
    -webkit-tap-highlight-color: transparent;
    overflow-x: clip;
    max-width: 100vw;
}

[x-cloak] { display: none !important; }

.bg-grid-pattern {
    background-size: 40px 40px;
    background-image: linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
                      linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
}
.glass-card {
    background: rgba(17, 24, 39, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.glass-card-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.glass-card-hover:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: 0 10px 30px -10px rgba(245, 158, 11, 0.2);
}

.brand-logo__icon {
    flex-shrink: 0;
    transition: transform 0.2s ease;
}
.brand-logo:hover .brand-logo__icon {
    transform: scale(1.04);
}

input[type="tel"] {
    letter-spacing: 0.05em;
}
input[type="tel"]:focus {
    box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.15);
}

.price-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
}
@media (min-width: 640px) {
    .price-row {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }
}

.price-includes {
    margin-top: 0.25rem;
    padding: 1rem 1.1rem;
    border-radius: 0.75rem;
    background: rgba(245, 158, 11, 0.06);
    border: 1px solid rgba(245, 158, 11, 0.15);
}
.price-includes h4 {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #f59e0b;
    margin-bottom: 0.65rem;
}
.price-includes ul {
    list-style: none;
    display: grid;
    gap: 0.45rem;
}
.price-includes li {
    position: relative;
    padding-left: 1rem;
    color: #cbd5e1;
    line-height: 1.45;
}
.price-includes li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 0.35rem;
    height: 0.35rem;
    border-radius: 999px;
    background: #f59e0b;
}
.price-includes-note {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.7rem;
    line-height: 1.45;
    color: #94a3b8;
}

.mobile-bottom-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9990;
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    will-change: transform;
    padding-bottom: env(safe-area-inset-bottom, 0px);
    background: #0b0f19;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.45);
}

.steps-list {
    counter-reset: step;
    display: grid;
    gap: 1.25rem;
}
.steps-list li {
    counter-increment: step;
    position: relative;
    padding-left: 3.25rem;
}
.steps-list li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #f59e0b;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}
