/* Nesen — общие стили (наполняем по мере появления макетов) */

html, body { height: 100%; }
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #222;
}

.form-feedback:empty { display: none; }

.site-logo { display: block; height: 32px; width: auto; }
@media (min-width: 768px) { .site-logo { height: 40px; } }

/* Section spacing */
.section { padding: 3rem 0; }
@media (min-width: 992px) { .section { padding: 5rem 0; } }

/* Placeholder <img>: src is missing on purpose, browser draws broken-image
   icon — we just give it a visible frame so the block reserves its size. */
img.placeholder {
    display: block;
    width: 100%;
    height: auto;
    background: repeating-linear-gradient(45deg,
        #f3f4f6, #f3f4f6 12px,
        #e9ebef 12px, #e9ebef 24px);
    border: 1px dashed #b8bcc6;
    color: #6c757d;
    font-size: 0.8rem;
    object-fit: cover;
    border-radius: 0.5rem;
}
img.placeholder--rounded-top {
    border-radius: 0.375rem 0.375rem 0 0;
    border-bottom: 0;
}

/* Process steps */
.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem; height: 2.5rem;
    border-radius: 50%;
    background: var(--bs-primary);
    color: #fff;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Hero with background photo */
.hero {
    position: relative;
    overflow: hidden;
    padding: 3.5rem 0;
    background: #1a1d22;
    color: #fff;
    min-height: 520px;
}
@media (min-width: 992px) { .hero { padding: 5.5rem 0; min-height: 640px; } }
.hero h1 { line-height: 1.1; color: #fff; }
.hero .lead { color: rgba(255,255,255,0.92); }
/* hero-bg img is a full-bleed background; reset any .placeholder decorations */
img.hero-bg-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
    border: 0;
    border-radius: 0;
    background: #1a1d22;
}
.hero-bg-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(15,17,22,0.78) 0%, rgba(15,17,22,0.45) 60%, rgba(15,17,22,0.65) 100%);
    z-index: 1;
}
.hero-inner { position: relative; z-index: 2; }

.hero-bullets { margin: 0 0 0.5rem 0; padding: 0; }
.hero-bullets li {
    display: flex;
    align-items: center;
    gap: 0.95rem;
    padding: 0.6rem 0;
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.35;
}
.hero-bullets li::before { content: none; }
.utp-icon {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    color: #25D366;
}
@media (min-width: 768px) {
    .hero-bullets li   { font-size: 1.2rem; padding: 0.7rem 0; }
    .utp-icon          { width: 2.25rem; height: 2.25rem; }
}
.hero-form { color: var(--bs-body-color); }

/* WhatsApp brand button (Bootstrap btn-success is too lime; force WA green) */
.btn-whatsapp {
    background: #25D366;
    border-color: #25D366;
    color: #fff;
}
.btn-whatsapp:hover, .btn-whatsapp:focus {
    background: #1da851;
    border-color: #1da851;
    color: #fff;
}
.btn-whatsapp svg { width: 1.1em; height: 1.1em; vertical-align: -0.15em; margin-right: 0.4em; }

/* Pricing card emphasis */
.price-card { border-top: 4px solid var(--bs-primary); }

/* Footer */
.site-footer { background: #1a1d22; color: #adb5bd; }
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.site-footer .label { color: #8a909a; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; }