/* wd-alt — запасной уникальный дизайн страниц разработки сайтов */

body.wd-alt-page {
  background: #06080f;
}

body.wd-alt-page .site-content-wrapper {
  background: #06080f;
}

.wd-alt-page .site-content-fullwidth {
  padding: 0;
  max-width: none;
  background: #06080f;
}

.wd-alt-page .b24-entry.entry-content,
.wd-alt-page .entry-content {
  padding: 0;
  margin: 0;
  max-width: none;
  background: transparent;
}

/* style.css даёт .entry-content > * padding 20px — снимаем для full-bleed */
.wd-alt-page .site-content-fullwidth .entry-content > *,
.wd-alt-page .site-content-fullwidth .b24-entry.entry-content > * {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}

.wd-alt {
  --wd-bg: #06080f;
  --wd-surface: #0f1219;
  --wd-surface-2: #161b26;
  --wd-text: #e8edf5;
  --wd-muted: #8b95a8;
  --wd-line: rgba(255, 255, 255, 0.08);
  --wd-cyan: #38bdf8;
  --wd-violet: #a78bfa;
  --wd-mint: #34d399;
  --wd-wrap: min(1180px, calc(100% - 40px));
  color: var(--wd-text);
  font-family: 'Inter', system-ui, sans-serif;
  overflow-x: hidden;
}

.wd-alt-wrap {
  width: var(--wd-wrap);
  margin: 0 auto;
}

/* ─── HERO ─── */
.wd-alt-hero {
  position: relative;
  min-height: clamp(640px, 92vh, 900px);
  padding: calc(72px + 2rem) 0 0;
  background: var(--wd-bg);
  overflow: hidden;
}

.wd-alt-hero__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 20%, rgba(56, 189, 248, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 80% 30%, rgba(167, 139, 250, 0.14), transparent 50%),
    radial-gradient(ellipse 50% 60% at 50% 100%, rgba(52, 211, 153, 0.08), transparent 55%);
  animation: wdMesh 12s ease-in-out infinite alternate;
}

@keyframes wdMesh {
  0% { opacity: 0.85; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}

.wd-alt-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: wdFloat 8s ease-in-out infinite;
}

.wd-alt-hero__orb--1 {
  width: 320px;
  height: 320px;
  top: 10%;
  right: 5%;
  background: rgba(56, 189, 248, 0.25);
}

.wd-alt-hero__orb--2 {
  width: 260px;
  height: 260px;
  bottom: 20%;
  left: -5%;
  background: rgba(167, 139, 250, 0.2);
  animation-delay: -3s;
}

@keyframes wdFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -24px); }
}

.wd-alt-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 85%);
}

.wd-alt-hero__inner {
  position: relative;
  z-index: 2;
  width: var(--wd-wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 80px;
}

.wd-alt-crumb {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--wd-muted);
  margin-bottom: 20px;
}

.wd-alt-crumb a {
  color: var(--wd-muted) !important;
  text-decoration: none;
}

.wd-alt-crumb a:hover { color: var(--wd-cyan) !important; }

.wd-alt-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--wd-line);
  background: rgba(255, 255, 255, 0.04);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wd-cyan);
}

.wd-alt-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--wd-mint);
  box-shadow: 0 0 12px var(--wd-mint);
  animation: wdPulse 2s ease infinite;
}

@keyframes wdPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.wd-alt-hero__h1 {
  margin: 0 0 16px;
  font-size: clamp(1.75rem, 4.2vw, 3rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fff 0%, #c7d2fe 55%, #67e8f9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: wdTitleIn 1s ease both;
}

@keyframes wdTitleIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}

.wd-alt-hero__lead {
  margin: 0 0 20px;
  max-width: 540px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--wd-muted);
}

.wd-alt-hero__rating { margin-bottom: 20px; }

.wd-alt-hero__perks {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.wd-alt-hero__perks li {
  padding: 8px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--wd-line);
  font-size: 13px;
  font-weight: 600;
  color: var(--wd-muted);
}

.wd-alt-hero__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.wd-alt-hero__nav a {
  padding: 10px 18px;
  border-radius: 12px;
  border: 1px solid var(--wd-line);
  color: var(--wd-text) !important;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none !important;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.wd-alt-hero__nav a:hover {
  border-color: var(--wd-cyan);
  background: rgba(56, 189, 248, 0.08);
  transform: translateY(-2px);
}

.wd-alt-hero__contacts .b24-phones-row { margin-bottom: 16px; }
.wd-alt-hero__contacts .b24-messengers-label { font-size: 11px; color: var(--wd-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; }

/* Slider */
.wd-alt-hero__stage {
  position: relative;
  min-height: 380px;
}

.wd-alt-hero__slides {
  position: relative;
  height: 340px;
}

.wd-alt-slide {
  position: absolute;
  inset: 0;
  padding: 36px 32px;
  border-radius: 28px;
  border: 1px solid var(--wd-line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  transform: translateX(40px) scale(0.96);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  overflow: hidden;
}

.wd-alt-slide.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.wd-alt-slide__glow {
  position: absolute;
  top: -40%;
  right: -20%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: var(--slide-accent, var(--wd-cyan));
  opacity: 0.2;
  filter: blur(60px);
}

.wd-alt-slide__tag {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 14px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--slide-accent) 20%, transparent);
  color: var(--slide-accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.wd-alt-slide__title {
  margin: 0 0 12px;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
}

.wd-alt-slide__price {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--slide-accent);
}

.wd-alt-slide__note {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--wd-muted);
  max-width: 28ch;
}

.wd-alt-hero__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.wd-alt-hero__arrow {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--wd-line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--wd-text);
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.wd-alt-hero__arrow:hover {
  background: rgba(56, 189, 248, 0.12);
  border-color: var(--wd-cyan);
}

.wd-alt-hero__dots {
  display: flex;
  gap: 8px;
}

.wd-alt-hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}

.wd-alt-hero__dot.is-active {
  background: var(--wd-cyan);
  transform: scale(1.2);
}

/* Marquee */
.wd-alt-marquee {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--wd-line);
  border-bottom: 1px solid var(--wd-line);
  background: rgba(0, 0, 0, 0.35);
  overflow: hidden;
  padding: 14px 0;
}

.wd-alt-marquee__track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: wdMarquee 28s linear infinite;
}

.wd-alt-marquee__track span {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wd-muted);
  white-space: nowrap;
}

.wd-alt-marquee__track span:nth-child(odd) { color: var(--wd-cyan); }

@keyframes wdMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── TRUST ─── */
.wd-alt-trust {
  padding: 72px 0;
  background: var(--wd-surface);
}

.wd-alt-trust__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 20px;
}

.wd-alt-trust__card {
  padding: 28px;
  border-radius: 24px;
  border: 1px solid var(--wd-line);
  background: var(--wd-surface-2);
}

.wd-alt-trust__card--main { border-color: rgba(56, 189, 248, 0.25); }
.wd-alt-trust__card--promo {
  background: linear-gradient(145deg, rgba(52, 211, 153, 0.12), var(--wd-surface-2));
  border-color: rgba(52, 211, 153, 0.3);
}

.wd-alt-trust__label {
  display: block;
  margin-bottom: 12px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wd-muted);
}

.wd-alt-trust__card h2,
.wd-alt-trust__card h3 {
  margin: 0 0 16px;
  font-size: 1.25rem;
  font-weight: 800;
}

.wd-alt-trust__card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.wd-alt-trust__card li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--wd-line);
  font-size: 14px;
}

.wd-alt-trust__card li span { color: var(--wd-muted); }

.wd-alt-trust__row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--wd-line);
  font-size: 14px;
}

.wd-alt-trust__row--accent strong { color: var(--wd-mint); }

.wd-alt-trust__card p {
  margin: 0 0 16px;
  font-size: 14px;
  color: var(--wd-muted);
  line-height: 1.5;
}

.wd-alt-trust__link {
  color: var(--wd-mint) !important;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none !important;
}

.wd-alt-trust__card .b24-site-wrap { margin-top: 16px !important; }
.wd-alt-trust__card .b24-ext-link {
  color: var(--wd-cyan) !important;
  border-color: rgba(56, 189, 248, 0.4);
}

/* ─── SECTION HEAD ─── */
.wd-alt-section-head {
  text-align: center;
  margin-bottom: 48px;
}

.wd-alt-section-head__tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--wd-line);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wd-cyan);
}

.wd-alt-section-head h2 {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 3.5vw, 2.35rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.wd-alt-section-head p {
  margin: 0 auto;
  max-width: 560px;
  color: var(--wd-muted);
  font-size: 15px;
  line-height: 1.55;
}

.wd-alt-section-head a { color: var(--wd-cyan) !important; }

.wd-alt-section-head--light h2 { color: #fff; }

/* ─── PRICES ─── */
.wd-alt-prices {
  padding: 88px 0;
  background: var(--wd-bg);
}

.wd-alt-prices__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.wd-alt-price {
  padding: 28px 24px;
  border-radius: 22px;
  border: 1px solid var(--wd-line);
  background: var(--wd-surface);
  transition: transform 0.35s ease, border-color 0.35s, box-shadow 0.35s;
}

.wd-alt-price:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--wd-accent) 50%, transparent);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.wd-alt-price__tag {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wd-accent);
}

.wd-alt-price__title {
  margin: 0 0 8px;
  font-size: 1.15rem;
  font-weight: 800;
}

.wd-alt-price__sum {
  margin: 0 0 12px;
  font-size: 1.65rem;
  font-weight: 900;
  color: #fff;
}

.wd-alt-price__desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--wd-muted);
}

.wd-alt-prices__foot {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  color: var(--wd-muted);
}

.wd-alt-prices__foot a { color: var(--wd-cyan) !important; font-weight: 700; }

/* ─── CTA ─── */
.wd-alt-cta {
  padding: 88px 0;
  background: linear-gradient(180deg, var(--wd-surface) 0%, var(--wd-bg) 100%);
}

.wd-alt-cta__grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: center;
}

.wd-alt-cta__badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(52, 211, 153, 0.12);
  color: var(--wd-mint);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wd-alt-cta__copy h2 {
  margin: 0 0 16px;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 900;
  line-height: 1.2;
}

.wd-alt-cta__copy p {
  margin: 0;
  color: var(--wd-muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 46ch;
}

.wd-alt-cta__panel {
  padding: 32px;
  border-radius: 28px;
  border: 1px solid var(--wd-line);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(16px);
  text-align: center;
}

.wd-alt-cta__status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--wd-muted);
}

.wd-alt-cta__status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--wd-mint);
  box-shadow: 0 0 10px var(--wd-mint);
  animation: wdPulse 2s infinite;
}

.wd-alt-cta__phone {
  border-radius: 18px !important;
  background: linear-gradient(135deg, var(--wd-mint), #059669) !important;
  box-shadow: 0 16px 40px rgba(52, 211, 153, 0.3) !important;
}

.wd-alt-cta__msg {
  margin: 16px 0 12px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--wd-muted);
}

.wd-alt-cta__panel .b24-social-grid {
  justify-content: center !important;
}

.wd-alt-cta .b24-consult-tg-line a { color: var(--wd-cyan) !important; }

/* ─── BENTO ─── */
.wd-alt-bento {
  padding: 88px 0;
  background: var(--wd-surface);
}

.wd-alt-bento__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.wd-alt-bento__cell {
  padding: 28px;
  border-radius: 22px;
  border: 1px solid var(--wd-line);
  background: var(--wd-surface-2);
  transition: transform 0.3s, border-color 0.3s;
}

.wd-alt-bento__cell:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.3);
}

.wd-alt-bento__cell--wide { grid-column: span 2; }

.wd-alt-bento__cell--accent {
  background: linear-gradient(145deg, rgba(56, 189, 248, 0.1), var(--wd-surface-2));
  border-color: rgba(56, 189, 248, 0.25);
}

.wd-alt-bento__cell h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  font-weight: 800;
}

.wd-alt-bento__cell p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--wd-muted);
}

/* ─── PROCESS ─── */
.wd-alt-process {
  padding: 88px 0;
  background: var(--wd-bg);
}

.wd-alt-process__track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: none;
}

.wd-alt-process__track li {
  position: relative;
  padding: 28px 22px;
  border-radius: 20px;
  border: 1px solid var(--wd-line);
  background: var(--wd-surface);
}

.wd-alt-process__track li span {
  display: block;
  margin-bottom: 14px;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--wd-cyan), var(--wd-violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.wd-alt-process__track li h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 800;
}

.wd-alt-process__track li p {
  margin: 0;
  font-size: 13px;
  color: var(--wd-muted);
  line-height: 1.5;
}

/* ─── FAQ ─── */
/* ─── SEO TEXT ─── */
.wd-alt-seo {
  padding: 88px 0;
  background: var(--wd-bg);
  border-top: 1px solid var(--wd-line);
}

.wd-alt-seo__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: start;
}

.wd-alt-seo__tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--wd-line);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wd-violet);
}

.wd-alt-seo__main h2 {
  margin: 0 0 20px;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.wd-alt-seo__main h3 {
  margin: 28px 0 14px;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
}

.wd-alt-seo__main p {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--wd-muted);
}

.wd-alt-seo__main a {
  color: var(--wd-cyan) !important;
  font-weight: 600;
  text-decoration: none !important;
}

.wd-alt-seo__main a:hover {
  text-decoration: underline !important;
}

.wd-alt-seo__list {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.wd-alt-seo__list li {
  position: relative;
  padding: 12px 0 12px 22px;
  border-bottom: 1px solid var(--wd-line);
  font-size: 14px;
  line-height: 1.6;
  color: var(--wd-muted);
}

.wd-alt-seo__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--wd-cyan);
  opacity: 0.7;
}

.wd-alt-seo__list li strong {
  color: var(--wd-text);
}

.wd-alt-seo__aside {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.wd-alt-seo__card {
  padding: 26px 24px;
  border-radius: 20px;
  border: 1px solid var(--wd-line);
  background: var(--wd-surface);
}

.wd-alt-seo__card h3 {
  margin: 0 0 16px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
}

.wd-alt-seo__card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.wd-alt-seo__card ul li {
  position: relative;
  padding: 8px 0 8px 18px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--wd-muted);
}

.wd-alt-seo__card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--wd-mint);
  font-size: 12px;
  font-weight: 800;
}

.wd-alt-seo__card p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--wd-muted);
}

.wd-alt-seo__card--accent {
  border-color: rgba(167, 139, 250, 0.35);
  background: linear-gradient(145deg, rgba(167, 139, 250, 0.12), var(--wd-surface));
}

.wd-alt-seo__cta {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--wd-violet) !important;
  text-decoration: none !important;
}

.wd-alt-seo__cta:hover {
  color: var(--wd-cyan) !important;
}

/* ─── FAQ ─── */
.wd-alt-faq {
  padding: 88px 0 !important;
  background: var(--wd-surface) !important;
}

.wd-alt-faq__list {
  max-width: 760px;
  margin: 0 auto;
}

.wd-alt-faq__item {
  margin-bottom: 12px !important;
  border-radius: 16px !important;
  border: 1px solid var(--wd-line) !important;
  background: var(--wd-surface-2) !important;
  overflow: hidden;
}

.wd-alt-faq__trigger {
  width: 100%;
  padding: 20px 22px !important;
  background: none !important;
  border: none !important;
}

.wd-alt-faq__trigger h3 {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: var(--wd-text) !important;
}

.wd-alt-faq__icon {
  color: var(--wd-cyan) !important;
  font-size: 22px !important;
}

.wd-alt-faq__content .b24-faq-v3-inner {
  color: var(--wd-muted) !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
}

.wd-alt-faq__content .b24-faq-v3-inner a {
  color: var(--wd-cyan) !important;
}

.wd-alt-faq__content .b24-faq-v3-inner p {
  margin: 0 0 12px;
}

.wd-alt-faq__content .b24-faq-v3-inner p:last-child {
  margin-bottom: 0;
}

.wd-alt-faq__content .b24-faq-v3-inner ul {
  margin: 8px 0 12px;
  padding-left: 20px;
}

.wd-alt-faq__content .b24-faq-v3-inner li {
  margin-bottom: 6px;
}

.wd-alt-faq__content .b24-faq-v3-inner strong {
  color: var(--wd-text);
}

/* ─── REVIEWS ─── */
.wd-alt-reviews {
  padding: 88px 0 100px;
  background: var(--wd-bg);
}

.wd-alt-reviews__layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  align-items: start;
}

.wd-alt-reviews__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.wd-alt-review {
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--wd-line);
  background: var(--wd-surface);
}

.wd-alt-review__head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.wd-alt-review__avatar {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 16px;
  color: #fff;
}

.wd-alt-review__avatar.av-b { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.wd-alt-review__avatar.av-g { background: linear-gradient(135deg, #22c55e, #15803d); }
.wd-alt-review__avatar.av-o { background: linear-gradient(135deg, #f59e0b, #d97706); }
.wd-alt-review__avatar.av-p { background: linear-gradient(135deg, #a855f7, #7c3aed); }

.wd-alt-review__head strong {
  display: block;
  font-size: 14px;
}

.wd-alt-review__head span {
  font-size: 12px;
  color: var(--wd-muted);
}

.wd-alt-review__stars {
  color: #fbbf24;
  font-size: 12px;
}

.wd-alt-review p {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--wd-muted);
}

.wd-alt-review time {
  font-size: 11px;
  color: var(--wd-muted);
  opacity: 0.7;
}

.wd-alt-reviews__form .b24-form-container {
  border-radius: 22px !important;
  border: 1px solid var(--wd-line) !important;
  background: var(--wd-surface) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35) !important;
  padding: 28px 24px !important;
}

.wd-alt-reviews__form .b24-form-head {
  color: #fff !important;
  font-size: 1.35rem !important;
  font-weight: 800 !important;
  margin-bottom: 8px !important;
}

.wd-alt-reviews__form .b24-form-sub {
  color: var(--wd-muted) !important;
  font-size: 13px !important;
  line-height: 1.5 !important;
  margin-bottom: 18px !important;
}

.wd-alt-reviews__form .b24-f-inp {
  background: var(--wd-surface-2) !important;
  border: 1px solid var(--wd-line) !important;
  color: var(--wd-text) !important;
}

.wd-alt-reviews__form .b24-f-inp::placeholder {
  color: #6b7280 !important;
}

.wd-alt-reviews__form .b24-f-inp:focus {
  border-color: var(--wd-cyan) !important;
  background: #1a2030 !important;
  outline: none !important;
}

.wd-alt-reviews__form .b24-stars-row label {
  color: rgba(255, 255, 255, 0.2) !important;
}

.wd-alt-reviews__form .b24-stars-row label:hover,
.wd-alt-reviews__form .b24-stars-row label:hover ~ label,
.wd-alt-reviews__form .b24-stars-row input:checked ~ label {
  color: #fbbf24 !important;
}

.wd-alt-reviews__form .b24-f-note {
  margin-top: 12px !important;
  font-size: 12px !important;
  color: var(--wd-muted) !important;
  line-height: 1.45 !important;
}

.wd-alt-reviews__form .b24-f-note a {
  color: var(--wd-cyan) !important;
}

.wd-alt-reviews__form .b24-f-ok {
  background: rgba(52, 211, 153, 0.15) !important;
  color: #6ee7b7 !important;
}

.wd-alt-reviews__form .b24-f-err {
  background: rgba(248, 113, 113, 0.15) !important;
  color: #fca5a5 !important;
}

/* Scroll reveal */
[data-wd-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-wd-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .wd-alt-hero__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .wd-alt-trust__grid { grid-template-columns: 1fr; }
  .wd-alt-prices__grid { grid-template-columns: repeat(2, 1fr); }
  .wd-alt-cta__grid { grid-template-columns: 1fr; }
  .wd-alt-bento__grid { grid-template-columns: 1fr 1fr; }
  .wd-alt-bento__cell--wide { grid-column: span 2; }
  .wd-alt-process__track { grid-template-columns: repeat(2, 1fr); }
  .wd-alt-seo__grid { grid-template-columns: 1fr; }
  .wd-alt-reviews__layout { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .wd-alt-hero { min-height: auto; padding-top: calc(64px + 1rem); }
  .wd-alt-hero__slides { height: 300px; }
  .wd-alt-prices__grid,
  .wd-alt-bento__grid,
  .wd-alt-process__track,
  .wd-alt-reviews__grid { grid-template-columns: 1fr; }
  .wd-alt-bento__cell--wide { grid-column: span 1; }
}

@media (prefers-reduced-motion: reduce) {
  .wd-alt-marquee__track,
  .wd-alt-hero__mesh,
  .wd-alt-hero__orb,
  .wd-alt-pulse { animation: none; }
  [data-wd-reveal] { opacity: 1; transform: none; transition: none; }
}
