/* ══════════════════════════════════════════
   ABOUT CTA BLOCK  —  Redesigned
══════════════════════════════════════════ */
.about-cta {
  position: relative;
  background: var(--black);
  padding: 120px 0;
  overflow: hidden;
  text-align: center;
}

/* ── Background grid ── */
.acta-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(4, 157, 191, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(4, 157, 191, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

/* ── Top glow line ── */
.about-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  z-index: 1;
}

/* ── Animated scan line ── */
.acta-scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(4, 157, 191, 0.4) 50%, transparent 100%);
  animation: acta-scan-move 6s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}
@keyframes acta-scan-move {
  0%   { top: 0%;   opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}


/* ── Inner card ── */
.acta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(4, 157, 191, 0.18);
  border-radius: 24px;
  padding: 64px 56px;
  backdrop-filter: blur(12px);
  box-shadow:
    0 0 0 1px rgba(4, 157, 191, 0.05),
    0 40px 80px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Radial glow behind card */
.acta-inner::before {
  content: "";
  position: absolute;
  inset: -80px;
  background: radial-gradient(ellipse at 50% 40%, rgba(4, 157, 191, 0.12) 0%, transparent 65%);
  pointer-events: none;
  z-index: -1;
}

/* ── Badge (replaces icon + label) ── */
.acta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font: var(--body-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 28px;
  border: 1px solid rgba(4, 157, 191, 0.3);
  padding: 7px 18px;
  border-radius: 999px;
  background: rgba(4, 157, 191, 0.08);
}

.acta-badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 6px var(--blue);
  animation: acta-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes acta-pulse {
  0%, 100% { opacity: 1;   transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.75); }
}

/* ── Title ── */
.acta-title {
  font: var(--h2);
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.08;
  margin-bottom: 20px;
}

.acta-title--accent {
  color: var(--blue);
}

/* ── Description ── */
.acta-desc {
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}

/* ── Trust chips ── */
.acta-chips {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 44px;
}

.acta-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font: var(--body-s);
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 6px 14px;
  letter-spacing: 0.04em;
}

.acta-chip svg {
  color: var(--blue);
  flex-shrink: 0;
}

/* ── Actions ── */
.acta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.acta-btn-primary {
  /* inherits .btn .btn-primary */
}

.acta-btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.acta-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .about-cta {
    padding: 80px 0;
  }
  .acta-inner {
    padding: 48px 32px;
    border-radius: 18px;
  }
  .acta-title {
    font-size: 36px;
  }
  .acta-corner {
    display: none;
  }
}

@media (max-width: 480px) {
  .about-cta {
    padding: 60px 0;
  }
  .acta-inner {
    padding: 40px 20px;
  }
  .acta-chips {
    gap: 8px;
  }
  .acta-actions {
    flex-direction: column;
    width: 100%;
  }
  .acta-actions .btn,
  .acta-btn-ghost {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}
