:root {
  --brand: #FF2D6A;
  --brand-2: #FF5C8A;
  --accent: #FFE500;
  --dark: #1F2421;
  --dark-2: #2A302C;
  --pill: 999px;
  --header-h: 84px;
  --bg: #1F2421;
  --surface: #2A302C;
  --surface-2: #333A35;
  --text: #FFFFFF;
  --muted: #B9C0BB;
  --border: #3A4139;
  --grad: linear-gradient(135deg, #FF2D6A 0%, #FF5C8A 100%);
}

* {
  box-sizing: border-box;
}

html.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease-out, ease-out), transform .6s var(--ease-out, ease-out);
}

html.js .reveal.in {
  opacity: 1;
  transform: translateY(0);
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, "Inter", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--dark);
  color: var(--text);
  margin: 0;
  overflow-x: hidden;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

em {
  font-style: normal;
  color: var(--brand);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--pill);
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: #fff;
  color: var(--brand);
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,.32);
}

.btn-secondary {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.4);
}

.btn-secondary:hover {
  background: rgba(255,255,255,.2);
  transform: translateY(-3px);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.1rem;
}

.btn-block {
  width: 100%;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(31,36,33,.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.header-content {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-text {
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: -.5px;
}

.desktop-nav {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}

.desktop-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  opacity: .85;
  transition: opacity .2s ease, color .2s ease;
}

.desktop-nav a:hover {
  opacity: 1;
  color: var(--brand-2);
}

.header-contacts {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.phone {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: .95rem;
  white-space: nowrap;
}

.messengers {
  display: flex;
  gap: 10px;
}

.messenger-link {
  color: var(--muted);
  display: flex;
  transition: color .2s ease, transform .2s ease;
}

.messenger-link:hover {
  color: var(--brand-2);
  transform: scale(1.1);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.burger span {
  display: block;
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 20px 24px 28px;
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,.08);
}

.mobile-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
}

.mobile-cta {
  background: var(--grad);
  color: #fff !important;
  padding: 14px;
  border-radius: var(--pill);
  text-align: center;
  margin-top: 8px;
}

.mobile-nav.open {
  display: flex;
}

/* Hero */
.hero {
  position: relative;
  background: var(--grad);
  padding: 64px 0 96px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-character {
  position: absolute;
  opacity: .9;
}

.hero-character-left {
  top: 8%;
  left: -3%;
  animation: float 6s ease-in-out infinite;
}

.hero-character-right {
  top: 12%;
  right: -6%;
  animation: float 7s ease-in-out infinite reverse;
}

@media (max-width: 1280px) {
  .hero-character-right { display: none; }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(3deg); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-character { animation: none; }
}

.hero-container {
  position: relative;
  z-index: 1;
}

.hero-content {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.hero-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 900;
  line-height: .95;
  margin: 0 0 8px;
  letter-spacing: -1px;
  color: #fff;
  text-shadow: 0 6px 24px rgba(0,0,0,.2);
}

.hero-subtitle {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
}

.hero-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,.9);
  margin: 0 0 32px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-items {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 56px;
  flex-wrap: wrap;
}

.hero-item {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: var(--radius-2, 18px);
  box-shadow: 0 16px 32px rgba(0,0,0,.28);
  background: #fff;
}

.hero-item-2, .hero-item-4, .hero-item-6 {
  transform: translateY(14px);
}

/* Trust */
.trust {
  background: var(--dark-2);
  padding: 48px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.trust-number {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  color: var(--brand-2);
  font-family: Georgia, serif;
}

.trust-label {
  font-size: .9rem;
  color: var(--muted);
  margin-top: 4px;
}

/* Problem */
.problem {
  padding: 96px 0;
  background: var(--dark);
}

.problem-content {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}

.problem-text h2 {
  font-family: Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 20px;
}

.problem-text p {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
}

.problem-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-2, 20px);
  box-shadow: 0 20px 48px rgba(0,0,0,.35);
}

/* Section title */
.section-title {
  font-family: Georgia, serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  text-align: center;
  margin: 0 0 16px;
  letter-spacing: -.5px;
}

.section-subtitle {
  text-align: center;
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 620px;
  margin: 0 auto 56px;
  line-height: 1.6;
}

/* Features */
.features {
  padding: 96px 0;
  background: var(--dark-2);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-2, 20px);
  padding: 36px 28px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,.3);
  border-color: var(--brand);
}

.feature-icon {
  color: var(--brand-2);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 0 10px;
}

.feature-card p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  font-size: .98rem;
}

/* How */
.how {
  position: relative;
  padding: 100px 0;
  background: var(--grad);
  overflow: hidden;
}

.how-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.how-character {
  position: absolute;
  right: -4%;
  top: 8%;
  opacity: .85;
  animation: float 8s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .how-character { animation: none; }
}

.how .section-title {
  color: #fff;
  position: relative;
  z-index: 1;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
  position: relative;
  z-index: 1;
}

.how-step {
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius-2, 20px);
  padding: 32px 24px;
  color: #fff;
  transition: transform .25s ease;
}

.how-step:hover {
  transform: translateY(-6px);
}

.how-step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.how-step h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 0 8px;
}

.how-step p {
  font-size: .95rem;
  line-height: 1.6;
  margin: 0;
  color: rgba(255,255,255,.9);
}

/* Services */
.services {
  padding: 100px 0;
  background: var(--dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-2, 20px);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,.3);
}

.service-card-featured {
  border-color: var(--brand);
  background: linear-gradient(160deg, var(--surface) 0%, #3a2530 100%);
}

.service-badge {
  position: absolute;
  top: -14px;
  right: 28px;
  background: var(--accent);
  color: var(--dark);
  padding: 6px 16px;
  border-radius: var(--pill);
  font-size: .8rem;
  font-weight: 800;
}

.service-header h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 0 4px;
}

.service-time {
  color: var(--muted);
  font-size: .9rem;
  margin-bottom: 20px;
}

.service-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 24px;
}

.price-value {
  font-size: 2.6rem;
  font-weight: 900;
  font-family: Georgia, serif;
  color: var(--brand-2);
}

.price-currency {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brand-2);
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
}

.service-features li {
  padding: 10px 0;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: .95rem;
  position: relative;
  padding-left: 26px;
}

.service-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 14px;
  height: 14px;
  background: var(--brand-2);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 12l6 6L20 6' stroke='black' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

.service-card .btn {
  width: 100%;
}

/* Reviews */
.reviews {
  padding: 100px 0;
  background: var(--dark-2);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-2, 20px);
  padding: 28px;
  transition: transform .25s ease;
}

.review-card:hover {
  transform: translateY(-4px);
}

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

.review-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.review-name {
  font-weight: 700;
  font-size: 1rem;
}

.review-meta {
  font-size: .85rem;
  color: var(--muted);
}

.review-rating {
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.review-text {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  font-size: .95rem;
}

/* FAQ */
.faq {
  padding: 100px 0;
  background: var(--dark);
}

.faq-list {
  max-width: 760px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-2, 18px);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: none;
  border: none;
  color: var(--text);
  padding: 22px 26px;
  font-size: 1.05rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  flex-shrink: 0;
  color: var(--brand-2);
  transition: transform .3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 26px 22px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

/* Contact */
.contact {
  padding: 100px 0;
  background: var(--grad);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-text h2 {
  font-family: Georgia, serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.2;
}

.contact-text > p {
  color: rgba(255,255,255,.9);
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0 0 32px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-phone {
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
}

.contact-messengers {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.messenger-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--pill);
  text-decoration: none;
  font-weight: 600;
  font-size: .9rem;
  border: 1px solid rgba(255,255,255,.35);
  transition: background .2s ease;
}

.messenger-btn:hover {
  background: rgba(255,255,255,.28);
}

.contact-form-wrap {
  background: var(--dark-2);
  border-radius: var(--radius-2, 20px);
  padding: 36px;
  box-shadow: 0 24px 56px rgba(0,0,0,.35);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: .9rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-1, 12px);
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color .2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-2);
}

.form-group textarea {
  resize: vertical;
}

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

.form-note a {
  color: var(--brand-2);
}

.form-error {
  background: rgba(255,45,106,.15);
  border: 1px solid var(--brand);
  color: #fff;
  padding: 12px 16px;
  border-radius: var(--radius-1, 12px);
  margin-bottom: 18px;
  font-size: .9rem;
}

.form-success {
  text-align: center;
  padding: 24px 0;
}

.form-success h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 20px 0 10px;
}

.form-success p {
  color: var(--muted);
  line-height: 1.6;
}

/* Footer */
.footer {
  background: #151815;
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.footer-about p {
  color: var(--muted);
  line-height: 1.6;
  font-size: .92rem;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-socials a {
  color: var(--muted);
  display: flex;
  transition: color .2s ease;
}

.footer-socials a:hover {
  color: var(--brand-2);
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 800;
  margin: 0 0 18px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  color: var(--muted);
  text-decoration: none;
  font-size: .92rem;
  transition: color .2s ease;
}

.footer-col a:hover {
  color: var(--brand-2);
}

.footer-col li {
  color: var(--muted);
  font-size: .92rem;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 48px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: .85rem;
}

/* Responsive */
@media (max-width: 980px) {
  .desktop-nav, .header-contacts {
    display: none;
  }

  .burger {
    display: flex;
    margin-left: auto;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .problem-content {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .how-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 56px auto 0;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 40px 0 64px;
  }

  .hero-character {
    display: none;
  }

  .hero-items {
    gap: 10px;
  }

  .hero-item {
    width: 64px;
    height: 64px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .features-grid, .how-steps {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .contact-form-wrap {
    padding: 24px;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta .btn {
    width: 100%;
  }
}

/* --- Стили для блоков, оставшихся без оформления --- */
/* Форма контактов */
.contact-form {
    background: var(--surface, #fff);
    border-radius: var(--radius-2, 12px);
    padding: var(--space-6, 32px);
    box-shadow: var(--shadow-2, 0 4px 12px rgba(0,0,0,0.08));
    max-width: 540px;
    margin: 0 auto;
}

.contact-form .form-group {
    margin-bottom: var(--space-4, 20px);
}

.contact-form label {
    display: block;
    font-weight: 500;
    margin-bottom: var(--space-2, 8px);
    color: var(--text, #1a1a1a);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: var(--space-3, 12px) var(--space-4, 16px);
    border: 1px solid var(--border, #e0e0e0);
    border-radius: var(--radius-1, 8px);
    font-size: var(--step-0, 1rem);
    font-family: var(--font-sans, system-ui, -apple-system, sans-serif);
    transition: border-color 150ms var(--ease-out, ease-out);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--brand, #FF2D6A);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand, #FF2D6A) 10%, transparent);
}

.contact-form textarea {
    min-height: 100px;
    resize: vertical;
}

.contact-form button[type="submit"] {
    width: 100%;
    background: var(--brand, #FF2D6A);
    color: #fff;
    border: none;
    border-radius: var(--radius-pill, 999px);
    padding: var(--space-3, 14px) var(--space-5, 24px);
    font-size: var(--step-1, 1.125rem);
    font-weight: 600;
    cursor: pointer;
    transition: all 200ms var(--ease-out, ease-out);
}

.contact-form button[type="submit"]:hover {
    background: var(--brand-2, #d61f56);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px color-mix(in srgb, var(--brand, #FF2D6A) 30%, transparent);
}

.contact-form .success-message {
    background: color-mix(in srgb, #10b981 10%, transparent);
    color: #065f46;
    padding: var(--space-3, 12px) var(--space-4, 16px);
    border-radius: var(--radius-1, 8px);
    margin-bottom: var(--space-4, 20px);
    border-left: 3px solid #10b981;
}

.contact-form .error-message {
    background: color-mix(in srgb, #ef4444 10%, transparent);
    color: #991b1b;
    padding: var(--space-3, 12px) var(--space-4, 16px);
    border-radius: var(--radius-1, 8px);
    margin-bottom: var(--space-4, 20px);
    border-left: 3px solid #ef4444;
}

/* Элементы героя */
.hero-item-1 {
    background: linear-gradient(135deg, color-mix(in srgb, var(--brand, #FF2D6A) 15%, transparent), color-mix(in srgb, var(--accent, #FFE500) 15%, transparent));
    border-radius: var(--radius-3, 20px);
    padding: var(--space-5, 24px);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    backdrop-filter: blur(8px);
    border: 1px solid color-mix(in srgb, var(--brand, #FF2D6A) 20%, transparent);
}

.hero-item-3 {
    background: var(--surface-2, #f9f9f9);
    border-radius: var(--radius-3, 20px);
    padding: var(--space-6, 32px);
    box-shadow: var(--shadow-1, 0 2px 8px rgba(0,0,0,0.06));
    display: flex;
    flex-direction: column;
    gap: var(--space-3, 12px);
    min-height: 180px;
    border: 1px solid var(--border, #e0e0e0);
}

.hero-item-3 .stat-number {
    font-size: var(--step-4, 2.5rem);
    font-weight: 700;
    color: var(--brand, #FF2D6A);
    line-height: 1;
}

.hero-item-3 .stat-label {
    font-size: var(--step-0, 1rem);
    color: var(--muted, #666);
}

.hero-item-5 {
    background: var(--accent, #FFE500);
    border-radius: var(--radius-3, 20px);
    padding: var(--space-5, 24px);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    box-shadow: var(--shadow-2, 0 4px 12px rgba(0,0,0,0.08));
    font-weight: 600;
    font-size: var(--step-1, 1.125rem);
    text-align: center;
    color: var(--text, #1a1a1a);
}

/* Автор отзыва */
.review-author {
    margin-top: var(--space-3, 12px);
    padding-top: var(--space-3, 12px);
    border-top: 1px solid var(--border, #e0e0e0);
    display: flex;
    align-items: center;
    gap: var(--space-3, 12px);
}

.review-author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--surface-2, #f5f5f5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: var(--step-1, 1.125rem);
    color: var(--brand, #FF2D6A);
    flex-shrink: 0;
}

.review-author-info {
    flex: 1;
}

.review-author-name {
    font-weight: 600;
    color: var(--text, #1a1a1a);
    margin-bottom: var(--space-1, 4px);
}

.review-author-date {
    font-size: var(--step--1, 0.875rem);
    color: var(--muted, #666);
}

@media (max-width: 768px) {
    .contact-form {
        padding: var(--space-5, 24px);
    }
    
    .hero-item-1,
    .hero-item-3,
    .hero-item-5 {
        min-height: 140px;
        padding: var(--space-4, 20px);
    }
    
    .hero-item-3 .stat-number {
        font-size: var(--step-3, 2rem);
    }
}
