.cta {
  padding: 100px 48px;
  position: relative;
  overflow: hidden;
}

.cta-pulse {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.02) 0%, transparent 70%);
  animation: sonarPulse 4s ease-in-out infinite;
  pointer-events: none;
}

.cta-pulse:nth-child(2) {
  animation-delay: -2s;
  width: 400px; height: 400px;
}

@keyframes sonarPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.5; }
}

.cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 60px;
  align-items: center;
}

/* ── Left: headline + Calendly CTA ── */

.cta-left {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-ship {
  width: 100px;
  height: auto;
  margin-bottom: 28px;
  opacity: 0.45;
}

.cta-title {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  color: var(--text);
}

.cta-title span { color: var(--gold); }

.cta-body {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 400px;
}

/* ── Center divider ── */

.cta-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  align-self: stretch;
}

.cta-divider-line {
  flex: 1;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--surface-border), transparent);
}

.cta-divider-text {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-faint);
  letter-spacing: 1px;
}

/* ── Right: contact form ── */

.cta-right {
  display: flex;
  flex-direction: column;
}

.cta-form-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}

.cta-form-subtitle {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 300;
  color: var(--text-dim);
  margin-bottom: 28px;
  line-height: 1.5;
}
