:root {
  --bg: #0a0a0a;
  --bg-dark: #050505;
  --blue: #0a2540;
  --blue-light: #123a5c;
  --surface: #111318;
  --line: #2a2f3a;
  --gold: #ffd700;
  --gold-dim: #c9a800;
  --green: #00c853;
  --text: #ffffff;
  --muted: #9ca3af;
  --font: "Inter", system-ui, sans-serif;
  --font-head: "Montserrat", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-lawyer {
    animation: none;
  }
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 500;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--gold);
  color: #0a0a0a;
  font-weight: 700;
  font-size: 14px;
}

.skip-link:focus {
  top: 12px;
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

img {
  max-width: 100%;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s, opacity 0.2s;
}

a:hover {
  color: #fff;
}

.container {
  width: min(1140px, 92%);
  margin-inline: auto;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 215, 0, 0.12);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
}

.logo:hover {
  color: inherit;
}

.logo__candy {
  font-size: 28px;
  line-height: 1;
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo__text strong {
  font-family: var(--font-head);
  font-size: 15px;
}

.logo__text small {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

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

.nav__cta {
  padding: 10px 16px !important;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim)) !important;
  color: #0a0a0a !important;
  font-weight: 700 !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Typography */
.section-title {
  margin: 0 0 12px;
  font-family: var(--font-head);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  line-height: 1.15;
}

.section-lead {
  margin: 0 0 24px;
  font-size: 20px;
  color: var(--gold);
  font-weight: 600;
}

.section-text {
  color: var(--muted);
  max-width: 780px;
}

.section-text.muted {
  font-size: 14px;
  margin-top: 16px;
}

.section {
  padding: 72px 0;
}

.section--dark {
  background: var(--bg-dark);
}

.section--blue {
  background: linear-gradient(180deg, var(--blue), #061828);
}

.section-head {
  margin-bottom: 40px;
}

/* Badge & buttons */
.badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
}

/* Award / награда */
#award {
  padding: 40px 0;
}

.award-section {
  text-align: center;
  max-width: 760px;
}

.award-figure {
  margin: 0 auto 24px;
  max-width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(255, 215, 0, 0.45);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.45),
    0 0 40px rgba(255, 215, 0, 0.08);
  background: #0a2540;
}

.award-figure img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

.award-figure figcaption {
  margin: 0;
  padding: 12px 16px;
  font-size: 13px;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.35);
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.badge--gold {
  background: rgba(255, 215, 0, 0.12);
  border: 1px solid rgba(255, 215, 0, 0.4);
  color: var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border: none;
  border-radius: 12px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--candy {
  background: linear-gradient(135deg, var(--gold), #ffed4a);
  color: #0a0a0a;
  box-shadow: 0 12px 40px rgba(255, 215, 0, 0.35);
}

.btn--block {
  width: 100%;
}

.btn--whatsapp {
  background: var(--green);
  color: #fff;
  width: 100%;
  margin-bottom: 20px;
}

/* Hero */
.hero {
  padding: 48px 0 64px;
  background:
    radial-gradient(ellipse 70% 50% at 90% 0%, rgba(10, 37, 64, 0.9), transparent),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(255, 215, 0, 0.06), transparent);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.hero h1 {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(32px, 5.5vw, 52px);
  font-weight: 800;
  line-height: 1.08;
}

.hero__subtitle {
  margin: 12px 0 0;
  font-size: clamp(22px, 3vw, 32px);
  color: var(--gold);
  font-weight: 700;
}

.hero__lead {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.hero__checks {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.hero__checks li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 15px;
}

.hero__checks li::before {
  content: "✅";
  position: absolute;
  left: 0;
  top: 0;
}

.hero__actions {
  margin-top: 28px;
}

.hero__contacts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-top: 20px;
  font-size: 14px;
}

.hero__contacts .sep {
  color: var(--line);
}

.hero__geo {
  margin: 12px 0 0;
  font-size: 14px;
  color: var(--muted);
}

.hero__trust {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 20px;
  font-size: 13px;
  color: var(--muted);
}

.hero__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-lawyer {
  position: relative;
  width: min(240px, 100%);
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid rgba(255, 215, 0, 0.5);
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.5),
    0 0 32px rgba(255, 215, 0, 0.1);
  background: #fff;
  animation: hero-lawyer-in 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes hero-lawyer-in {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-lawyer__img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
  object-fit: cover;
  object-position: center top;
  aspect-ratio: 398 / 552;
}

.hero-lawyer__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 28px 14px 12px;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-head);
  text-align: center;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(10, 37, 64, 0.92));
}

.hero-card {
  padding: 32px;
  border-radius: 20px;
  background: linear-gradient(160deg, var(--blue-light), var(--blue));
  border: 1px solid rgba(255, 215, 0, 0.25);
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.hero-card__photo {
  width: 100px;
  height: 100px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(145deg, var(--gold), var(--gold-dim));
  color: #0a0a0a;
}

.hero-card__name {
  margin: 0;
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
}

.hero-card__tag {
  margin: 6px 0 16px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
}

.hero-card__promise {
  margin: 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

/* Stats */
.stats {
  padding: 56px 0;
  background: var(--blue);
  border-block: 1px solid rgba(255, 215, 0, 0.15);
}

.stats .section-title {
  text-align: center;
  margin-bottom: 36px;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat-card {
  padding: 28px 20px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.stat-card--highlight {
  border-color: rgba(255, 215, 0, 0.45);
  background: rgba(255, 215, 0, 0.06);
}

.stat-card__value {
  margin: 0 0 8px;
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}

.stat-card__label {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.4;
}

.stats__note {
  margin: 20px 0 0;
  text-align: center;
  font-size: 12px;
  color: var(--muted);
}

/* Problem */
.prose {
  max-width: 800px;
  color: var(--muted);
}

.prose p,
.prose ul {
  margin-bottom: 16px;
}

.prose ul {
  padding-left: 20px;
}

.prose__accent {
  font-size: 20px;
  font-weight: 700;
  color: var(--green) !important;
}

.stories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.story {
  padding: 22px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.story h3 {
  margin: 0 0 12px;
  font-size: 16px;
}

.story__pain {
  color: var(--muted);
  font-size: 14px;
  font-style: italic;
}

.story__result {
  margin: 12px 0 0;
  font-size: 14px;
  color: var(--green);
}

/* Returns registry */
.returns-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.return-card {
  padding: 22px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: border-color 0.2s, transform 0.2s;
}

.return-card:hover {
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateY(-3px);
}

.return-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.return-card__avatar {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 800;
  background: linear-gradient(145deg, var(--gold), var(--gold-dim));
  color: #0a0a0a;
  flex-shrink: 0;
}

.return-card__fio {
  margin: 0;
  font-size: 17px;
  font-family: var(--font-head);
}

.return-card__city {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.return-card__amount {
  margin: 0 0 16px;
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  color: var(--green);
  font-variant-numeric: tabular-nums;
}

.return-card__meta {
  margin: 0;
  display: grid;
  gap: 10px;
}

.return-card__meta div {
  display: grid;
  gap: 4px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.return-card__meta dt {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.return-card__meta dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: var(--text);
}

.returns-note {
  margin: 28px 0 0;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}

.returns-note strong {
  color: var(--gold);
}

/* Cases / реестр возвратов */
.cases {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.cases .case-card__nums dd {
  text-align: right;
  max-width: 58%;
  line-height: 1.35;
}

.case-card {
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.case-card:not(.person-card) {
  padding: 24px;
  transition: border-color 0.2s, transform 0.2s;
}

.case-card:not(.person-card):hover {
  border-color: rgba(255, 215, 0, 0.35);
  transform: translateY(-4px);
}

.case-card:not(.person-card) h3 {
  margin: 0 0 14px;
  font-size: 17px;
}

.case-card__nums {
  display: grid;
  gap: 8px;
  margin: 0 0 16px;
}

.case-card__nums div {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line);
}

.case-card__nums dt {
  color: var(--muted);
}

.case-card__nums dd {
  margin: 0;
  font-weight: 700;
  color: var(--gold);
}

.case-card blockquote {
  margin: 0 0 14px;
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
  line-height: 1.5;
}

.case-card__tag {
  display: inline-block;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 6px;
  background: rgba(0, 200, 83, 0.12);
  color: var(--green);
}

/* About */
.about {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}

.about__photo {
  width: 220px;
  height: 280px;
  margin-bottom: 12px;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(255, 215, 0, 0.45);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  background: #fff;
}

.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about__age {
  color: var(--muted);
  font-size: 14px;
}

.about__block {
  margin-bottom: 24px;
}

.about__block h3 {
  margin: 0 0 10px;
  font-size: 16px;
  color: var(--gold);
}

.about__block ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

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

.about__quote {
  margin: 24px 0 0;
  padding: 20px;
  border-left: 4px solid var(--gold);
  background: rgba(0, 0, 0, 0.25);
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
}

/* Partners */
.partners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 32px;
}

.partners__col h3 {
  margin: 0 0 14px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
}

.partner-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.partner-chips li {
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--muted);
}

.partners__disclaimer {
  margin-top: 24px;
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
}

/* Process */
.process {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process li {
  padding: 18px 12px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  text-align: center;
}

.process__step {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.process h3 {
  margin: 0 0 6px;
  font-size: 14px;
  line-height: 1.3;
}

.process__money {
  color: var(--green) !important;
}

.process p {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}

.process__note {
  margin-top: 24px;
  text-align: center;
  color: var(--green);
  font-weight: 600;
}

/* Check list */
.check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding-left: 28px;
  position: relative;
  color: var(--muted);
}

.check-list li::before {
  content: "✅";
  position: absolute;
  left: 0;
}

.disclaimer {
  margin-top: 28px;
  padding: 16px;
  border-radius: 10px;
  background: rgba(255, 215, 0, 0.06);
  border: 1px solid rgba(255, 215, 0, 0.2);
  font-size: 14px;
  color: var(--muted);
}

/* Guarantee */
.section--guarantee {
  background: linear-gradient(180deg, var(--bg), var(--blue));
}

.guarantee-box {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(0, 200, 83, 0.35);
  text-align: center;
}

.guarantee-box__icon {
  font-size: 48px;
  display: block;
  margin-bottom: 16px;
}

.guarantee-box__lead {
  font-size: 20px;
  line-height: 1.5;
}

.guarantee-box ul {
  text-align: left;
  max-width: 400px;
  margin: 20px auto;
  color: var(--muted);
}

.guarantee-box__footer {
  margin-top: 20px;
  color: var(--gold);
  font-weight: 600;
}

/* Reviews */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.review-card:not(.person-card) {
  padding: 24px;
}

.review-card:not(.person-card) h3 {
  margin: 0 0 12px;
  font-size: 16px;
}

.review-card p {
  margin: 0 0 10px;
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
}

.review-card__stars {
  color: var(--gold);
  font-style: normal !important;
}

.review-card__meta {
  font-size: 12px !important;
  font-style: normal !important;
}

.reviews-more {
  text-align: center;
  margin-top: 28px;
}

.reviews-more a {
  font-weight: 700;
  font-size: 17px;
}

/* Video */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.video-placeholder {
  aspect-ratio: 16/10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--surface);
  border: 1px dashed var(--line);
  color: var(--muted);
}

.video-placeholder span {
  font-size: 40px;
  margin-bottom: 8px;
}

.video-placeholder small {
  margin-top: 8px;
  color: var(--gold);
}

/* FAQ */
.faq__item {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.faq__item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 17px;
  list-style: none;
  padding-right: 32px;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-size: 22px;
}

.faq__item[open] summary::after {
  content: "−";
}

.faq__item p {
  margin: 12px 0 0;
  color: var(--muted);
}

/* Contact */
.section--contact {
  background: var(--blue);
}

.contact__head {
  text-align: center;
  margin-bottom: 40px;
}

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

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form label span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.contact-form__legal {
  margin: 0;
  font-size: 11px;
  color: var(--muted);
}

.whatsapp-box {
  padding: 28px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(0, 200, 83, 0.3);
}

.whatsapp-box h3 {
  margin: 0 0 16px;
  font-size: 18px;
}

.contact-aside__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-aside__list li {
  margin-bottom: 12px;
  font-size: 15px;
}

.contact-aside__list a {
  color: var(--text);
}

.contact-aside__note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
}

/* Footer */
.footer {
  padding: 48px 0;
  background: var(--bg-dark);
  border-top: 1px solid var(--line);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.footer p {
  margin: 0 0 8px;
  font-size: 14px;
  color: var(--muted);
}

.footer__brand {
  color: var(--text) !important;
  font-size: 16px !important;
}

.footer__social a {
  color: var(--gold);
}

.footer__disclaimer {
  font-size: 11px !important;
  line-height: 1.5;
  max-width: 480px;
}

/* Sticky mobile CTA */
.sticky-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 140;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, transparent, rgba(10, 10, 10, 0.96) 28%);
  backdrop-filter: blur(8px);
}

.sticky-cta[hidden] {
  display: none !important;
}

.sticky-cta:not([hidden]) {
  display: block;
}

.sticky-cta .btn {
  box-shadow: 0 8px 28px rgba(255, 215, 0, 0.25);
}

/* Float WA */
.float-wa {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 150;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  font-size: 26px;
  box-shadow: 0 8px 24px rgba(0, 200, 83, 0.45);
  transition: transform 0.2s;
}

.float-wa:hover {
  transform: scale(1.08);
  color: inherit;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Responsive */
@media (max-width: 1024px) {
  .hero__grid,
  .stats__grid,
  .stories,
  .cases,
  .about,
  .partners,
  .process,
  .reviews,
  .returns-grid,
  .video-grid,
  .contact__grid,
  .check-list {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 720px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: 56px 0 auto;
    flex-direction: column;
    padding: 24px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.3s;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .hero__grid,
  .stats__grid,
  .stories,
  .cases,
  .about,
  .partners,
  .process,
  .reviews,
  .returns-grid,
  .video-grid,
  .contact__grid,
  .check-list,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .about__photo-wrap {
    text-align: center;
  }

  .about__photo {
    margin-inline: auto;
  }

  .hero__contacts .sep {
    display: none;
  }

  .btn--candy {
    font-size: 14px;
    padding: 14px 18px;
  }

  .float-wa {
    bottom: calc(88px + env(safe-area-inset-bottom, 0px));
  }
}

@media (min-width: 721px) {
  .sticky-cta {
    display: none !important;
  }
}
