/* ==========================================================================
   Большая стирка — лендинг
   ========================================================================== */

:root {
  --color-bg: #f8fcff;
  --color-bg-soft: #eef6fc;
  --color-white: #ffffff;
  --color-primary: #1565c0;
  --color-primary-dark: #0d47a1;
  --color-accent: #29b6f6;
  --color-accent-light: #b3e5fc;
  --color-text: #1a2b3c;
  --color-text-muted: #5a6f82;
  --color-border: rgba(21, 101, 192, 0.12);
  --shadow-sm: 0 4px 20px rgba(13, 71, 161, 0.06);
  --shadow-md: 0 12px 40px rgba(13, 71, 161, 0.1);
  --shadow-lg: 0 24px 60px rgba(13, 71, 161, 0.12);
  --radius: 16px;
  --radius-lg: 24px;
  --font: 'Manrope', system-ui, -apple-system, sans-serif;
  --header-h: 72px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-accent); }

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

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* Bubbles decoration */
.bubbles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.bubble {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent-light), rgba(79, 195, 247, 0.3));
  animation: float 12s ease-in-out infinite;
}
.bubble--1 { width: 120px; height: 120px; top: 10%; left: 5%; animation-delay: 0s; }
.bubble--2 { width: 80px; height: 80px; top: 60%; right: 8%; animation-delay: -3s; }
.bubble--3 { width: 60px; height: 60px; bottom: 20%; left: 15%; animation-delay: -6s; }
.bubble--4 { width: 100px; height: 100px; top: 30%; right: 20%; animation-delay: -9s; opacity: 0.5; }

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.05); }
  66% { transform: translate(-15px, 20px) scale(0.95); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: var(--color-white);
  box-shadow: 0 8px 24px rgba(21, 101, 192, 0.35);
}
.btn--primary:hover { color: var(--color-white); box-shadow: 0 12px 32px rgba(21, 101, 192, 0.45); }
.btn--ghost {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-border);
}
.btn--ghost:hover { border-color: var(--color-accent); background: var(--color-bg-soft); }
.btn--white {
  background: var(--color-white);
  color: var(--color-primary-dark);
  box-shadow: var(--shadow-md);
}
.btn--white:hover { color: var(--color-primary); }
.btn--sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }
.btn--lg { padding: 1rem 2rem; font-size: 1rem; }
.btn--block { width: 100%; }

/* Header */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(248, 252, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition);
}
.header.is-scrolled { box-shadow: var(--shadow-sm); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}
.logo {
  flex-shrink: 0;
  text-decoration: none;
}
.logo__frame {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.65rem;
  background: linear-gradient(160deg, #0a1628 0%, #0d2137 55%, #102a4a 100%);
  border-radius: 14px;
  border: 1px solid rgba(79, 195, 247, 0.2);
  box-shadow: 0 6px 20px rgba(13, 71, 161, 0.18);
  transition: transform var(--transition), box-shadow var(--transition);
}
.logo:hover .logo__frame {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(13, 71, 161, 0.25);
}
.logo__frame img {
  display: block;
  height: 52px;
  width: auto;
  max-width: 118px;
  object-fit: contain;
}
.nav {
  display: flex;
  gap: 1.5rem;
}
.nav a {
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.9rem;
}
.nav a:hover { color: var(--color-primary); }
.header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header__phone {
  font-weight: 700;
  color: var(--color-primary-dark);
  white-space: nowrap;
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* Hero */
.hero {
  position: relative;
  z-index: 1;
  padding: calc(var(--header-h) + 3rem) 0 4rem;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.badge {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: white;
  border-radius: 999px;
}
.badge--outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-accent);
}
.hero__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-primary-dark);
  margin: 0 0 1rem;
}
.hero__subtitle {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin: 0 0 1.75rem;
  max-width: 540px;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}
.hero__note {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}
.hero-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}
.hero-card__icon { font-size: 2.5rem; margin-bottom: 0.5rem; }
.hero-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin: 0 0 1rem;
}
.hero-card__list {
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
  color: var(--color-text-muted);
}
.hero-card__list li { margin-bottom: 0.35rem; }
.hero-card__link { font-weight: 600; }

/* Trust */
.trust {
  position: relative;
  z-index: 1;
  padding: 0 0 3rem;
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.trust__item {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}
.trust__item strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
}
.trust__item span { font-size: 0.85rem; color: var(--color-text-muted); }

/* Sections */
.section {
  position: relative;
  z-index: 1;
  padding: 4rem 0;
}
.section--soft { background: var(--color-bg-soft); }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; }
.section__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}
.section__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--color-primary-dark);
  margin: 0 0 0.75rem;
}
.section__desc { color: var(--color-text-muted); margin: 0; }

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}
.service-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.service-card__icon { font-size: 2rem; display: block; margin-bottom: 0.75rem; }
.service-card__title { font-size: 1.05rem; font-weight: 700; margin: 0 0 0.5rem; color: var(--color-primary-dark); }
.service-card__desc { font-size: 0.9rem; color: var(--color-text-muted); margin: 0 0 1rem; }
.service-card__link { font-weight: 600; font-size: 0.9rem; }

/* Advantages */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.advantage {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--color-border);
}
.advantage__icon { font-size: 1.75rem; display: block; margin-bottom: 0.75rem; }
.advantage__title { font-size: 1rem; font-weight: 700; margin: 0 0 0.5rem; }
.advantage__text { font-size: 0.9rem; color: var(--color-text-muted); margin: 0; }

/* Prices */
.prices-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}
.prices-search { flex: 1; min-width: 240px; }
.prices-search input,
.prices-filter select {
  width: 100%;
  padding: 0.85rem 1.25rem;
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.prices-search input:focus,
.prices-filter select:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(41, 182, 246, 0.15);
}
.prices-filter { min-width: 280px; }
.prices-count { font-size: 0.9rem; color: var(--color-text-muted); margin-bottom: 1rem; }
.prices-table-wrap {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.prices-table {
  width: 100%;
  border-collapse: collapse;
}
.prices-table th,
.prices-table td {
  padding: 0.85rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}
.prices-table th {
  background: var(--color-bg-soft);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-primary-dark);
}
.prices-table tbody tr:hover { background: rgba(179, 229, 252, 0.2); }
.prices-table tbody tr:last-child td { border-bottom: none; }
.prices-table td:last-child {
  font-weight: 700;
  color: var(--color-primary);
  white-space: nowrap;
}
.prices-table .price-percent { color: var(--color-text-muted); font-weight: 600; }
.prices-empty {
  padding: 2rem;
  text-align: center;
  color: var(--color-text-muted);
}
.prices-note {
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-style: italic;
}

/* Promo */
.promo {
  position: relative;
  z-index: 1;
  padding: 3rem 0;
}
.promo__inner {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 50%, var(--color-accent) 100%);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  color: white;
  box-shadow: var(--shadow-lg);
}
.promo__tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(255,255,255,0.2);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.promo__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  margin: 0 0 0.75rem;
}
.promo__text { opacity: 0.9; margin: 0 0 1.5rem; max-width: 480px; margin-inline: auto; }

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
}
.step {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--color-white);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  position: relative;
}
.step__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  margin: 0 auto 0.75rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: white;
  font-weight: 800;
  border-radius: 50%;
}
.step__text { margin: 0; font-size: 0.9rem; font-weight: 600; }

/* Order */
.order-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.order-contacts { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }
.order-contacts__link { font-weight: 600; font-size: 1.05rem; }
.form {
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}
.form__hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form__field { margin-bottom: 1.25rem; }
.form__field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--color-text);
}
.form__field input,
.form__field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form__field input:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(41, 182, 246, 0.15);
}
.form__msg { margin-top: 1rem; font-size: 0.9rem; min-height: 1.4em; }
.form__msg.is-success { color: #2e7d32; }
.form__msg.is-error { color: #c62828; }
.form__privacy { font-size: 0.75rem; color: var(--color-text-muted); margin-top: 0.75rem; }

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.review {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 0;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}
.review p { margin: 0 0 1rem; font-style: italic; color: var(--color-text); }
.review footer { font-size: 0.85rem; color: var(--color-text-muted); font-weight: 600; }

/* FAQ */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq {
  background: var(--color-white);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  border: 1px solid var(--color-border);
  overflow: hidden;
}
.faq summary {
  padding: 1.25rem 1.5rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  color: var(--color-primary-dark);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  float: right;
  font-size: 1.25rem;
  color: var(--color-accent);
}
.faq[open] summary::after { content: '−'; }
.faq p {
  padding: 0 1.5rem 1.25rem;
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* Contacts */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: start;
}
.contacts-list {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
}
.contacts-list li { margin-bottom: 1rem; }
.contacts-list span {
  display: block;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 0.2rem;
}
.contacts-list a { font-weight: 600; font-size: 1.05rem; }
.contacts-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.messengers { display: flex; gap: 0.75rem; }
.messenger {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: white;
}
.messenger--max { background: linear-gradient(135deg, #005bff, #00a3ff); }
.contacts-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  min-height: 320px;
}
.contacts-map iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

/* Footer */
.footer {
  position: relative;
  z-index: 1;
  padding: 2rem 0;
  background: var(--color-primary-dark);
  color: rgba(255,255,255,0.85);
  text-align: center;
  font-size: 0.9rem;
}
.footer a { color: var(--color-accent-light); }
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.footer__inner p { margin: 0; }
.footer__logo {
  display: inline-flex;
  padding: 0.35rem 0.6rem;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__logo img {
  display: block;
  height: 40px;
  width: auto;
  opacity: 0.95;
}

/* Sticky CTA */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 99;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--color-border);
  gap: 0.75rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}
.sticky-cta__btn {
  flex: 1;
  padding: 0.85rem;
  text-align: center;
  font-weight: 700;
  border-radius: 12px;
}
.sticky-cta__btn--call {
  background: var(--color-white);
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.sticky-cta__btn--order {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: white;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: calc(var(--i, 0) * 0.08s);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay { transition-delay: 0.15s; }

/* Responsive */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { order: -1; }
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .contacts-grid { grid-template-columns: 1fr; }
  .order-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    flex-direction: column;
    background: var(--color-white);
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--color-border);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }
  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .burger { display: flex; }
  .burger.is-active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .burger.is-active span:nth-child(2) { opacity: 0; }
  .burger.is-active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .header__phone { display: none; }
  .header .btn--sm { display: none; }
  .logo__frame img { height: 44px; max-width: 100px; }
  .logo__frame { padding: 0.3rem 0.5rem; border-radius: 12px; }
  .steps { grid-template-columns: 1fr; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 70px; }
  .prices-table thead { display: none; }
  .prices-table tr {
    display: block;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--color-border);
  }
  .prices-table td {
    display: block;
    padding: 0.25rem 0;
    border: none;
  }
  .prices-table td::before {
    content: attr(data-label);
    font-size: 0.75rem;
    color: var(--color-text-muted);
    font-weight: 600;
    display: block;
  }
  .prices-table td:last-child { font-size: 1.1rem; margin-top: 0.5rem; }
}

@media (max-width: 480px) {
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
  .trust__grid { grid-template-columns: 1fr; }
  .promo__inner { padding: 2rem 1.5rem; }
}

/* Compact price block on the homepage */
.popular-prices {
  display: grid;
  gap: 0.85rem;
  max-width: 920px;
  margin: 0 auto;
}
.popular-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 1.25rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.popular-price__name {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  line-height: 1.35;
  color: var(--color-primary-dark);
}
.popular-price__category {
  margin: 0;
  font-size: 0.82rem;
  color: var(--color-text-muted);
}
.popular-price__value {
  flex-shrink: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-primary);
  white-space: nowrap;
}
.prices-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
}

/* Full price page */
.price-page-hero {
  position: relative;
  z-index: 1;
  padding: calc(var(--header-h) + 2.5rem) 0 2rem;
  text-align: center;
}
.price-page-hero .section__desc {
  max-width: 720px;
  margin-inline: auto;
}
.price-page .prices-table-wrap {
  max-height: 72vh;
  overflow: auto;
}
.price-page .prices-table-wrap.reveal {
  opacity: 1;
  transform: none;
}
.price-page .prices-toolbar {
  position: sticky;
  top: calc(var(--header-h) + 12px);
  z-index: 5;
  padding: 1rem;
  background: rgba(248, 252, 255, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.price-page .prices-table th {
  position: sticky;
  top: 0;
  z-index: 2;
}

@media (max-width: 768px) {
  .popular-price {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
  }
  .prices-actions .btn {
    width: 100%;
  }
  .price-page .prices-toolbar {
    position: static;
    padding: 0;
    background: transparent;
    box-shadow: none;
    border: none;
  }
  .price-page .prices-table-wrap {
    max-height: none;
    overflow: visible;
  }
}

/* Homepage price block: same visual style as full price page */
#prices .prices-table-wrap--home {
  max-width: 1050px;
  margin: 42px auto 0;
  overflow: hidden;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

#prices .prices-table--home {
  width: 100%;
  border-collapse: collapse;
}

#prices .prices-table--home th,
#prices .prices-table--home td {
  padding: 1rem 1.25rem;
  vertical-align: middle;
}

#prices .prices-table--home th {
  background: var(--color-bg-soft);
  color: var(--color-primary-dark);
  font-weight: 800;
  font-size: 0.9rem;
}

#prices .prices-table--home td:first-child {
  font-weight: 800;
  color: var(--color-text);
}

#prices .prices-table--home td:nth-child(2) {
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

#prices .prices-table--home td:last-child {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--color-primary);
  white-space: nowrap;
}

#prices .prices-table--home tbody tr {
  transition: background .25s ease;
}

#prices .prices-table--home tbody tr:hover {
  background: rgba(179, 229, 252, 0.22);
}

#prices .prices-actions {
  margin-top: 28px;
}

#prices .prices-note {
  max-width: 850px;
  margin: 22px auto 0;
  text-align: center;
}

@media (max-width: 768px) {
  #prices .prices-table-wrap--home {
    margin-top: 28px;
    overflow: hidden;
  }

  #prices .prices-table--home thead {
    display: none;
  }

  #prices .prices-table--home tr {
    display: block;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--color-border);
  }

  #prices .prices-table--home tr:last-child {
    border-bottom: none;
  }

  #prices .prices-table--home td {
    display: block;
    padding: 0.25rem 0;
    border: none;
  }

  #prices .prices-table--home td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 0.12rem;
    font-size: 0.72rem;
    line-height: 1.2;
    font-weight: 700;
    color: var(--color-text-muted);
  }

  #prices .prices-table--home td:first-child {
    font-size: 1rem;
  }

  #prices .prices-table--home td:last-child {
    margin-top: 0.45rem;
    font-size: 1.2rem;
  }
}
