@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0);    }
}
@keyframes heroFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes heroScaleIn {
  from { opacity: 0; transform: scaleX(0); }
  to   { opacity: 1; transform: scaleX(1); }
}
@keyframes shapeFloat {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50%       { transform: translateY(-12px) rotate(var(--r, 0deg)); }
}

.hero {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  margin: 6px var(--page-pad);
  padding: clamp(60px, 10vw, 96px) clamp(28px, 7vw, 80px);
  display: flex;
  align-items: center;
  min-height: clamp(400px, 54vw, 560px);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, #5a0820 0%, #8c0932 30%, #b10c41 65%, #c21050 100%);
}

.hero__shapes {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: visible;
}
.hs { fill: none; stroke: rgba(255,255,255,0.07); stroke-width: 1.5; }
.hs--1 { fill: rgba(255,255,255,0.04); stroke: rgba(255,255,255,0.09); --r:0deg; animation: shapeFloat 9s ease-in-out infinite; }
.hs--2 { fill: rgba(255,255,255,0.03); stroke: rgba(255,255,255,0.07); --r:0deg; animation: shapeFloat 12s ease-in-out 1.5s infinite; }
.hs--3 { stroke: rgba(255,255,255,0.08); --r:0deg; animation: shapeFloat 10s ease-in-out 3s infinite; }
.hs--4 { stroke: rgba(255,255,255,0.06); --r:22deg; animation: shapeFloat 14s ease-in-out 0.5s infinite; }
.hs--5 { fill: rgba(255,255,255,0.05); stroke: rgba(255,255,255,0.10); --r:-14deg; animation: shapeFloat 11s ease-in-out 2s infinite; }

.hero__wrap {
  position: relative;
  z-index: 2;
  max-width: 580px;
}

.hero__anim {
  opacity: 0;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  animation-duration: 0.8s;
  animation-name: heroFadeUp;
}
.hero__anim--1 { animation-delay: 0.08s; }
.hero__anim--2 { animation-delay: 0.22s; }
.hero__anim--3 { animation-delay: 0.38s; }
.hero__anim--4 { animation-delay: 0.54s; }
.hero__anim--5 { animation-delay: 0.68s; }

.hero__rule.hero__anim {
  animation-name: heroScaleIn;
  transform-origin: left center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.hero__dot {
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  flex-shrink: 0;
}

.hero__title {
  display: flex;
  flex-direction: column;
  line-height: 0.88;
  letter-spacing: -0.04em;
  margin: 0 0 2px;
}
.hero__title--thin {
  font-size: clamp(3rem, 9vw, 6.4rem);
  font-weight: 200;
  color: rgba(255,255,255,0.78);
}
.hero__title--bold {
  font-size: clamp(3rem, 9vw, 6.4rem);
  font-weight: 900;
  color: #fff;
}

.hero__rule {
  width: 40px; height: 2px;
  background: rgba(255,255,255,0.45);
  border-radius: 2px;
  margin: 22px 0;
}

.hero__sub {
  font-size: clamp(0.78rem, 1.8vw, 0.92rem);
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  margin: 0 0 10px;
  line-height: 1.6;
  max-width: 400px;
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.hero__tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  padding: 4px 12px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 28px;
}

.hero__btn {
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}
.hero__btn--primary {
  background: #fff;
  color: #b10c41;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}
.hero__btn--primary:hover {
  background: #f5f5f5;
  box-shadow: 0 6px 32px rgba(0,0,0,0.25);
  transform: translateY(-2px);
}
.hero__btn--primary:active { transform: translateY(0); box-shadow: 0 2px 10px rgba(0,0,0,0.14); }

.hero__btn--ghost {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.hero__btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  color: #fff;
  transform: translateY(-2px);
}
.hero__btn--ghost:active { transform: translateY(0); }

.hero__proof {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__proof-avatars {
  display: flex;
  align-items: center;
}
.hero__proof-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  color: #fff;
  margin-right: -8px;
  flex-shrink: 0;
}
.hero__proof-avatar:last-child { margin-right: 0; }
.hero__proof-text {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  margin-left: 12px;
}
.hero__proof-text strong { color: rgba(255,255,255,0.9); font-weight: 700; }

@media (max-width: 1024px) {
  .hero { padding: clamp(48px, 8vw, 72px) clamp(24px, 5vw, 56px); border-radius: 18px; }
}
@media (max-width: 768px) {
  .hero {
    border-radius: 20px;
    margin: 6px var(--page-pad);
    padding: 52px 24px 56px;
    min-height: clamp(480px, 95vw, 600px);
    align-items: flex-end;
    justify-content: center;
  }
  .hero__wrap {
    max-width: 100%; width: 100%;
    text-align: center;
    display: flex; flex-direction: column; align-items: center;
  }
  .hero__eyebrow { justify-content: center; margin-bottom: 16px; }
  .hero__rule { margin: 16px auto; transform-origin: center; }
  .hero__sub { text-align: center; max-width: 100%; font-size: 0.88rem; }
  .hero__tags { justify-content: center; gap: 6px; margin-bottom: 28px; }
  .hero__tag { font-size: 0.65rem; padding: 5px 11px; }
  .hero__cta { flex-direction: column; align-items: stretch; width: 100%; gap: 10px; margin-bottom: 24px; }
  .hero__btn { width: 100%; padding: 16px 20px; font-size: 0.9rem; border-radius: 12px; }
  .hero__btn--primary:hover, .hero__btn--ghost:hover { transform: none; }
  .hero__proof { justify-content: center; }
}
@media (max-width: 480px) {
  .hero {
    border-radius: 18px;
    margin: 4px 10px;
    padding: 44px 20px 48px;
    min-height: clamp(500px, 115vw, 600px);
    align-items: flex-end;
  }
  .hero__eyebrow { display: none; }
  .hero__title--thin, .hero__title--bold { font-size: clamp(3rem, 16vw, 3.8rem); }
  .hero__title { line-height: 0.85; }
  .hero__rule { margin: 14px auto; width: 32px; }
  .hero__sub { font-size: 0.84rem; line-height: 1.65; margin-bottom: 8px; }
  .hero__tags { gap: 5px; margin-bottom: 24px; }
  .hero__tag { font-size: 0.6rem; padding: 4px 10px; letter-spacing: 0.08em; }
  .hero__cta { gap: 8px; margin-bottom: 20px; }
  .hero__btn { padding: 15px 20px; font-size: 0.88rem; }
  .hero__proof { justify-content: center; }
  .hero__proof-avatars { display: none; }
  .hero__proof-text { font-size: 0.72rem; margin-left: 0; text-align: center; }
}
@media (max-width: 360px) {
  .hero { border-radius: 14px; padding: 36px 16px 40px; margin: 4px 8px; }
  .hero__title--thin, .hero__title--bold { font-size: 2.7rem; }
  .hero__sub { font-size: 0.8rem; }
}

.stats { padding: 20px var(--page-pad); }
.statsWrap { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.statsGrid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background:
    radial-gradient(ellipse at 0% 100%, rgba(177,12,65,0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 100% 0%, rgba(177,12,65,0.10) 0%, transparent 55%),
    #fff;
  border-radius: 24px;
  overflow: hidden;
}
.statCard { padding: 36px 20px; text-align: center; position: relative; }
.statCard + .statCard::before {
  content: "";
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(177,12,65,0.1);
}
.statValue {
  font-size: clamp(1.8rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--brand);
}
.statLabel { font-size: clamp(0.72rem, 1vw, 0.85rem); color: var(--gray-600); letter-spacing: 0.02em; }

@media (max-width: 768px) {
  .stats { padding: 10px var(--page-pad); }
  .statsGrid { grid-template-columns: repeat(2, 1fr); border-radius: 20px; }
  .statCard { padding: 22px 14px; }
  .statCard:nth-child(3)::before { display: none; }
  .statCard:nth-child(3), .statCard:nth-child(4) { border-top: 1px solid rgba(177,12,65,0.1); }
  .statValue { font-size: clamp(1.5rem, 5.5vw, 1.9rem); margin-bottom: 5px; }
  .statLabel { font-size: clamp(0.63rem, 2.2vw, 0.76rem); }
}
@media (max-width: 480px) {
  .stats { padding: 8px var(--page-pad); }
  .statsGrid { border-radius: 16px; }
  .statCard { padding: 18px 10px; }
  .statValue { font-size: clamp(1.4rem, 7vw, 1.7rem); }
  .statLabel { font-size: 0.65rem; letter-spacing: 0; }
}
@media (max-width: 360px) {
  .statCard { padding: 15px 8px; }
  .statValue { font-size: 1.3rem; }
  .statLabel { font-size: 0.61rem; }
}

.how { padding: 80px var(--page-pad) 60px; }
.how__wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.how__media { position: relative; display: flex; justify-content: center; align-items: center; }
.how__blob {
  position: absolute;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(177,12,65,0.22) 0%, rgba(177,12,65,0.06) 55%, transparent 75%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}
.how__blob--2 {
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(177,12,65,0.30) 0%, rgba(177,12,65,0.08) 50%, transparent 70%);
  animation: blobPulse 3.5s ease-in-out infinite alternate;
}
@keyframes blobPulse {
  from { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  to   { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}
.how__phone {
  position: relative;
  z-index: 1;
  width: 260px;
  border-radius: 28px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.how__phone.is-visible { opacity: 1; transform: translateY(0); }
.how__phone-img { width: 100%; aspect-ratio: 9/16; object-fit: cover; display: block; }
.how__content {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
}
.how__content.is-visible { opacity: 1; transform: translateX(0); }
.how__title {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -0.025em;
  margin-bottom: 40px;
}
.how__steps { display: flex; flex-direction: column; margin-bottom: 40px; }
.how__step { display: grid; grid-template-columns: 52px 1fr; align-items: stretch; }
.how__step-icon-wrap { display: flex; flex-direction: column; align-items: center; }
.how__step-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(177,12,65,0.08);
  border: 1.5px solid rgba(177,12,65,0.2);
  color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s, border-color 0.25s;
}
.how__step-line {
  width: 2px;
  flex: 1;
  min-height: 32px;
  background: linear-gradient(to bottom, rgba(177,12,65,0.30), rgba(177,12,65,0.08));
  margin-top: 6px;
}
.how__step-line--last { background: transparent; }
.how__step-body { padding: 12px 0 32px 16px; align-self: start; }
.how__step:last-child .how__step-body { padding-bottom: 0; }
.how__step-title { font-size: 0.97rem; font-weight: 700; color: var(--gray-900); margin-bottom: 6px; }
.how__step-desc { font-size: 0.85rem; color: var(--gray-600); line-height: 1.65; }
.how__cta { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 1024px) {
  .how__wrap { gap: 48px; }
  .how__phone { width: 220px; }
}
@media (max-width: 768px) {
  .how { padding: 48px var(--page-pad) 40px; }
  .how__wrap { grid-template-columns: 1fr; gap: 36px; }
  .how__media { order: 1; }
  .how__content { order: 2; transform: none; transition: opacity 0.7s ease 0.15s; }
  .how__content.is-visible { transform: none; }
  .how__phone { width: 200px; }
  .how__title { font-size: clamp(1.5rem, 5.5vw, 2rem); margin-bottom: 28px; text-align: center; }
  .how__steps { margin-bottom: 32px; }
  .how__step { grid-template-columns: 48px 1fr; }
  .how__step-icon { width: 48px; height: 48px; }
  .how__step-body { padding: 10px 0 28px 14px; }
  .how__step-title { font-size: 0.95rem; }
  .how__step-desc { font-size: 0.83rem; }
  .how__cta { flex-direction: column; gap: 10px; }
  .how__cta .btn { width: 100%; justify-content: center; padding: 15px 20px; font-size: 0.9rem; font-weight: 700; }
}
@media (max-width: 480px) {
  .how { padding: 40px var(--page-pad) 32px; }
  .how__phone { width: 180px; border-radius: 22px; }
  .how__step { grid-template-columns: 44px 1fr; }
  .how__step-icon { width: 44px; height: 44px; }
  .how__step-body { padding: 8px 0 24px 12px; }
}
@media (max-width: 360px) {
  .how__step { grid-template-columns: 40px 1fr; }
  .how__step-icon { width: 40px; height: 40px; }
  .how__step-title { font-size: 0.88rem; }
  .how__step-desc { font-size: 0.8rem; }
}

.services { padding: 80px var(--page-pad); }
.services__header { text-align: center; margin-bottom: 56px; }
.services__sub {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 10px;
}
.services__title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.025em;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.services__card {
  background: #fff;
  border: 1.5px solid var(--gray-200);
  border-radius: 16px;
  padding: 36px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(60px) scale(0.94);
  transition:
    opacity 0.6s cubic-bezier(0.22,1,0.36,1),
    transform 0.6s cubic-bezier(0.22,1,0.36,1),
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.services__card:nth-child(1) { transition-delay: 0.05s; }
.services__card:nth-child(2) { transition-delay: 0.13s; }
.services__card:nth-child(3) { transition-delay: 0.21s; }
.services__card:nth-child(4) { transition-delay: 0.29s; }
.services__card:nth-child(5) { transition-delay: 0.37s; }
.services__card:nth-child(6) { transition-delay: 0.45s; }
.services__card.is-visible { opacity: 1; transform: translateY(0) scale(1); transition-delay: 0s; }

.services__card-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(177,12,65,0.08);
  color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
  transition: background 0.3s, color 0.3s;
}
.services__card-title { font-size: 1.05rem; font-weight: 700; color: var(--gray-900); transition: color 0.3s; }
.services__card-price {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.02em;
}
.services__card-desc { font-size: 0.85rem; color: var(--gray-600); line-height: 1.7; flex: 1; transition: color 0.3s; }
.services__card-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand);
  border: 1.5px solid var(--brand);
  border-radius: 8px;
  padding: 7px 16px;
  text-decoration: none;
  align-self: flex-start;
  margin-top: 4px;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.services__card:hover .services__card-cta {
  background: var(--brand);
  color: #fff;
}
.services__card--active {
  background: var(--brand);
  border-color: var(--brand);
  box-shadow: 0 16px 40px rgba(177,12,65,0.28);
}
.services__card--active .services__card-icon { background: rgba(255,255,255,0.18); color: #fff; }
.services__card--active .services__card-title { color: #fff; }
.services__card--active .services__card-price { color: rgba(255,255,255,0.75); }
.services__card--active .services__card-desc { color: rgba(255,255,255,0.85); }
.services__card--active .services__card-cta { background: #fff; color: var(--brand); border-color: #fff; }

@media (max-width: 1024px) {
  .services__grid { gap: 18px; }
  .services__card { padding: 28px 22px 22px; }
}
@media (max-width: 900px) { .services__grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 768px) {
  .services { padding: 52px var(--page-pad) 44px; }
  .services__header { margin-bottom: 32px; }
  .services__title { font-size: clamp(1.6rem, 5vw, 2rem); }
  .services__grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .services__card { padding: 24px 20px 20px; gap: 8px; border-radius: 14px; }
  .services__card-icon { width: 46px; height: 46px; border-radius: 10px; }
  .services__card-title { font-size: 0.95rem; }
  .services__card-desc { font-size: 0.82rem; line-height: 1.6; }
  .services__card-cta { font-size: 0.78rem; padding: 7px 14px; }
}
@media (max-width: 540px) {
  .services__grid { grid-template-columns: 1fr; gap: 10px; }
  .services__card {
    display: grid;
    grid-template-columns: 44px 1fr auto;
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "icon title cta"
      "icon price cta"
      "icon desc  desc";
    column-gap: 14px;
    row-gap: 2px;
    padding: 18px 16px 18px;
    border-radius: 14px;
    align-items: start;
  }
  .services__card-icon {
    grid-area: icon;
    width: 44px; height: 44px;
    border-radius: 10px;
    align-self: start;
    margin-bottom: 0;
  }
  .services__card-title {
    grid-area: title;
    font-size: 0.95rem;
    align-self: end;
    padding-bottom: 0;
  }
  .services__card-price {
    grid-area: price;
    font-size: 0.78rem;
    align-self: start;
  }
  .services__card-desc {
    grid-area: desc;
    font-size: 0.8rem;
    line-height: 1.6;
    margin-top: 6px;
  }
  .services__card-cta {
    grid-area: cta;
    align-self: center;
    margin-top: 0;
    font-size: 0.74rem;
    padding: 7px 12px;
    white-space: nowrap;
    border-radius: 8px;
  }
}
@media (max-width: 480px) {
  .services { padding: 40px var(--page-pad) 32px; }
  .services__header { margin-bottom: 24px; }
}
@media (max-width: 360px) {
  .services__grid { gap: 8px; }
  .services__card {
    grid-template-columns: 38px 1fr auto;
    column-gap: 10px;
    padding: 14px 12px;
  }
  .services__card-icon { width: 38px; height: 38px; }
  .services__card-title { font-size: 0.87rem; }
  .services__card-price { font-size: 0.74rem; }
  .services__card-desc { font-size: 0.75rem; }
  .services__card-cta { font-size: 0.7rem; padding: 6px 10px; }
}

.testi {
  padding: 80px var(--page-pad);
  background: var(--gray-50);
  border-radius: 20px;
  margin: 0 var(--page-pad);
}
.testi__header { text-align: center; margin-bottom: 52px; }
.testi__sub {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 10px;
}
.testi__title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.025em;
}
.testi__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi__card {
  background: #fff;
  border: 1.5px solid var(--gray-200);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1), transform 0.6s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s ease;
}
.testi__card:nth-child(1) { transition-delay: 0.05s; }
.testi__card:nth-child(2) { transition-delay: 0.15s; }
.testi__card:nth-child(3) { transition-delay: 0.25s; }
.testi__card:nth-child(4) { transition-delay: 0.10s; }
.testi__card:nth-child(5) { transition-delay: 0.20s; }
.testi__card:nth-child(6) { transition-delay: 0.30s; }
.testi__card.is-visible { opacity: 1; transform: translateY(0); }
.testi__card:hover { box-shadow: 0 8px 32px rgba(177,12,65,0.10); border-color: rgba(177,12,65,0.2); }

.testi__stars {
  display: flex;
  gap: 3px;
  color: #f59e0b;
  font-size: 0.9rem;
}
.testi__text {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}
.testi__text::before { content: '\201C'; color: var(--brand); font-size: 1.4rem; line-height: 0; vertical-align: -0.4em; margin-right: 2px; font-style: normal; }
.testi__text::after  { content: '\201D'; color: var(--brand); font-size: 1.4rem; line-height: 0; vertical-align: -0.4em; margin-left: 2px; font-style: normal; }
.testi__author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--gray-100);
}
.testi__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(177,12,65,0.15), rgba(177,12,65,0.3));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand);
  flex-shrink: 0;
}
.testi__name { font-size: 0.85rem; font-weight: 700; color: var(--gray-900); }
.testi__meta { font-size: 0.75rem; color: var(--gray-600); }
.testi__service-badge {
  margin-left: auto;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand);
  background: rgba(177,12,65,0.08);
  border-radius: 999px;
  padding: 3px 9px;
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 1024px) { .testi__grid { gap: 16px; } }
@media (max-width: 900px) { .testi__grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 768px) {
  .testi { padding: 48px var(--page-pad) 40px; margin: 0 var(--page-pad); border-radius: 16px; }
  .testi__header { margin-bottom: 32px; }
  .testi__grid { grid-template-columns: 1fr; gap: 12px; }
  .testi__card { padding: 20px 18px; }
}
@media (max-width: 480px) {
  .testi { padding: 36px var(--page-pad) 32px; border-radius: 14px; margin: 0 10px; }
  .testi__header { margin-bottom: 24px; }
  .testi__title { font-size: clamp(1.5rem, 5vw, 1.9rem); }
  .testi__card { padding: 16px 14px; gap: 10px; border-radius: 12px; }
  .testi__text { font-size: 0.82rem; line-height: 1.7; }
  .testi__name { font-size: 0.82rem; }
  .testi__service-badge { font-size: 0.64rem; padding: 3px 8px; }
}
@media (max-width: 360px) {
  .testi { margin: 0 8px; padding: 28px 14px 26px; }
  .testi__card { padding: 14px 12px; }
  .testi__text { font-size: 0.79rem; }
}

.faq { padding: 80px var(--page-pad); }
.faq__wrap { max-width: 760px; margin: 0 auto; }
.faq__header { text-align: center; margin-bottom: 48px; }
.faq__sub {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 10px;
}
.faq__title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.025em;
}
.faq__list { display: flex; flex-direction: column; gap: 10px; }
.faq__item {
  border: 1.5px solid var(--gray-200);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.25s;
}
.faq__item.is-open { border-color: rgba(177,12,65,0.35); }
.faq__question {
  width: 100%;
  background: #fff;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
  transition: background 0.2s;
}
.faq__question:hover { background: var(--gray-50); }
.faq__q-text {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.5;
}
.faq__item.is-open .faq__q-text { color: var(--brand); }
.faq__icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-300);
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gray-600);
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.3s;
}
.faq__item.is-open .faq__icon {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  transform: rotate(45deg);
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22,1,0.36,1), padding 0.3s ease;
}
.faq__item.is-open .faq__answer { max-height: 400px; }
.faq__a-text {
  padding: 0 24px 20px;
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .faq { padding: 48px var(--page-pad) 40px; }
  .faq__header { margin-bottom: 32px; }
  .faq__question { padding: 16px 18px; gap: 12px; }
  .faq__q-text { font-size: 0.88rem; }
  .faq__a-text { padding: 0 18px 16px; font-size: 0.84rem; }
}
@media (max-width: 480px) {
  .faq { padding: 36px var(--page-pad) 32px; }
  .faq__header { margin-bottom: 24px; }
  .faq__title { font-size: clamp(1.5rem, 6vw, 1.9rem); }
  .faq__list { gap: 8px; }
  .faq__item { border-radius: 12px; }
  .faq__question { padding: 14px 16px; gap: 10px; }
  .faq__q-text { font-size: 0.84rem; line-height: 1.45; }
  .faq__icon { width: 22px; height: 22px; flex-shrink: 0; }
  .faq__a-text { padding: 0 16px 14px; font-size: 0.81rem; line-height: 1.75; }
}
@media (max-width: 360px) {
  .faq { padding: 28px var(--page-pad) 24px; }
  .faq__question { padding: 13px 14px; }
  .faq__q-text { font-size: 0.81rem; }
  .faq__a-text { padding: 0 14px 13px; font-size: 0.78rem; }
}

.seo-text { padding: 60px var(--page-pad) 40px; }
.seo-text__wrap { max-width: 860px; margin: 0 auto; }
.seo-text__wrap h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.seo-text__wrap h3 {
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 700;
  color: var(--brand);
  margin: 28px 0 10px;
}
.seo-text__wrap p {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.85;
  margin-bottom: 10px;
}
.seo-text__cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.seo-text__city {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand);
  background: rgba(177,12,65,0.07);
  border: 1px solid rgba(177,12,65,0.15);
  border-radius: 999px;
  padding: 6px 14px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  white-space: nowrap;
}
.seo-text__city:hover {
  background: rgba(177,12,65,0.12);
  border-color: rgba(177,12,65,0.3);
  transform: translateY(-1px);
}
.seo-text__city:active { transform: translateY(0); }

@media (max-width: 768px) {
  .seo-text { padding: 44px var(--page-pad) 32px; }
  .seo-text__wrap h2 { margin-bottom: 12px; }
  .seo-text__wrap h3 { margin: 22px 0 8px; }
  .seo-text__cities { gap: 7px; margin-top: 14px; }
}
@media (max-width: 480px) {
  .seo-text { padding: 36px var(--page-pad) 28px; }
  .seo-text__wrap p { font-size: 0.87rem; line-height: 1.75; }
  .seo-text__cities { gap: 6px; margin-top: 12px; }
  .seo-text__city {
    font-size: 0.74rem;
    padding: 5px 12px;
    font-weight: 600;
  }
}
@media (max-width: 360px) {
  .seo-text { padding: 28px var(--page-pad) 24px; }
  .seo-text__city { font-size: 0.71rem; padding: 4px 10px; }
}

@keyframes ct-fade-up { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes ct-pop     { from { opacity:0; transform:scale(0.7); } to { opacity:1; transform:scale(1); } }

.contact-section {
  position: relative;
  width: calc(100% - var(--page-pad) * 2);
  margin: 0 var(--page-pad);
  border-radius: 20px;
  padding: 56px 24px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #6f0a2a 0%, #9c0e38 35%, #b10c41 60%, #c21050 100%);
}
.contact-section__shapes { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; overflow: visible; }
.cs { fill: none; stroke: rgba(255,255,255,0.07); stroke-width: 1.5; }
.cs--1 { fill: rgba(255,255,255,0.04); stroke: rgba(255,255,255,0.09); }
.cs--2 { fill: rgba(255,255,255,0.03); stroke: rgba(255,255,255,0.07); }
.cs--3 { fill: rgba(255,255,255,0.05); stroke: rgba(255,255,255,0.10); }
.contact-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 24px; }
.contact-heading {
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  text-align: center;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
  opacity: 0;
  animation: ct-fade-up 0.7s cubic-bezier(0.22,1,0.36,1) 0.15s both;
}
.contact-icons { display: flex; align-items: center; gap: 16px; }
.contact-link {
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  color: #fff;
  text-decoration: none;
  opacity: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  transition: transform 0.25s cubic-bezier(0.22,1,0.36,1), background 0.2s ease, border-color 0.2s ease;
}
.contact-link svg { width: 22px; height: 22px; flex-shrink: 0; transition: transform 0.25s cubic-bezier(0.22,1,0.36,1); }
.contact-link:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.3); }
.contact-link:hover svg { transform: translateY(-3px) scale(1.1); }
.contact-link:active svg { transform: scale(0.95); }
.contact-link:nth-child(1) { animation: ct-pop 0.5s cubic-bezier(0.22,1,0.36,1) 0.35s both; }
.contact-link:nth-child(2) { animation: ct-pop 0.5s cubic-bezier(0.22,1,0.36,1) 0.46s both; }
.contact-link:nth-child(3) { animation: ct-pop 0.5s cubic-bezier(0.22,1,0.36,1) 0.57s both; }
.contact-link:nth-child(4) { animation: ct-pop 0.5s cubic-bezier(0.22,1,0.36,1) 0.68s both; }

@media (max-width: 768px) {
  .contact-section { padding: 44px 20px; border-radius: 16px; }
  .contact-inner { gap: 20px; }
}
@media (max-width: 480px) {
  .contact-section { padding: 36px 16px; border-radius: 14px; width: calc(100% - var(--page-pad) * 2); }
  .contact-heading { font-size: clamp(1.1rem, 6vw, 1.5rem); }
  .contact-link:hover svg { transform: none; }
}
@media (max-width: 360px) {
  .contact-section { padding: 32px 14px; border-radius: 12px; }
  .contact-link { width: 40px; height: 40px; }
  .contact-link svg { width: 18px; height: 18px; }
}

.how__phone { display: block; width: 100%; max-width: 315px; margin: 0 auto; height: auto !important; }
.how__phone-img { width: 100% !important; height: auto !important; aspect-ratio: 9/16 !important; object-fit: cover; display: block; }
@media (max-width: 768px) { .how__phone { max-width: 200px; } }