:root {
  --ink: #111318;
  --muted: #626877;
  --soft: #f6f8fb;
  --line: #e5e8ef;
  --purple: #7c2cf2;
  --pink: #e81e73;
  --orange: #ff8a00;
  --radius: 8px;
  --gradient: linear-gradient(90deg, #7c2cf2, #e81e73, #ff8a00);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
}

* {
  box-sizing: border-box;
  cursor: default !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
summary,
[role="button"],
.btn,
.header-cta,
.brand,
.brand img,
.site-nav,
.site-nav a,
.language-switcher,
.language-switcher button,
.menu-toggle,
.hero-actions,
.section-actions {
  cursor: pointer !important;
  user-select: none;
}

input,
textarea {
  cursor: text !important;
}

button *,
a *,
.btn *,
.header-cta *,
.brand *,
.site-nav *,
.site-nav a *,
.language-switcher *,
.language-switcher button * {
  cursor: pointer !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  gap: 28px;
  align-items: center;
  min-height: 78px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(229, 232, 239, 0.7);
  backdrop-filter: blur(16px);
}

.brand img {
  display: block;
  width: 152px;
  height: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
  color: #353946;
  font-size: 16px;
  font-weight: 650;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 10px;
  border-radius: 8px;
}

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

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fff;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.primary,
.header-cta {
  border: 0;
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 14px 32px rgba(232, 30, 115, 0.22);
}

.btn:hover,
.header-cta:hover,
.language-switcher button:hover,
.menu-toggle:hover {
  transform: translateY(-2px);
}

.btn:hover,
.header-cta:hover {
  border-color: rgba(124, 44, 242, 0.3);
  box-shadow: 0 16px 34px rgba(17, 18, 26, 0.12);
}

.primary:hover,
.header-cta:hover {
  box-shadow: 0 18px 38px rgba(232, 30, 115, 0.28);
}

.btn:active,
.header-cta:active,
.language-switcher button:active,
.menu-toggle:active {
  transform: translateY(0) scale(0.98);
}

.menu-toggle {
  display: none;
}

.language-switcher {
  display: inline-flex;
  justify-self: end;
  align-self: center;
  gap: 0;
  width: max-content;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.language-switcher button {
  min-width: 36px;
  min-height: 30px;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.language-switcher button.active {
  color: #fff;
  background: var(--gradient);
}

.visitor-counter {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  justify-self: end;
  padding: 6px;
  border: 1px solid rgba(229, 232, 239, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 28px rgba(17, 19, 24, 0.06);
}

.visitor-counter[hidden] {
  display: none !important;
}

.visitor-counter span {
  display: grid;
  grid-template-rows: 24px 24px;
  align-items: start;
  justify-items: center;
  min-width: 82px;
  padding: 7px 9px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 10.5px;
  font-weight: 800;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
}

.visitor-counter strong {
  align-self: end;
  color: var(--ink);
  font-size: 20px;
  line-height: 1;
}

.visitor-counter span:first-child strong {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.protected-page .blog-page-article,
.protected-page .catalog-page-article {
  -webkit-user-select: none;
  user-select: none;
}

.protected-page img {
  -webkit-user-drag: none;
  user-drag: none;
}

.protected-page input,
.protected-page textarea,
.protected-page select {
  -webkit-user-select: text;
  user-select: text;
}

.protected-page-actions {
  display: flex;
  justify-content: flex-start;
  margin: 14px 0 22px;
}

.share-page-button {
  min-height: 40px;
  border-color: rgba(124, 44, 242, 0.24);
  color: var(--purple);
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--gradient) border-box;
}

.section {
  padding: clamp(64px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
  padding-top: 74px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 12% -12% auto auto;
  width: 58vw;
  height: 58vw;
  max-width: 760px;
  max-height: 760px;
  background:
    radial-gradient(circle at 28% 35%, rgba(124, 44, 242, 0.18), transparent 32%),
    radial-gradient(circle at 58% 45%, rgba(232, 30, 115, 0.16), transparent 28%),
    radial-gradient(circle at 76% 62%, rgba(255, 138, 0, 0.2), transparent 30%);
  filter: blur(8px);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--purple);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 99px;
  background: var(--gradient);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(48px, 7vw, 86px);
}

h2 {
  max-width: 760px;
  font-size: clamp(34px, 4.4vw, 58px);
}

h3 {
  font-size: 23px;
}

p {
  line-height: 1.7;
}

.lead {
  max-width: 690px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.hero-offer-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
  max-width: 780px;
  margin-top: 28px;
  padding: 18px 18px 18px 20px;
  border: 1px solid rgba(232, 30, 115, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(124, 44, 242, 0.1), rgba(255, 138, 0, 0.1)),
    #fff;
  box-shadow: 0 18px 52px rgba(124, 44, 242, 0.12);
}

.hero-offer-card .btn {
  width: fit-content;
}

.hero-offer-price {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--gradient) border-box;
  box-shadow: 0 10px 22px rgba(232, 30, 115, 0.2);
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
}

.hero-offer-price span {
  display: inline-block;
  background-image: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.hero-offer-content {
  display: grid;
  gap: 8px;
}

.hero-offer-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.hero-offer-content strong {
  font-size: 20px;
}

.hero-offer-content span {
  color: var(--muted);
  line-height: 1.55;
}

.audit-promo {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.promo-price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
}

.old-price {
  color: var(--muted);
  font-size: 18px;
  font-weight: 850;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--pink);
}

.new-price {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(124, 44, 242, 0.28);
  border-radius: 999px;
  background: #fff;
  background-image: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 34px;
  font-weight: 950;
  box-shadow: 0 12px 30px rgba(124, 44, 242, 0.12);
}

.promo-countdown {
  display: grid;
  gap: 8px;
  width: fit-content;
  padding: 12px;
  border: 1px solid rgba(229, 232, 239, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
}

.promo-label {
  color: var(--ink) !important;
  font-size: 13px;
  font-weight: 900;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(58px, 1fr));
  gap: 8px;
}

.countdown-unit {
  display: grid;
  justify-items: center;
  gap: 2px;
  padding: 8px 7px;
  border-radius: 8px;
  background: rgba(124, 44, 242, 0.07);
}

.countdown-unit strong {
  font-size: 22px;
  line-height: 1;
  background-image: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.countdown-unit small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.audit-promo.compact {
  margin: 14px 0;
}

.audit-promo.compact .new-price {
  font-size: 30px;
}

.audit-promo.compact .promo-countdown {
  width: 100%;
}

.page-link-btn {
  width: 100%;
  margin-top: 12px;
  border: 1px solid rgba(124, 44, 242, 0.45);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.page-link-btn:hover {
  border-color: rgba(232, 30, 115, 0.72);
  background: rgba(255, 255, 255, 0.92);
}

.secondary-actions {
  margin-top: 14px;
  justify-content: flex-end;
  max-width: 780px;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
  cursor: pointer !important;
}

.hero-visual {
  position: relative;
  min-height: 500px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(17, 19, 24, 0.11);
  overflow: hidden;
}

.search-card,
.map-card,
.metric-card {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(17, 19, 24, 0.09);
}

.search-card {
  top: 34px;
  left: 28px;
  right: 28px;
  padding: 22px;
}

.search-bar {
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 12px 18px;
  color: #343946;
}

.result-line {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  margin-top: 18px;
  align-items: center;
}

.result-icon,
.map-pin {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gradient);
}

.line-wide,
.line-mid,
.line-small {
  height: 10px;
  border-radius: 99px;
  background: #e9ecf3;
}

.line-wide {
  width: 90%;
}

.line-mid {
  width: 62%;
  margin-top: 8px;
}

.line-small {
  width: 42%;
  margin-top: 8px;
}

.map-card {
  left: 42px;
  right: 96px;
  bottom: 42px;
  min-height: 190px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(124, 44, 242, 0.06), rgba(255, 138, 0, 0.06)),
    #fff;
}

.map-grid {
  position: absolute;
  inset: 18px;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.72;
}

.map-pin {
  position: absolute;
  right: 42px;
  bottom: 44px;
  box-shadow: 0 0 0 12px rgba(255, 138, 0, 0.12);
}

.metric-card {
  right: 24px;
  top: 216px;
  width: 190px;
  padding: 18px;
}

.metric-card strong {
  display: block;
  font-size: 38px;
}

.metric-card span {
  color: var(--muted);
  font-size: 14px;
}

.soft {
  background: var(--soft);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(260px, 0.58fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 38px;
}

.section-heading p {
  color: var(--muted);
  margin: 0;
}

.section-heading-media {
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  align-items: center;
}

.section-heading-media p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 18px;
  line-height: 1.7;
}

.grid {
  display: grid;
  gap: 18px;
}

.section-image {
  position: relative;
  margin: -8px 0 28px;
  overflow: hidden;
  border: 1px solid rgba(229, 232, 239, 0.95);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 64px rgba(17, 19, 24, 0.1);
}

.section-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(124, 44, 242, 0.08), rgba(255, 138, 0, 0.05));
}

.section-image img {
  display: block;
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.section-image picture,
.about-photo picture,
.about-full-photo picture {
  display: block;
}

.section-image.wide img {
  height: clamp(260px, 34vw, 420px);
}

.hero-image {
  margin: 0;
  align-self: center;
}

.hero-image img {
  height: auto;
  max-height: 520px;
  object-fit: contain;
}

.heading-image {
  margin: 0;
}

.heading-image img {
  height: auto;
  max-height: 360px;
  object-fit: contain;
}

.process-image {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.process-image img {
  height: clamp(240px, 28vw, 360px);
}

.modal-image {
  margin: 0 0 20px;
  box-shadow: none;
}

.modal-image img {
  height: 220px;
}

.icon-mark {
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  border: 1px solid rgba(232, 30, 115, 0.22);
  border-radius: 8px;
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 12px 26px rgba(124, 44, 242, 0.16);
}

.icon-mark svg {
  width: 25px;
  height: 25px;
}

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

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

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(17, 18, 26, 0);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 380ms cubic-bezier(0.22, 1, 0.36, 1), border-color 320ms ease;
  will-change: transform, box-shadow;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 44, 242, 0.18);
  box-shadow: 0 18px 42px rgba(17, 18, 26, 0.095);
}

.reveal-item {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

.service-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.card p,
.card li {
  color: var(--muted);
}

.card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.card li {
  position: relative;
  padding-left: 24px;
  line-height: 1.55;
}

.card li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gradient);
}

.feature-card {
  min-height: 148px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature-card .icon-mark {
  margin-bottom: 28px;
}

.icon-line .icon-mark {
  width: 58px;
  height: 58px;
  margin-bottom: 26px;
  border: 0;
  color: var(--pink);
  background: transparent;
  box-shadow: none;
}

.icon-line .icon-mark svg {
  width: 42px;
  height: 42px;
  stroke: url("#askmeIconGradient");
}

.price {
  display: block;
  margin: 16px 0;
  font-size: 34px;
  font-weight: 850;
}

.featured {
  border-color: rgba(232, 30, 115, 0.52);
  box-shadow: 0 20px 60px rgba(232, 30, 115, 0.14);
}

.package-title-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.package-stamp {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(232, 30, 115, 0.42);
  border-radius: 999px;
  color: #d5166a;
  background: rgba(232, 30, 115, 0.08);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  transform: rotate(-2deg);
}

.audit-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.audit-detail-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 28px;
  margin-top: 18px;
}

.steps {
  display: grid;
  gap: 26px;
}

.snake-steps {
  position: relative;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(150px, auto));
  gap: 24px;
}

.step {
  min-height: 160px;
  text-align: center;
}

.step-1 {
  grid-column: 1 / span 2;
  grid-row: 1;
}

.step-2 {
  grid-column: 3 / span 2;
  grid-row: 1;
}

.step-3 {
  grid-column: 5 / span 2;
  grid-row: 1;
}

.step-4 {
  grid-column: 2 / span 2;
  grid-row: 2;
}

.step-5 {
  grid-column: 4 / span 2;
  grid-row: 2;
}

.step .icon-mark {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  border: 0;
  color: var(--pink);
  background: transparent;
  box-shadow: none;
}

.step .icon-mark svg {
  width: 42px;
  height: 42px;
  stroke: url("#askmeIconGradient");
}

.about-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 54px;
  align-items: center;
}

.portrait-placeholder {
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(124, 44, 242, 0.14), rgba(255, 138, 0, 0.14)),
    #fff;
  display: grid;
  place-items: center;
  color: var(--muted);
  text-align: center;
  padding: 24px;
}

.about-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 64px rgba(17, 19, 24, 0.1);
}

.about-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 800;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 36px;
}

.stack-form {
  display: grid;
  gap: 14px;
}

.stack-form label {
  display: grid;
  gap: 7px;
  color: #343946;
  font-weight: 750;
}

.stack-form input,
.stack-form textarea,
.stack-form select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 13px;
  background: #fff;
}

.stack-form textarea {
  min-height: 130px;
  resize: vertical;
}

.detailed-list {
  display: grid;
  gap: 12px;
  padding-left: 20px;
}

.detailed-list li {
  padding-left: 2px;
}

.detailed-list strong {
  display: block;
  color: var(--ink);
}

.detailed-list span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  line-height: 1.55;
}

.order-form h3 {
  margin-bottom: 4px;
}

.order-form input[readonly] {
  color: var(--muted);
  background: var(--soft);
}

.service-open {
  margin-top: auto;
}

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 22px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 19, 24, 0.48);
}

.modal-panel {
  position: relative;
  width: min(1080px, 100%);
  max-height: min(860px, calc(100vh - 44px));
  overflow: auto;
  border-radius: 8px;
  border: 1px solid rgba(232, 30, 115, 0.24);
  background:
    linear-gradient(135deg, rgba(124, 44, 242, 0.08), rgba(255, 138, 0, 0.08)),
    #fff;
  box-shadow: 0 34px 120px rgba(124, 44, 242, 0.26);
}

.modal-close {
  position: sticky;
  top: 14px;
  left: calc(100% - 54px);
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.modal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 28px;
  padding: 24px;
}

.modal-grid > div,
.modal-grid > .card {
  border: 1px solid rgba(229, 232, 239, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  padding: 24px;
}

.modal-price {
  display: inline-flex;
  width: fit-content;
  padding: 10px 16px;
  border-radius: 8px;
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 12px 28px rgba(232, 30, 115, 0.24);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer div {
  display: grid;
  gap: 4px;
}

.footer-links {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 18px !important;
  align-items: center;
  text-align: right;
}

.footer-link {
  border: 0;
  padding: 0;
  color: var(--purple);
  background: transparent;
  font-weight: 800;
  cursor: pointer !important;
}

.footer-link:hover {
  color: var(--pink);
}

.privacy-panel {
  width: min(760px, 100%);
}

.blog-panel {
  width: min(1160px, 100%);
}

.privacy-content {
  padding: 30px;
  border: 1px solid rgba(229, 232, 239, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
}

.privacy-content p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.blog-modal-content {
  padding: 30px;
}

.blog-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  cursor: pointer !important;
}

.blog-card * {
  cursor: pointer !important;
}

.blog-card h3 {
  margin-bottom: 12px;
}

.blog-card .blog-views {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--purple);
  background: rgba(124, 44, 242, 0.08);
  font-size: 13px;
  font-weight: 900;
}

.post-body {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.post-body h3,
.post-body h4 {
  margin-top: 18px;
}

.post-body p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.post-actions {
  margin-top: 28px;
}

.blog-page {
  min-height: calc(100vh - 190px);
  padding: clamp(56px, 7vw, 96px) clamp(18px, 5vw, 72px);
  background: linear-gradient(180deg, rgba(248, 249, 252, 0.92), #fff 38%);
}

.blog-page-article {
  width: min(860px, 100%);
  margin: 0 auto;
}

.blog-page-article h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(42px, 6vw, 72px);
}

.blog-page-article .lead {
  max-width: 760px;
  margin-bottom: 32px;
}

.about-full-article {
  width: min(980px, 100%);
}

.about-full-photo {
  float: left;
  width: min(360px, 100%);
  margin: 0 34px 24px 0;
  overflow: hidden;
  border: 1px solid rgba(229, 232, 239, 0.9);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 50px rgba(17, 18, 26, 0.1);
}

.about-full-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-full-page .post-body h2 {
  margin-top: 34px;
}

.about-full-page .post-body {
  display: block;
}

.about-full-page .post-body > * + * {
  margin-top: 14px;
}

.about-full-page .post-body ul {
  display: grid;
  gap: 8px;
  margin-bottom: 0;
  padding-left: 22px;
}

.about-full-article::after {
  content: "";
  display: block;
  clear: both;
}

.catalog-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 28px;
  align-items: start;
}

.catalog-page-article .price {
  display: inline-flex;
  margin: 12px 0 22px;
}

.catalog-price {
  align-items: center;
  width: fit-content;
  padding: 10px 18px;
  border-radius: 8px;
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 16px 32px rgba(124, 44, 242, 0.18);
}

.form-success {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(46, 160, 67, 0.28);
  border-radius: 8px;
  background: rgba(46, 160, 67, 0.08);
  color: #176c2e;
  font-weight: 800;
}

.form-error {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(220, 38, 38, 0.28);
  border-radius: 8px;
  background: rgba(220, 38, 38, 0.08);
  color: #991b1b;
  font-weight: 800;
}

.country-field {
  position: relative;
}

.country-combobox {
  position: relative;
  display: block;
}

.country-combobox input {
  padding-right: 46px;
}

.country-toggle {
  position: absolute;
  right: 8px;
  top: 50%;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 8px;
  background: rgba(124, 44, 242, 0.08);
  color: var(--ink);
  cursor: pointer;
  transform: translateY(-50%);
}

.country-options {
  position: absolute;
  z-index: 40;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  display: none;
  max-height: 260px;
  overflow: auto;
  padding: 6px;
  border: 1px solid rgba(229, 232, 239, 0.95);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(17, 18, 26, 0.16);
}

.country-combobox.open .country-options {
  display: grid;
}

.country-options button,
.country-empty {
  display: block;
  width: 100%;
  padding: 10px 12px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.country-options button:hover,
.country-options button:focus {
  background: rgba(124, 44, 242, 0.08);
}

.country-empty {
  color: var(--muted);
  cursor: default;
}

.blog-page-nav {
  opacity: 1;
  pointer-events: auto;
}

.language-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  min-height: 30px;
  border-radius: 6px;
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}

.language-switcher a.active {
  color: #fff;
  background: var(--gradient);
}

.blog-admin-card textarea[data-path*="body"] {
  min-height: 240px;
}

.admin-body {
  background:
    radial-gradient(circle at 12% 8%, rgba(124, 44, 242, 0.12), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(255, 138, 0, 0.12), transparent 26%),
    var(--soft);
}

.hidden {
  display: none !important;
}

.admin-shell {
  min-height: 100vh;
}

.login-panel {
  width: min(460px, calc(100% - 32px));
  margin: 8vh auto;
  padding: 34px;
  border: 1px solid rgba(229, 232, 239, 0.9);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(17, 19, 24, 0.12);
}

.login-panel img,
.admin-sidebar img {
  width: 170px;
  height: auto;
}

.admin-panel {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 100vh;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  z-index: 30;
  height: auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 24px;
  border-right: 0;
  border-bottom: 1px solid rgba(229, 232, 239, 0.82);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 44px rgba(17, 19, 24, 0.06);
  backdrop-filter: blur(16px);
}

.admin-sidebar img {
  width: 142px;
  margin: 0 18px 0 0;
}

.admin-sidebar button {
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  text-align: center;
  cursor: pointer;
  color: #343946;
  font-size: 14px;
  font-weight: 750;
}

.admin-sidebar button#logoutButton {
  margin-left: auto;
}

.admin-sidebar button.active {
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 14px 28px rgba(232, 30, 115, 0.18);
}

.admin-sidebar button:not(.active):hover {
  border-color: var(--line);
  background: #fff;
}

.admin-content {
  padding: 32px;
  max-width: 1380px;
  width: 100%;
  margin: 0 auto;
}

.admin-topbar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 24px;
  padding: 22px;
  border: 1px solid rgba(229, 232, 239, 0.82);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 52px rgba(17, 19, 24, 0.07);
}

.admin-topbar p {
  margin: 8px 0 0;
  color: var(--muted);
}

.admin-topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-language-switcher {
  display: inline-flex;
  gap: 3px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.admin-language-switcher[hidden] {
  display: none !important;
}

.admin-language-switcher button {
  min-width: 42px;
  min-height: 34px;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-weight: 900;
}

.admin-language-switcher button.active {
  color: #fff;
  background: var(--gradient);
}

.language-note {
  margin-bottom: 16px;
}

.language-note p {
  margin: 8px 0 0;
}

.editor-grid {
  display: grid;
  gap: 20px;
}

.editor-card {
  border: 1px solid rgba(229, 232, 239, 0.88);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  padding: 24px;
  box-shadow: 0 16px 46px rgba(17, 19, 24, 0.06);
}

.editor-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

.admin-form-grid .editor-card,
.editor-grid .editor-card {
  min-width: 0;
}

.editor-card h3 {
  margin-bottom: 8px;
}

.editor-card .muted {
  margin-top: 0;
}

.admin-panel label {
  display: grid;
  gap: 8px;
  color: #343946;
  font-weight: 750;
}

.admin-panel input,
.admin-panel textarea,
.admin-panel select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  background: #fff;
}

.admin-panel textarea {
  min-height: 104px;
  resize: vertical;
}

.char-counter {
  display: inline-flex;
  width: fit-content;
  margin-top: -2px;
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--muted);
  background: var(--soft);
  font-size: 12px;
  font-weight: 800;
}

.char-counter.good {
  color: #176c45;
  background: rgba(31, 164, 99, 0.1);
}

.char-counter.over {
  color: #b42318;
  background: rgba(244, 63, 94, 0.12);
}

.editor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.small-btn {
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.seo-box {
  margin: 20px 0;
  padding: 18px;
  border: 1px solid rgba(124, 44, 242, 0.16);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(124, 44, 242, 0.06), rgba(255, 138, 0, 0.06));
}

.seo-box h3,
.admin-feature-card h3 {
  margin-bottom: 8px;
}

.image-admin-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.image-admin-card {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.image-admin-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.about-photo-admin {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.about-photo-admin img {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  background: #fff;
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.contact-method {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.contact-method:last-child {
  border-bottom: 0;
}

.contact-method div {
  display: grid;
  gap: 4px;
}

.contact-method span {
  color: var(--muted);
}

.contact-action {
  min-width: 120px;
  color: #fff;
  border: 0;
}

.email-action {
  background: var(--gradient);
}

.whatsapp-action {
  background: #25d366;
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.22);
}

.telegram-action {
  background: #229ed9;
  box-shadow: 0 12px 26px rgba(34, 158, 217, 0.22);
}

.danger {
  color: #c5164c;
}

.muted {
  color: var(--muted);
}

.visit-admin-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.visit-admin-grid div {
  padding: 16px;
  border: 1px solid rgba(229, 232, 239, 0.9);
  border-radius: var(--radius);
  background: var(--soft);
}

.visit-admin-grid strong {
  display: block;
  margin-bottom: 6px;
  font-size: 28px;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.visit-admin-grid span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

@media (max-width: 940px) {
  .site-header {
    grid-template-columns: auto 1fr auto auto;
    gap: 12px;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .language-switcher {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }

  .visitor-counter {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: center;
    justify-content: center;
    width: min(100%, 520px);
    gap: 4px;
    padding: 5px;
  }

  .visitor-counter span {
    grid-template-rows: 22px 24px;
    min-width: 0;
    flex: 1 1 0;
    padding: 6px 4px;
    font-size: 9.5px;
  }

  .visitor-counter strong {
    font-size: 18px;
  }

  .menu-toggle {
    grid-column: 4;
    grid-row: 1;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-nav.open {
    display: flex;
    grid-column: 1 / -1;
    grid-row: 3;
    justify-content: center;
    gap: 6px;
    padding: 10px 0 4px;
    font-size: 17px;
    overflow-x: auto;
    white-space: nowrap;
  }

  .site-nav.open a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 12px;
    border-bottom: 0;
    flex: 0 0 auto;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    min-width: 78px;
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    line-height: 1;
  }

  .hero-grid,
  .section-heading,
  .about-grid,
  .contact-grid,
  .audit-panel,
  .audit-detail-card,
  .modal-grid,
  .section-heading-media {
    grid-template-columns: 1fr;
  }

  .heading-image img {
    max-height: 340px;
  }

  .hero-offer-card {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .hero-offer-card .btn {
    width: fit-content;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 420px;
  }

  .cards-grid,
  .service-grid,
  .pricing-grid,
  .steps:not(.snake-steps) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .snake-steps {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 18px;
  }

  .step-1,
  .step-2,
  .step-3,
  .step-4,
  .step-5 {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
    justify-self: stretch;
  }

  .admin-panel {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
    height: auto;
  }

  .image-admin-grid,
  .image-admin-card,
  .admin-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-footer,
  .footer-links {
    align-items: flex-start;
    flex-direction: column;
    text-align: left;
  }

  .contact-method {
    grid-template-columns: 1fr;
  }

  .contact-action {
    width: fit-content;
  }

  .brand img {
    width: 124px;
  }

  h1 {
    font-size: 44px;
  }

  .cards-grid,
  .service-grid,
  .pricing-grid,
  .steps:not(.snake-steps),
  .editor-row {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 360px;
  }

  .metric-card {
    right: 14px;
    width: 160px;
  }

  .map-card {
    right: 42px;
  }

  .about-full-photo {
    float: none;
    width: 100%;
    margin: 0 0 28px;
  }

  .catalog-page-grid {
    grid-template-columns: 1fr;
  }

  .countdown-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 5px;
  }

  .promo-countdown {
    width: 100%;
    padding: 9px;
  }

  .countdown-unit {
    padding: 7px 4px;
  }

  .countdown-unit strong {
    font-size: 20px;
  }

  .countdown-unit small {
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }

  .reveal-item {
    opacity: 1;
    transform: none;
  }
}
