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

:root {
  --c-bg: #f4f6f9;
  --c-text: #1f2933;
  --c-text-2: #52606d;
  --c-text-3: #78909c;
  --c-dark: #0f2027;
  --c-dark-2: #203a43;
  --c-dark-3: #2c5364;
  --c-green: #22c55e;
  --c-green-dark: #16a34a;
  --c-green-deep: #14532d;
  --c-card: #ffffff;
  --c-border: #e2e8f0;
  --c-divider: #eef2f6;
  --c-star: #f59e0b;
  --c-danger: #b91c1c;
  --c-danger-bg: #fee2e2;
  --c-track: #cbd5e0;
  --radius: 8px;
  --radius-lg: 14px;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 20px rgba(0, 0, 0, 0.12);
  --font-head: 'Manrope', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Inter', 'Segoe UI', Arial, sans-serif;
  --ease: 0.2s ease;
}

body {
  font-family: var(--font-body);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.5;
}

:is(a, button, input, select, textarea, summary, .card-link, label):focus-visible {
  outline: 3px solid var(--c-green);
  outline-offset: 2px;
  border-radius: 4px;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.narrow {
  max-width: 640px;
}

.header {
  background: linear-gradient(135deg, var(--c-dark), var(--c-dark-2), var(--c-dark-3));
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
}

.logo {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  font-family: var(--font-head);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
}

.logo-org {
  margin-left: 47px;
  font-size: 11px;
  color: #9fb3c2;
  letter-spacing: 0.8px;
  font-weight: 600;
}

.header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.header-city {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
}

.logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--c-green), var(--c-green-dark));
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  box-shadow: 0 2px 6px rgba(34, 197, 94, 0.4);
}

.logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex: 0 0 auto;
}

.logo-text {
  letter-spacing: 0.5px;
}

.accent {
  color: #22c55e;
}

.hero-tagline {
  letter-spacing: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #22c55e;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.nav a {
  color: #cfd8dc;
  text-decoration: none;
  margin-left: 18px;
  font-size: 15px;
}

.nav a:hover {
  color: #fff;
}

main {
  min-height: 70vh;
}

.hero {
  background: linear-gradient(135deg, #2c5364, #203a43, #0f2027);
  color: #fff;
  padding: 70px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 34px;
  margin-bottom: 14px;
  font-family: var(--font-head);
}

.hero p {
  font-size: 18px;
  color: #cfd8dc;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-body);
  text-decoration: none;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease);
}

.btn-lg {
  padding: 15px 32px;
  font-size: 18px;
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.35);
}

.btn-primary {
  background: var(--c-green);
  color: #fff;
}

.btn-primary:hover {
  background: var(--c-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(34, 197, 94, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.section-title {
  text-align: center;
  margin: 40px 0 24px;
  font-size: 26px;
  font-family: var(--font-head);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.card {
  background: var(--c-card);
  border-radius: 10px;
  padding: 24px 18px;
  text-align: center;
  box-shadow: var(--shadow);
  font-size: 34px;
  display: flex;
  flex-direction: column;
  animation: rise 0.4s var(--ease) both;
}

.card h3 {
  font-size: 17px;
  margin: 10px 0 6px;
  font-family: var(--font-head);
}

.card p {
  font-size: 14px;
  color: var(--c-text-2);
  flex: 1;
}

.card-icon {
  display: inline-flex;
  color: var(--c-green-dark);
}

.card-icon svg {
  width: 42px;
  height: 42px;
  margin: 0 auto;
}

.card-link {
  color: inherit;
  text-decoration: none;
  transition: transform var(--ease), box-shadow var(--ease);
}

.card-link:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-more {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--c-green-dark);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.step {
  background: var(--c-card);
  border-radius: 10px;
  padding: 20px;
  box-shadow: var(--shadow);
  position: relative;
  animation: rise 0.4s var(--ease) both;
}

.step span {
  display: inline-block;
  background: var(--c-green);
  color: #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 10px;
}

.cases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-bottom: 40px;
}

.gallery figure {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--c-card);
  animation: rise 0.4s var(--ease) both;
}

.gallery img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s var(--ease);
  cursor: zoom-in;
}

.gallery figure:hover img {
  transform: scale(1.02);
}

.gallery figcaption {
  padding: 10px 12px;
  font-size: 13px;
  color: var(--c-text-soft);
  text-align: center;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(9, 14, 30, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s var(--ease), visibility 0.25s var(--ease);
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 100%;
  max-height: 92vh;
  width: auto;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s var(--ease);
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.28);
}

.lightbox-caption {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 90%;
  color: #fff;
  font-size: 14px;
  text-align: center;
  background: rgba(0,0,0,0.45);
  padding: 8px 16px;
  border-radius: 999px;
}

.case {
  background: var(--c-card);
  border-radius: 10px;
  padding: 20px;
  box-shadow: var(--shadow);
  animation: rise 0.4s var(--ease) both;
}

.case-photo {
  background: linear-gradient(135deg, var(--c-dark-3), var(--c-dark));
  border-radius: var(--radius);
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  margin-bottom: 14px;
}

.case h3 {
  font-size: 16px;
  margin-bottom: 8px;
  font-family: var(--font-head);
}

.case p {
  font-size: 14px;
  color: #52606d;
  margin-bottom: 10px;
}

.case-price {
  font-weight: 700;
  color: #16a34a;
  font-size: 15px;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.review-cta-box {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border: 1px solid #bbf7d0;
  border-radius: 14px;
  padding: 20px 24px;
}

.review-cta-title {
  font-size: 20px;
  font-weight: 700;
  color: #14532d;
  display: block;
  margin-bottom: 4px;
}

.review-cta-text {
  margin: 0;
  color: #166534;
  font-size: 14px;
}

.field-hint {
  font-weight: 400;
  font-size: 12px;
  color: #78909c;
}

.mod-title {
  font-size: 18px;
  margin: 18px 0 12px;
  color: #1f2933;
}

.mod-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 12px;
}

.mod-stars {
  color: #f59e0b;
  font-size: 16px;
  margin-bottom: 6px;
}

.mod-item p {
  margin: 0 0 6px;
  font-size: 14px;
  color: #1f2933;
}

.mod-name {
  font-size: 12px;
  color: #52606d;
}

.mod-actions {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.mod-actions .btn {
  padding: 7px 14px;
  font-size: 13px;
}

.review {
  background: var(--c-card);
  border-radius: 10px;
  padding: 20px;
  box-shadow: var(--shadow);
  animation: rise 0.4s var(--ease) both;
}

.review-stars {
  color: var(--c-star);
  font-size: 18px;
  margin-bottom: 8px;
}

.review p {
  font-size: 14px;
  color: var(--c-text);
  margin-bottom: 12px;
}

.review-name {
  font-size: 13px;
  color: var(--c-text-2);
}

.seo-block {
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  margin-bottom: 40px;
}

.seo-block p {
  margin-bottom: 12px;
  color: #52606d;
  font-size: 15px;
}

.cta {
  background: #fff;
  border-radius: 12px;
  padding: 36px 24px;
  text-align: center;
  margin-bottom: 50px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.cta h2 {
  margin-bottom: 8px;
}

.cta p {
  color: #52606d;
  margin-bottom: 18px;
}

.calc {
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.calc label {
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.calc label.consent-row {
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 14px;
}

.calc label.consent-row input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.calc label.consent-row a {
  color: #16a34a;
  text-decoration: underline;
}

.calc select,
.calc input,
.calc textarea {
  padding: 11px 12px;
  border: 1px solid #cbd5e0;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
}

.calc select:focus,
.calc input:focus,
.calc textarea:focus {
  outline: none;
  border-color: #22c55e;
}

.calc-result {
  text-align: center;
  border-top: 1px solid #e2e8f0;
  padding-top: 20px;
}

.price {
  font-size: 30px;
  font-weight: 800;
  color: #16a34a;
  margin: 8px 0 14px;
}

.hint {
  color: #52606d;
  font-size: 13px;
  text-align: center;
  margin-top: 4px;
}

.alert {
  background: #fee2e2;
  color: #b91c1c;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 16px;
}

.order-info p {
  margin-bottom: 8px;
}

.order-info h2 {
  margin: 18px 0 8px;
  font-size: 18px;
}

.order-info ul {
  margin: 0 0 8px 20px;
  padding: 0;
}

.order-info li {
  margin-bottom: 4px;
}

.status-box {
  text-align: center;
  border-top: 1px solid #e2e8f0;
  padding-top: 18px;
}

.quote-box {
  text-align: center;
  border-top: 1px solid #e2e8f0;
  padding-top: 18px;
  margin-top: 16px;
}

.quote-price {
  color: #1d4ed8;
}

.quote-pending {
  border: 1px dashed #f59e0b;
  border-radius: 10px;
  padding: 14px;
  background: #fffbeb;
  color: #b45309;
}

.hint-inline {
  font-weight: 400;
  color: #52606d;
  font-size: 13px;
}

.quote-cta {
  margin-top: 24px;
  text-align: center;
  padding: 20px;
  border: 1px dashed #3b82f6;
  border-radius: 10px;
  background: #eff6ff;
}

.map-placeholder {
  background: #e2e8f0;
  border-radius: 10px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #52606d;
  font-size: 18px;
}

.map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
}

.service-hero {
  background: linear-gradient(135deg, #2c5364, #203a43, #0f2027);
  color: #fff;
  padding: 50px 20px;
  text-align: center;
}

.service-hero-emoji {
  font-size: 54px;
  margin-bottom: 12px;
  color: #22c55e;
  display: inline-flex;
  justify-content: center;
}

.service-hero-emoji svg {
  width: 54px;
  height: 54px;
}

.service-hero h1 {
  font-size: 32px;
  margin-bottom: 14px;
}

.service-hero p {
  font-size: 17px;
  color: #cfd8dc;
  max-width: 760px;
  margin: 0 auto 26px;
}

.price-table {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  margin-bottom: 8px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 22px;
  border-bottom: 1px solid #eef2f6;
}

.price-row:last-child {
  border-bottom: none;
}

.price-row-name {
  font-size: 15px;
  font-weight: 600;
}

.price-row-value {
  font-size: 17px;
  font-weight: 800;
  color: #16a34a;
  white-space: nowrap;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.chip {
  background: #e8f5ee;
  color: #14532d;
  border: 1px solid #a7f3d0;
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 14px;
}

.symptoms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.symptom {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.symptom h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.symptom p {
  font-size: 14px;
  color: #52606d;
}

.faq {
  margin-bottom: 40px;
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-item summary {
  padding: 16px 20px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  list-style-position: inside;
}

.faq-item summary:hover {
  background: #f8fafc;
}

.faq-item p {
  padding: 0 20px 16px;
  font-size: 14px;
  color: #52606d;
}

.tips {
  list-style: none;
  margin-bottom: 40px;
  counter-reset: tips;
}

.tips li {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 14px 18px 14px 46px;
  margin-bottom: 10px;
  font-size: 15px;
  position: relative;
}

.tips li::before {
  counter-increment: tips;
  content: counter(tips);
  position: absolute;
  left: 16px;
  top: 14px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #22c55e;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  line-height: 22px;
}

.step h3 {
  font-size: 15px;
  margin: 4px 0 6px;
}

.step small {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  color: #16a34a;
  font-weight: 700;
}

.footer {
  background: #0f2027;
  color: #cfd8dc;
  padding: 24px 0;
  text-align: center;
  font-size: 14px;
}

.footer p {
  margin-bottom: 4px;
}

.footer-btn {
  background: transparent;
  color: #22c55e;
  border: 1px solid #22c55e;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 13px;
  cursor: pointer;
}

.footer-btn:hover {
  background: rgba(34, 197, 94, 0.15);
}

.calc-contact {
  margin-top: 20px;
}

.footer-note {
  margin-top: 10px;
  font-size: 12px;
  color: #b6c2cb;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.footer-dev {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
  color: #a9b7c0;
}

.promo-banner {
  margin-top: 28px;
}

.apply-highlight {
  margin-top: 28px;
}

.apply-highlight-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, #14532d, #166534 60%, #15803d);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 26px 28px;
  box-shadow: 0 8px 24px rgba(20, 83, 45, 0.35);
}

.apply-highlight-icon {
  font-size: 42px;
  line-height: 1;
}

.apply-highlight-text {
  flex: 1;
  min-width: 220px;
}

.apply-highlight-text h3 {
  margin: 0 0 6px;
  font-size: 22px;
  color: #fff;
}

.promo-badge {
  display: inline-block;
  background: #f59e0b;
  color: #1f2937;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}

.promo-note {
  margin: 12px 0;
  padding: 10px 14px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
  color: #7c2d12;
}

.promo-note strong {
  color: #431407;
}

.apply-highlight-text p {
  margin: 0;
  color: #dcfce7;
}

.promo-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, #0f2027, #1c3a45);
  border: 1px solid rgba(34, 197, 94, 0.35);
  border-radius: 14px;
  padding: 20px 24px;
}

.promo-icon {
  font-size: 36px;
  line-height: 1;
}

.promo-text {
  flex: 1;
  min-width: 220px;
}

.promo-text h3 {
  margin: 0 0 6px;
  font-size: 20px;
  color: #fff;
}

.promo-text p {
  margin: 0;
  color: #cfd8dc;
}

.promo-banner.promo-discount {
  margin-top: 28px;
}

.promo-discount .promo-inner {
  background: linear-gradient(135deg, #14532d, #166534);
  border-color: rgba(255, 255, 255, 0.2);
}

.footer-reveal {
  font-weight: 700;
}

.footer-reveal a {
  color: #22c55e;
  text-decoration: none;
}

.footer-reveal a:hover {
  text-decoration: underline;
}

.footer-link {
  color: #cfd8dc;
  text-decoration: none;
  border-bottom: 1px dotted #5a6b72;
}

.footer-link:hover {
  color: #fff;
}

.hidden {
  display: none;
}

.breadcrumbs {
  font-size: 13px;
  color: #78909c;
  margin-bottom: 16px;
}

.breadcrumbs a {
  color: #22c55e;
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.article-page h1 {
  font-size: 30px;
  margin: 0 0 12px;
}

.article-intro {
  font-size: 17px;
  color: #455a64;
  margin-bottom: 20px;
}

.article-page p {
  line-height: 1.65;
}

.article-cta {
  margin-top: 26px;
  padding: 20px 24px;
  background: #f1f8f4;
  border: 1px solid #d4e8dc;
  border-radius: 14px;
}

.article-cta p {
  margin: 0 0 14px;
  font-size: 17px;
}

.inline-link {
  color: #22c55e;
  text-decoration: none;
  border-bottom: 1px dotted #22c55e;
}

.inline-link:hover {
  text-decoration: none;
  border-bottom: 1px solid #22c55e;
}

.ba-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 8px;
}

.ba-slider {
  position: relative;
  width: 100%;
  height: 250px;
  border-radius: 14px;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(34, 197, 94, 0.25);
  user-select: none;
  background: #0f2027;
}

.ba-after,
.ba-before {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.ba-after {
  background: linear-gradient(160deg, #14532d, #166534 55%, #0f2027);
}

.ba-before {
  right: auto;
  width: 50%;
  background: linear-gradient(160deg, #3b0a17, #7f1d1d 55%, #0f2027);
  border-right: 2px solid #fff;
}

.ba-device {
  font-size: 56px;
  line-height: 1;
}

.ba-slider figcaption {
  color: #e2e8f0;
  font-size: 13px;
  text-align: center;
  padding: 0 8px;
}

.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  z-index: 2;
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 36px;
  height: 36px;
  margin-top: -18px;
  margin-left: -18px;
  background: #fff;
  border: 2px solid #22c55e;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  z-index: 3;
  pointer-events: none;
}

.ba-handle::after {
  content: "⇄";
  display: block;
  text-align: center;
  line-height: 32px;
  color: #14532d;
  font-size: 16px;
  font-weight: 700;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1000;
  max-width: 560px;
  margin: 0 auto;
  background: #0f2027;
  color: #e2e8f0;
  border: 1px solid rgba(34, 197, 94, 0.35);
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  display: none;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-banner.visible {
  display: flex;
}

.cookie-banner p {
  margin: 0;
  flex: 1;
  min-width: 220px;
}

.cookie-banner a {
  color: #22c55e;
  text-decoration: underline;
}

.cookie-banner-btn {
  flex: 0 0 auto;
  padding: 8px 18px;
}

/* Нижняя панель быстрых действий — только на мобильных */
.mobbar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 900;
  background: #0f2027;
  border-top: 1px solid rgba(34, 197, 94, 0.35);
  padding: 8px max(10px, env(safe-area-inset-right)) calc(8px + env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left));
}

.mobbar-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 8px 6px;
  border-radius: var(--radius);
  color: #e2e8f0;
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
}

.mobbar-btn span {
  font-size: 12px;
}

.mobbar-btn:active {
  background: rgba(34, 197, 94, 0.2);
}

.mobbar-btn-primary {
  background: var(--c-green);
  color: #fff;
}

.mobbar-btn-primary:active {
  background: var(--c-green-dark);
}

@media (max-width: 640px) {
  .header-inner {
    flex-direction: column;
    gap: 8px;
  }
  .header-right {
    align-items: center;
  }
  .nav a {
    margin: 0 8px;
  }
  .hero h1 {
    font-size: 26px;
  }
  .article-page h1 {
    font-size: 24px;
  }
  .review-cta-box {
    flex-direction: column;
    text-align: center;
  }
  .apply-highlight-inner {
    flex-direction: column;
    text-align: center;
  }
  .mobbar {
    display: flex;
    gap: 8px;
  }
  .cookie-banner {
    bottom: calc(84px + env(safe-area-inset-bottom));
  }
  main,
  .footer {
    padding-bottom: 4px;
  }
}

@media (max-width: 1024px) {
  .container {
    padding: 0 18px;
  }
  .hero {
    padding: 50px 18px;
  }
  .hero h1 {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .hero p {
    font-size: 16px;
  }
  .review-cta-box,
  .apply-highlight-inner {
    padding: 18px;
  }
  .section-title {
    font-size: 23px;
    margin: 32px 0 20px;
  }
  .case-photo {
    height: 105px;
  }
}

/* ===== Визуальные улучшения (02.09.2026) ===== */

/* Акцентное слово в hero */
.hero-accent {
  position: relative;
  display: inline-block;
  color: var(--c-green);
}

/* Источник "живого" свечения за акцентным словом */
.hero-accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--c-green), transparent);
  filter: blur(2px);
  opacity: 0.55;
}

/* Блок цифр/преимуществ */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
  margin: 0 0 40px;
}

.stat {
  background: var(--c-card);
  border-radius: 12px;
  padding: 22px 16px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--c-green);
  transition: transform var(--ease), box-shadow var(--ease);
}

.stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.stat-num {
  font-size: 32px;
  font-weight: 800;
  font-family: var(--font-head);
  color: var(--c-green-dark);
  line-height: 1.1;
}

.stat-label {
  margin-top: 6px;
  font-size: 13px;
  color: var(--c-text-2);
}

/* Статус "открыто/закрыто" */
.open-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-card);
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-text);
  box-shadow: var(--shadow);
  margin: 14px 0 4px;
}

.open-status .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--c-green);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2);
  animation: pulse 2s infinite;
}

.open-status.closed .dot {
  background: var(--c-danger);
  box-shadow: 0 0 0 4px rgba(185, 28, 28, 0.2);
  animation: none;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}

/* Анимация появления при скролле */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Улучшенные карточки услуг */
.cards .card {
  position: relative;
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease);
}

.cards .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--c-green), var(--c-green-deep));
  opacity: 0;
  transition: opacity var(--ease);
}

.cards .card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.cards .card:hover::before {
  opacity: 1;
}

.cards .card .card-icon,
.cards .card h3 {
  transition: transform var(--ease);
}

.cards .card:hover .card-more {
  color: var(--c-green-deep);
}
