:root {
  --bg: #ffffff;
  --bg-soft: #f5f7fa;
  --text: #1f2937;
  --muted: #6b7280;
  --blue: #2563eb;
  --green: #16a34a;
  --danger: #dc2626;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  --radius-card: 18px;
  --radius-btn: 14px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
h1, h2, h3, p { margin: 0; }

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 88px 0; }
.section-soft { background: var(--bg-soft); }

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid #e5e7eb;
  backdrop-filter: blur(12px);
}

.topbar__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand__title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand__subtitle {
  margin-top: 2px;
  font-size: 13px;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-size: 15px;
}

.nav a:hover { color: var(--blue); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 60px;
  padding: 16px 24px;
  border: 1px solid transparent;
  border-radius: var(--radius-btn);
  text-align: center;
  font-size: 17px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.28) 50%, transparent 80%);
  transform: translateX(-140%);
  transition: transform .6s ease;
  z-index: 0;
}

.btn > * {
  position: relative;
  z-index: 1;
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 34px rgba(0,0,0,0.14);
}

.btn:hover::before { transform: translateX(140%); }
.btn:active { transform: translateY(0) scale(0.985); }

.btn-primary {
  background: linear-gradient(135deg, #25d366 0%, #1ebe5d 100%);
  color: #fff;
  border-color: #25d366;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.24);
}

.btn-secondary {
  background: linear-gradient(135deg, #0095dd 0%, #007ab8 100%);
  color: #fff;
  border-color: #0088cc;
  box-shadow: 0 12px 30px rgba(0, 136, 204, 0.22);
}

.btn-max {
  background: linear-gradient(135deg, #7a68f0 0%, #5a4bd1 100%);
  color: #fff;
  border-color: #6c5ce7;
  box-shadow: 0 12px 30px rgba(108, 92, 231, 0.24);
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  text-align: left;
  line-height: 1.15;
}

.btn-icon-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  font-size: 16px;
}

.btn-icon-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.btn-icon-text strong {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.btn-icon-text span {
  font-size: 12px;
  opacity: .88;
  font-weight: 500;
}

.hero {
  padding: 56px 0 40px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}

.eyebrow,
.proof-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid #dbeafe;
  background: #eff6ff;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
}

.proof-badge {
  font-size: 13px;
  font-weight: 800;
}

h1 {
  margin-top: 18px;
  font-size: 52px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
}

h2 {
  font-size: 38px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
}

.lead {
  margin-top: 18px;
  max-width: 640px;
  font-size: 18px;
  color: var(--muted);
}

.hero-mini-cta {
  max-width: 260px;
  min-height: 52px;
  padding: 12px 16px;
  font-size: 15px;
}

.hero__actions,
.cta-band__actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
  align-items: stretch;
}

.hero__bullets {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 16px;
}

.hero-card {
  width: 100%;
  display: inline-block;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.15);
}

.hero-card__image {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(135deg, #e8f1ff 0%, #f3f4f6 100%);
}

.hero-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.25), transparent 60%);
  pointer-events: none;
}

.hero-card__caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.response-note {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #6c5ce7;
}

.trust-strip { margin-top: 24px; }

.trust-strip__grid,
.services-grid,
.steps-grid,
.metrics-grid,
.areas-grid,
.faq-grid {
  display: grid;
  gap: 22px;
}

.trust-strip__grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }
.services-grid { grid-template-columns: repeat(3, 1fr); }
.steps-grid { grid-template-columns: repeat(5, 1fr); }
.metrics-grid { grid-template-columns: repeat(3, 1fr); }
.areas-grid { grid-template-columns: repeat(4, 1fr); }
.faq-grid { grid-template-columns: repeat(2, 1fr); }

.card {
  height: 100%;
  padding: 28px;
  background: #fff;
  border: 1px solid #eef2f7;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  border-color: #e0e7ff;
}

.benefit-card,
.metric-card { text-align: center; }

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: #dbeafe;
  color: var(--blue);
  font-weight: 800;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head p {
  margin-top: 12px;
  font-size: 18px;
  color: var(--muted);
}

.services-grid .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card--mac {
  background: linear-gradient(180deg, #eef2ff 0%, #e5eef9 100%);
  border-color: #d8e1ef;
}

.service-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.service-list li::before {
  content: "•";
  display: inline-block;
  width: 16px;
  color: var(--blue);
  font-weight: 800;
}

.prices-box {
  width: 100%;
  padding: 28px;
  background: #fff;
  border: 1px solid #eef2f7;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.price-checks {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.price-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #111827;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid #e5e7eb;
  font-size: 17px;
}

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

.price-row--featured {
  margin-bottom: 8px;
  padding: 16px 18px;
  border: 1px solid #dcfce7;
  border-radius: 14px;
  background: #f0fdf4;
}

.price-note {
  margin-top: 18px;
  font-size: 15px;
  color: #4b5563;
}

.anti-trust {
  padding: 34px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid #e5eef9;
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.anti-trust__top {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 22px;
  align-items: start;
  margin-bottom: 26px;
}

.anti-trust__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  margin-bottom: 14px;
  border: 1px solid #dbeafe;
  border-radius: 999px;
  background: #eff6ff;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.anti-trust__lead {
  margin-top: 14px;
  max-width: 760px;
  font-size: 17px;
  color: var(--muted);
}

.anti-trust__proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-self: stretch;
}

.anti-proof {
  padding: 22px 18px;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid #dbeafe;
  border-radius: 22px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.anti-proof:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
  border-color: #bfdbfe;
}

.anti-proof__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
  color: #2563eb;
  font-size: 18px;
}

.anti-proof strong {
  display: block;
  margin-bottom: 8px;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #111827;
}

.anti-proof span {
  display: block;
  font-size: 14px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: #4b5563;
  font-weight: 700;
}

.anti-compare {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 76px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.anti-card {
  min-height: 100%;
  padding: 26px;
  border-radius: 24px;
  overflow: hidden;
}

.anti-card--bad {
  background: linear-gradient(180deg, #fff7f7 0%, #fff1f1 100%);
  border: 1px solid #fecaca;
}

.anti-card--good {
  background: linear-gradient(180deg, #f0fdf4 0%, #ecfdf5 100%);
  border: 1px solid #bbf7d0;
  box-shadow: 0 20px 45px rgba(22, 163, 74, 0.10);
}

.anti-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.anti-card__badge--bad {
  background: rgba(239, 68, 68, 0.10);
  color: #dc2626;
}

.anti-card__badge--good {
  background: rgba(22, 163, 74, 0.12);
  color: #15803d;
}

.anti-card__title {
  font-size: 22px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.anti-list-pro {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.anti-list-pro__item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.85);
}

.anti-list-pro__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 800;
}

.anti-list-pro__icon--bad {
  background: #fee2e2;
  color: #dc2626;
}

.anti-list-pro__icon--good {
  background: #dcfce7;
  color: #16a34a;
}

.anti-list-pro__text strong {
  display: block;
  font-size: 15px;
  color: #111827;
}

.anti-vs {
  display: flex;
  align-items: center;
  justify-content: center;
}

.anti-vs__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border: 4px solid #fff;
  border-radius: 999px;
  background: linear-gradient(135deg, #111827 0%, #374151 100%);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.anti-cta-pro {
  margin-top: 20px;
  padding: 18px;
  border: 1px solid #d1fae5;
  border-radius: 18px;
  background: rgba(255,255,255,0.84);
}

.anti-cta-pro strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
  color: #111827;
}

.anti-cta-pro p {
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--muted);
}

.anti-cta-pro__meta {
  margin-top: 10px;
  font-size: 13px;
  text-align: center;
  color: #6b7280;
}

.steps-grid .card { padding: 24px; }

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
}

.reviews-carousel {
  position: relative;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 22px;
  width: max-content;
  padding-bottom: 8px;
  animation: reviewsScroll 60s linear infinite;
}

.reviews-carousel:hover .reviews-track {
  animation-play-state: paused;
}

.review-card {
  width: calc((1200px - 44px) / 3);
  min-width: 340px;
  max-width: 380px;
}

.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.review-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border-radius: 999px;
  overflow: hidden;
  font-weight: 700;
}

.initials-avatar {
  background: #dbeafe;
  color: var(--blue);
}

.review-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.review-meta {
  margin-top: 4px;
  font-size: 14px;
  color: var(--muted);
}

.review-stars {
  margin-bottom: 12px;
  color: #f59e0b;
  font-size: 18px;
  letter-spacing: 2px;
}

.trust-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 26px;
  align-items: stretch;
}

.trust-photo {
  min-height: 420px;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(135deg, #e8f1ff 0%, #f3f4f6 100%);
}

.trust-photo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  width: 100%;
  height: 100%;
  padding: 24px;
  text-align: center;
  color: var(--muted);
}

.trust-photo-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(6px);
}

.metric-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 170px;
  padding: 26px 22px;
}

.metric-card__value {
  margin-bottom: 10px;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--blue);
  font-weight: 800;
}

.metric-card__label {
  max-width: 180px;
  text-align: center;
  font-size: 16px;
  line-height: 1.35;
  color: var(--muted);
  font-weight: 600;
}

.faq-question {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
}

.faq-answer {
  color: var(--muted);
  font-size: 15px;
}

.cta-band {
  display: grid;
  gap: 20px;
  width: 100%;
  padding: 44px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 28px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  box-shadow: 0 25px 70px rgba(15, 23, 42, 0.35);
  color: #ffffff;
}

.cta-band h2 {
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.cta-band p {
  margin-top: 10px;
  max-width: 760px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
}

.phone-link {
  color: #2563eb;
  font-weight: 700;
}

.phone-shake {
  display: inline-block;
  transform-origin: center;
  animation: phoneShake 1.6s infinite;
}

.footer {
  padding: 28px 0 40px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
}

.footer-links a {
  color: var(--blue);
}

#leadForm {
  display: grid;
  gap: 12px;
  max-width: 560px;
  margin-top: 18px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  box-shadow: 0 14px 36px rgba(15,23,42,0.08);
  transition: transform .28s ease, box-shadow .28s ease;
}

#leadForm:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(15,23,42,0.12);
}

.lead-form__eyebrow {
  margin-bottom: 2px;
  font-size: 12px;
  color: #2563eb;
  font-weight: 700;
}

.lead-form__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.lead-form__title {
  margin: 0 0 8px;
  font-size: 26px;
  font-weight: 800;
}

.lead-form__desc {
  margin: 0;
  font-size: 15px;
  color: #6b7280;
}

.online-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-size: 13px;
  color: #16a34a;
  font-weight: 600;
}

.dot-live {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #16a34a;
  animation: pulse-dot 2s infinite;
}

.phone-field {
  display: flex;
  align-items: center;
  height: 54px;
  overflow: hidden;
  border: 1px solid #dbe1ea;
  border-radius: 12px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.phone-field:focus-within {
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37,99,235,0.12);
}

.phone-field__prefix {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 100%;
  padding: 0 10px;
  background: #f9fafb;
  border-right: 1px solid #e5e7eb;
  font-size: 14px;
}

.phone-field input {
  flex: 1;
  height: 100%;
  border: none;
  padding: 0 12px;
  outline: none;
  font-size: 16px;
  font-weight: 600;
}

.form-error {
  display: none;
  margin-top: -2px;
  font-size: 13px;
  color: var(--danger);
  font-weight: 600;
}

.form-error.is-visible { display: block; }

.form-note,
.form-legal {
  text-align: center;
}

.form-note {
  font-size: 13px;
  color: #6b7280;
}

.form-legal {
  font-size: 12px;
  line-height: 1.4;
  color: #9ca3af;
}

.form-legal a {
  color: var(--blue);
  text-decoration: underline;
}

.section-intro-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.center-note {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

.center-text {
  text-align: center;
  font-size: 14px;
  color: #6b7280;
}

@keyframes phoneShake {
  0%, 100% { transform: rotate(0deg); }
  10% { transform: rotate(-15deg); }
  20% { transform: rotate(15deg); }
  30% { transform: rotate(-12deg); }
  40% { transform: rotate(12deg); }
  50% { transform: rotate(-8deg); }
  60% { transform: rotate(8deg); }
  70% { transform: rotate(-4deg); }
  80% { transform: rotate(4deg); }
  90% { transform: rotate(0deg); }
}

@keyframes pulse-wa {
  0%, 100% { transform: scale(1); box-shadow: var(--shadow); }
  20% { transform: scale(1.06); box-shadow: 0 18px 48px rgba(37, 211, 102, 0.45), 0 0 0 14px rgba(37, 211, 102, 0.22); }
  33%, 99% { transform: scale(1); box-shadow: var(--shadow); }
}

@keyframes pulse-tg {
  0%, 33%, 100% { transform: scale(1); box-shadow: var(--shadow); }
  53% { transform: scale(1.06); box-shadow: 0 18px 48px rgba(0, 136, 204, 0.45), 0 0 0 14px rgba(0, 136, 204, 0.22); }
  66%, 99% { transform: scale(1); box-shadow: var(--shadow); }
}

@keyframes pulse-max {
  0%, 66%, 100% { transform: scale(1); box-shadow: var(--shadow); }
  86% { transform: scale(1.08); box-shadow: 0 20px 54px rgba(108, 92, 231, 0.55), 0 0 0 16px rgba(108, 92, 231, 0.28); }
  99% { transform: scale(1); box-shadow: var(--shadow); }
}

@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(22,163,74,0.38); }
  70% { box-shadow: 0 0 0 8px rgba(22,163,74,0); }
  100% { box-shadow: 0 0 0 0 rgba(22,163,74,0); }
}

@keyframes reviewsScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 11px)); }
}

.pulse-wa { animation: pulse-wa 3.6s infinite; }
.pulse-tg { animation: pulse-tg 3.6s infinite; }
.pulse-max { animation: pulse-max 3.6s infinite; }

@media (max-width: 1100px) {
  .hero__grid,
  .anti-trust__top {
    grid-template-columns: 1fr;
  }

  .anti-trust__proof,
  .trust-grid,
  .services-grid,
  .trust-strip__grid,
  .steps-grid,
  .metrics-grid,
  .areas-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .anti-compare {
    grid-template-columns: 1fr;
  }

  .anti-vs__pill {
    width: 62px;
    height: 62px;
    font-size: 16px;
  }

  .hero-card__image { height: 380px; }
}

@media (max-width: 860px) {
  .nav { display: none; }

  .trust-grid,
  .services-grid,
  .trust-strip__grid,
  .steps-grid,
  .metrics-grid,
  .anti-trust__proof,
  .areas-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero__actions,
  .cta-band__actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .review-card {
    width: min(86vw, 360px);
    min-width: min(86vw, 360px);
    max-width: min(86vw, 360px);
  }

  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }
  .lead, .section-head p { font-size: 16px; }
  .section { padding: 56px 0; }
  .hero { padding: 34px 0 22px; }
  .hero-card__image { min-height: 280px; height: 320px; }
  .trust-photo, .trust-photo-wrap { min-height: 260px; }
  .cta-band { padding: 28px; }
  #leadForm { max-width: 100%; }
}

@media (max-width: 560px) {
  .container { padding: 0 16px; }
  .card, .prices-box, .anti-trust { padding: 22px; }
  .hero__actions,
  .cta-band__actions { grid-template-columns: 1fr; }
  .price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    font-size: 15px;
  }
  h1 { font-size: 30px; line-height: 1.12; }
  .hero-card__image { min-height: 240px; height: 240px; }
  .btn { padding: 15px 18px; font-size: 16px; }
  .btn-icon-text strong { font-size: 15px; }
  .btn-icon-text span { font-size: 11px; }
  .footer { padding-bottom: 32px; }
  .response-note { font-size: 13px; }
  .lead-form__title { font-size: 22px; }
}