:root {
  --bg: #070b14;
  --bg-soft: #0e1524;
  --card: #121b2e;
  --card-hover: #172038;
  --text: #eef2ff;
  --muted: #94a3b8;
  --accent: #d4a853;
  --accent-2: #3b82f6;
  --brand: #1e3a5f;
  --success: #22c55e;
  --danger: #ef4444;
  --radius: 18px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --font: 'Manrope', 'Segoe UI', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: min(1140px, calc(100% - 2rem)); margin: 0 auto; }

.topbar {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(7, 11, 20, 0.82);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 0.85rem 0; flex-wrap: wrap;
}
.logo { font-weight: 800; letter-spacing: 0.04em; font-size: 0.95rem; }
.logo span { color: var(--accent); }
.topbar-contacts { display: flex; gap: 0.65rem; flex-wrap: wrap; font-size: 0.85rem; color: var(--muted); align-items: center; }
.topbar-contacts a:hover { color: var(--accent); }
.topbar-social {
  padding: 0.3rem 0.65rem; border-radius: 999px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  font-weight: 600; font-size: 0.78rem;
}
.topbar-social-wa:hover { color: #25d366; border-color: rgba(37,211,102,0.35); }
.topbar-social-tg:hover { color: #2aabee; border-color: rgba(42,171,238,0.35); }
.topbar-social-max:hover { color: #c084fc; border-color: rgba(147,51,234,0.35); }
.btn, button.btn { font-family: var(--font); cursor: pointer; text-decoration: none; }
button.callback-trigger { border: none; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem 1.35rem; border-radius: 999px; font-weight: 700; border: none;
  cursor: pointer; transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn-primary { background: linear-gradient(135deg, #e8c068, #c8943a); color: #1a1205; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(212,168,83,0.35); }
.btn-secondary { background: rgba(255,255,255,0.06); color: var(--text); border: 1px solid rgba(255,255,255,0.12); }
.btn-secondary:hover { background: rgba(255,255,255,0.1); }

.hero {
  position: relative; padding: 4.5rem 0 3.5rem; overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2.5rem; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 0.85rem; border-radius: 999px;
  background: rgba(59,130,246,0.12); border: 1px solid rgba(59,130,246,0.25);
  color: #93c5fd; font-size: 0.82rem; font-weight: 700; margin-bottom: 1rem;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1.08; margin-bottom: 1rem;
  letter-spacing: -0.03em;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-lead { color: var(--muted); font-size: 1.08rem; max-width: 38rem; margin-bottom: 1.5rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.75rem; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.stat {
  padding: 1rem; border-radius: 14px; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}
.stat b { display: block; font-size: 1.35rem; color: var(--accent); }
.stat span { font-size: 0.82rem; color: var(--muted); }

.hero-visual {
  position: relative; min-height: 360px; border-radius: 28px;
  background:
    radial-gradient(circle at 20% 20%, rgba(59,130,246,0.25), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(212,168,83,0.2), transparent 40%),
    linear-gradient(160deg, #152238, #0a1020);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  overflow: hidden;
}
.hero-visual.hero-photo {
  background-image:
    linear-gradient(160deg, rgba(7,11,20,0.2), rgba(7,11,20,0.55)),
    var(--hero-img);
  background-size: cover;
  background-position: center;
}
.hero-visual::before {
  content: ''; position: absolute; inset: 12px; border-radius: 22px;
  border: 1px dashed rgba(255,255,255,0.08); pointer-events: none;
  z-index: 1;
}
.hero-visual.hero-photo::before {
  border-color: rgba(255,255,255,0.12);
}
.floating-card {
  position: absolute; padding: 0.9rem 1rem; border-radius: 14px;
  background: rgba(18,27,46,0.92); border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(8px); animation: float 6s ease-in-out infinite;
  font-size: 0.85rem; z-index: 2;
}
.floating-card:nth-child(1) { top: 12%; left: 8%; animation-delay: 0s; }
.floating-card:nth-child(2) { top: 42%; right: 6%; animation-delay: 1.2s; }
.floating-card:nth-child(3) { bottom: 10%; left: 18%; animation-delay: 2.4s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.section { padding: 4rem 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 2.5rem; }
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 0.75rem; }
.section-head p { color: var(--muted); }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.card {
  background: var(--card); border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius); padding: 1.35rem; transition: transform 0.25s, background 0.25s;
}
.card:hover { transform: translateY(-4px); background: var(--card-hover); }
.card-icon {
  width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(59,130,246,0.12); margin-bottom: 1rem; font-size: 1.4rem;
}
.card h3 { margin-bottom: 0.5rem; font-size: 1.05rem; }
.card p { color: var(--muted); font-size: 0.92rem; }

.steps { counter-reset: step; }
.step {
  display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start;
  padding: 1.25rem; border-radius: var(--radius); background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06); margin-bottom: 0.75rem;
}
.step::before {
  counter-increment: step; content: counter(step);
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(212,168,83,0.15); color: var(--accent); font-weight: 800;
}

.article-card { display: flex; flex-direction: column; height: 100%; }
.article-card-link {
  padding: 0; overflow: hidden; color: inherit; cursor: pointer;
}
.article-card-link:hover { color: inherit; }
.article-cover {
  aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-soft);
}
.article-cover img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.45s ease;
}
.article-card-link:hover .article-cover img { transform: scale(1.06); }
.article-card-body {
  padding: 1.25rem 1.35rem 1.35rem;
  display: flex; flex-direction: column; flex: 1;
}
.article-meta { display: flex; gap: 0.75rem; color: var(--muted); font-size: 0.78rem; margin: 0.75rem 0; }
.article-card p { flex: 1; color: var(--muted); font-size: 0.9rem; }
.article-link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  margin-top: 1rem; color: var(--accent); font-weight: 700; font-size: 0.88rem;
}
.article-card-link:hover .article-link { text-decoration: underline; }

.article-page { padding-bottom: 2rem; }
.article-hero {
  position: relative; min-height: 280px;
  background:
    radial-gradient(circle at 20% 30%, rgba(59,130,246,0.2), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(212,168,83,0.15), transparent 45%),
    linear-gradient(160deg, #152238, #0a1020);
}
.article-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,11,20,0.35) 0%, rgba(7,11,20,0.92) 100%);
}
.article-hero-content {
  position: relative; z-index: 1; padding: 3.5rem 0 2.5rem;
}
.article-back {
  display: inline-block; margin-bottom: 1rem; color: #cbd5e1; font-size: 0.9rem;
}
.article-back:hover { color: var(--accent); }
.article-hero-content h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem); line-height: 1.15;
  max-width: 820px; margin: 0.75rem 0 1rem;
}
.article-content {
  max-width: 760px; padding: 2.5rem 0 3rem;
}
.article-content h2 {
  font-size: 1.35rem; margin: 2rem 0 0.85rem; color: var(--text);
}
.article-content p, .article-content li { color: #b8c4d9; margin-bottom: 0.85rem; }
.article-content ul { padding-left: 1.25rem; margin-bottom: 1.25rem; }
.article-content a { color: var(--accent); text-decoration: underline; }
.article-cta {
  margin-top: 2.5rem; padding: 2rem; border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(212,168,83,0.1), rgba(59,130,246,0.06));
  border: 1px solid rgba(212,168,83,0.18);
}
.article-cta h3 { margin-bottom: 0.5rem; }
.article-cta p { margin-bottom: 1.25rem; }
.article-empty { padding: 5rem 0; text-align: center; }

.hub-card {
  padding: 0; overflow: hidden; color: inherit;
}
.hub-card-cover {
  aspect-ratio: 16 / 9; overflow: hidden;
}
.hub-card-cover img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.hub-card:hover .hub-card-cover img { transform: scale(1.05); }
.hub-card-body { padding: 1.35rem; }
.tag {
  display: inline-block; padding: 0.25rem 0.6rem; border-radius: 999px;
  background: rgba(255,255,255,0.06); font-size: 0.72rem; color: #cbd5e1;
}

.review {
  padding: 1.25rem; border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.07);
}
.stars { color: #fbbf24; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.review cite { display: block; margin-top: 0.85rem; font-style: normal; color: var(--muted); font-size: 0.85rem; }

.faq details {
  background: var(--card); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px; padding: 1rem 1.15rem; margin-bottom: 0.65rem;
}
.faq summary { cursor: pointer; font-weight: 700; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq p { color: var(--muted); margin-top: 0.75rem; font-size: 0.92rem; }

.price-card { text-align: center; }
.price-card .price { font-size: 2rem; font-weight: 800; color: var(--accent); margin: 0.75rem 0; }
.price-card ul { list-style: none; text-align: left; color: var(--muted); font-size: 0.9rem; }
.price-card li { padding: 0.35rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.price-card li::before { content: '✓ '; color: var(--success); }

.imoll-banner {
  margin: 3rem 0; padding: 0; border-radius: 24px; overflow: hidden;
  background:
    radial-gradient(circle at 0% 0%, rgba(254,44,85,0.35), transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(147,51,234,0.3), transparent 45%),
    linear-gradient(135deg, #1a0a12 0%, #120818 40%, #0a1020 100%);
  border: 1px solid rgba(254,44,85,0.25);
  box-shadow: 0 20px 50px rgba(254,44,85,0.12);
}
.imoll-inner {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 1.5rem;
  padding: 2rem; align-items: center;
}
.imoll-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.35rem 0.75rem; border-radius: 999px;
  background: rgba(254,44,85,0.15); color: #ff8fab; font-size: 0.75rem; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.75rem;
}
.imoll-banner h3 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 0.65rem; }
.imoll-banner p { color: #cbd5e1; max-width: 34rem; }
.imoll-features { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1rem 0 1.25rem; }
.imoll-features span {
  padding: 0.35rem 0.7rem; border-radius: 999px; font-size: 0.78rem;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
}
.imoll-visual {
  aspect-ratio: 4/3; border-radius: 18px;
  background:
    linear-gradient(160deg, rgba(254,44,85,0.2), rgba(147,51,234,0.15)),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  display: grid; place-items: center; font-size: 3rem; font-weight: 900;
  color: rgba(255,255,255,0.9); letter-spacing: -0.05em;
}
.btn-imoll {
  background: linear-gradient(135deg, #fe2c55, #9333ea); color: white;
}
.btn-imoll:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(254,44,85,0.35); }

.cta-block {
  text-align: center; padding: 3rem 1.5rem; border-radius: 24px;
  background: linear-gradient(180deg, rgba(212,168,83,0.12), rgba(59,130,246,0.08));
  border: 1px solid rgba(212,168,83,0.2);
}
.cta-block h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 0.75rem; }

.footer {
  padding: 2.5rem 0 2rem; border-top: 1px solid rgba(255,255,255,0.06);
  color: var(--muted); font-size: 0.88rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
.footer a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }

.nav-links { display: flex; gap: 0.75rem; flex-wrap: wrap; font-size: 0.85rem; }
.nav-links a { color: var(--muted); padding: 0.35rem 0.65rem; border-radius: 8px; }
.nav-links a:hover, .nav-links a.active { color: var(--accent); background: rgba(212,168,83,0.08); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s, transform 0.7s; }
.reveal.visible { opacity: 1; transform: none; }

.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.grid-reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.grid-pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; align-items: stretch; }
.price-card.featured {
  border-color: rgba(212,168,83,0.35);
  background: linear-gradient(180deg, rgba(212,168,83,0.08), var(--card));
  transform: scale(1.02);
}
.price-card .btn { width: 100%; margin-top: 1rem; }
.price-card button.btn { width: 100%; margin-top: 1rem; }

.topbar-nav { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; flex: 1; justify-content: center; }
.topbar-nav .nav-links { justify-content: center; }

.contact-section {
  padding: 2rem; border-radius: var(--radius);
  background: var(--card); border: 1px solid rgba(255,255,255,0.06);
}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.contact-list { list-style: none; }
.contact-list li { padding: 0.5rem 0; color: var(--muted); }
.contact-list a { color: var(--text); font-weight: 600; }
.contact-form label { display: block; font-size: 0.85rem; margin-bottom: 0.35rem; color: var(--muted); }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; padding: 0.75rem 1rem; margin-bottom: 0.85rem;
  border-radius: 12px; border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04); color: var(--text); font-family: var(--font);
}
.contact-form textarea { min-height: 100px; resize: vertical; }
.privacy-note { font-size: 0.78rem; color: var(--muted); margin-top: 0.75rem; }

.page-imoll { --bg: #0d0610; --card: #1a0f1f; }
.page-imoll .hero {
  background:
    radial-gradient(circle at 20% 30%, rgba(254,44,85,0.2), transparent 50%),
    radial-gradient(circle at 80% 60%, rgba(147,51,234,0.25), transparent 45%);
}
.page-imoll .hero-badge { background: rgba(254,44,85,0.15); border-color: rgba(254,44,85,0.3); color: #ff8fab; }
.page-imoll .hero h1 em { color: #fe2c55; }
.page-imoll .stat b { color: #ff8fab; }
.page-imoll .btn-primary { background: linear-gradient(135deg, #fe2c55, #9333ea); color: white; }
.page-imoll .card-icon { background: rgba(254,44,85,0.15); }

/* Закреплённая кнопка «Перезвоните мне» */
.callback-fab {
  position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 200;
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.95rem 1.25rem; border: none; border-radius: 999px;
  background: linear-gradient(135deg, #e8c068, #c8943a);
  color: #1a1205; font-family: var(--font); font-weight: 800; font-size: 0.82rem;
  letter-spacing: 0.04em; cursor: pointer;
  box-shadow: 0 16px 40px rgba(212,168,83,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: callback-pulse 2.5s ease-in-out infinite;
}
.callback-fab:hover { transform: translateY(-3px); box-shadow: 0 20px 48px rgba(212,168,83,0.45); }
.callback-fab-icon { font-size: 1.1rem; line-height: 1; }
@keyframes callback-pulse {
  0%, 100% { box-shadow: 0 16px 40px rgba(212,168,83,0.35); }
  50% { box-shadow: 0 16px 48px rgba(212,168,83,0.55); }
}

.callback-modal[hidden] { display: none; }
.callback-modal {
  position: fixed; inset: 0; z-index: 300;
  display: grid; place-items: center; padding: 1rem;
}
.callback-backdrop {
  position: absolute; inset: 0;
  background: rgba(4, 7, 14, 0.72); backdrop-filter: blur(6px);
}
.callback-dialog {
  position: relative; width: min(420px, 100%);
  padding: 2rem 1.75rem 1.5rem; border-radius: 22px;
  background: linear-gradient(180deg, #151f35, #0e1524);
  border: 1px solid rgba(212,168,83,0.25);
  box-shadow: var(--shadow);
  animation: callback-in 0.25s ease;
}
@keyframes callback-in {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
.callback-close {
  position: absolute; top: 0.75rem; right: 0.85rem;
  width: 36px; height: 36px; border: none; border-radius: 50%;
  background: rgba(255,255,255,0.06); color: var(--text);
  font-size: 1.4rem; line-height: 1; cursor: pointer;
}
.callback-close:hover { background: rgba(255,255,255,0.12); }
.callback-dialog h3 { font-size: 1.35rem; margin-bottom: 0.35rem; }
.callback-lead { color: var(--muted); font-size: 0.92rem; margin-bottom: 1.25rem; }
.callback-phone {
  display: block; text-align: center; font-size: 1.5rem; font-weight: 800;
  color: var(--accent); margin-bottom: 1.25rem;
}
.callback-phone:hover { text-decoration: underline; }
.callback-socials { display: grid; gap: 0.65rem; }
.callback-social {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.85rem 1rem; border-radius: 14px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  font-weight: 700; transition: background 0.2s, transform 0.2s;
}
.callback-social:hover { background: rgba(255,255,255,0.08); transform: translateX(4px); }
.callback-social-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: grid; place-items: center; font-weight: 800; font-size: 0.95rem;
}
.callback-social-wa .callback-social-icon { background: rgba(37,211,102,0.18); color: #25d366; }
.callback-social-tg .callback-social-icon { background: rgba(42,171,238,0.18); color: #2aabee; }
.callback-social-max .callback-social-icon { background: rgba(147,51,234,0.2); color: #c084fc; }
.callback-note { margin-top: 1rem; text-align: center; color: var(--muted); font-size: 0.78rem; }
body.callback-open { overflow: hidden; }

@media (max-width: 900px) {
  .container { width: min(1140px, calc(100% - 1.25rem)); }
  .hero { padding: 2.5rem 0 2rem; }
  .hero-grid, .imoll-inner, .footer-grid, .grid-3, .grid-4, .grid-reviews, .grid-pricing, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 1.5rem; }
  .hero-stats { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .hero-visual { min-height: 220px; margin-top: 0.5rem; }
  .hero-visual { position: relative; }
  .floating-card {
    position: relative; inset: auto; animation: none;
    margin-bottom: 0.5rem; display: inline-block;
  }
  .hero-visual { display: flex; flex-direction: column; align-items: stretch; justify-content: center; gap: 0.35rem; padding: 1rem; }
  .hero-visual::before { display: none; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn, .hero-actions button.btn { width: 100%; }
  .cta-block .btn, .cta-block button.btn { width: 100%; max-width: 360px; }
  .price-card.featured { transform: none; }
  .topbar-inner { flex-direction: column; justify-content: center; text-align: center; gap: 0.65rem; padding: 0.65rem 0; }
  .topbar-nav { width: 100%; order: 3; }
  .topbar-nav .nav-links { justify-content: center; gap: 0.35rem; }
  .nav-links a { font-size: 0.78rem; padding: 0.3rem 0.5rem; }
  .topbar-contacts { justify-content: center; gap: 0.4rem; }
  .topbar-contacts > a:first-child { width: 100%; text-align: center; margin-bottom: 0.15rem; }
  .section { padding: 2.75rem 0; }
  .section-head { margin-bottom: 1.75rem; }
  .imoll-inner { padding: 1.25rem; }
  .imoll-visual { min-height: 120px; font-size: 2rem; }
  .article-hero-content { padding: 2rem 0 1.5rem; }
  .article-content { padding: 1.5rem 0 2rem; }
  .article-cta { padding: 1.25rem; }
  .article-cta .hero-actions .btn { width: 100%; }
  .footer-grid { gap: 1.25rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .callback-fab-text { display: none; }
  .callback-fab { padding: 0.95rem; border-radius: 50%; right: 1rem; bottom: max(1rem, env(safe-area-inset-bottom)); }
  body { padding-bottom: calc(4.5rem + env(safe-area-inset-bottom)); }
}

@media (max-width: 480px) {
  .container { width: calc(100% - 1rem); }
  .hero h1 { font-size: 1.75rem; }
  .hero-lead { font-size: 0.98rem; }
  .logo { font-size: 0.82rem; }
  .topbar-social { font-size: 0.72rem; padding: 0.28rem 0.5rem; }
  .btn, button.btn { padding: 0.8rem 1.1rem; font-size: 0.88rem; }
  .grid-4 { grid-template-columns: 1fr; }
  .stat b { font-size: 1.15rem; }
  .price-card .price { font-size: 1.65rem; }
  .callback-dialog { padding: 1.5rem 1.25rem 1.25rem; }
  .callback-phone { font-size: 1.25rem; }
}
