/* ============================
   Lazy Block: cta (compact horizontal)
   ============================ */

.cta {
  position: relative;
  padding: 36px 0;
  background-color: var(--color-accent);
  color: var(--color-white);
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(255, 255, 255, 0.04) 20px,
    rgba(255, 255, 255, 0.04) 21px
  );
  pointer-events: none;
}

.cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.6) 20%, rgba(255, 255, 255, 0.6) 80%, transparent 100%);
}

.cta__container {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.cta__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1 1 auto;
  min-width: 280px;
}

.cta__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: var(--color-white);
}

.cta__desc {
  margin: 2px 0 0;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.85);
}

.cta__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.cta__phone {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-white);
  text-decoration: none;
  transition: opacity 0.25s ease;
}

.cta__phone:hover { opacity: 0.8; }

.cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-accent);
  background: var(--color-white);
  border: 1px solid var(--color-white);
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.cta__btn:hover {
  background: transparent;
  color: var(--color-white);
  transform: translateY(-2px);
}

.cta__btn svg { width: 14px; height: 14px; transition: transform 0.2s ease; }
.cta__btn:hover svg { transform: translateX(3px); }

.cta__animate {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.cta__animate--visible { opacity: 1; transform: translateY(0); }

@media (max-width: 720px) {
  .cta { padding: 24px 0; }
  .cta__container { padding: 0 var(--container-padding-mobile); gap: 16px; }
  .cta__title { font-size: 18px; }
  .cta__actions { gap: 12px; width: 100%; }
  .cta__btn { width: 100%; justify-content: center; }
}
