/* ---------------------------------------------
   DiPStrategy -- CTA Section
   style/cta.css
   --------------------------------------------- */

.cta-section {
  background: #080808;
  padding: 56px 56px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Subtle pattern overlay */
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/pattern-01.png');
  background-repeat: repeat;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}

/* --- INNER --- */
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

/* --- LABEL --- */
.cta-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #DEFF2D;
  margin-bottom: 14px;
}

.cta-label-star {
  width: 14px;
  height: 14px;
  animation: spin 12s linear infinite;
  flex-shrink: 0;
}

/* --- HEADLINE --- */
.cta-headline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 200;
  font-size: clamp(30px, 2.8vw, 85px);
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.cta-headline strong {
  font-weight: 900;
  color: #DEFF2D;
}

/* --- DESC --- */
.cta-desc {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.4);
  margin-bottom: 28px;
}

/* --- FORM -- single row --- */
.cta-form {
  display: flex;
  align-items: stretch;
  gap: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}

.cta-input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: none;
  border-right: 1px solid rgba(255,255,255,0.1);
  padding: 14px 18px;
  color: rgba(255,255,255,0.88);
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  outline: none;
  transition: background 0.2s;
  min-width: 0;
}

.cta-input::placeholder { color: rgba(255,255,255,0.22); }
.cta-input:focus { background: rgba(255,255,255,0.09); }

.cta-submit {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #DEFF2D;
  border: none;
  padding: 14px 24px;
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #080808;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
}

.cta-submit:hover { background: #f0ff50; }
.cta-submit svg { width: 18px; height: 18px; flex-shrink: 0; }

/* --- NOTE --- */
.cta-note {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: 11px;
  color: rgba(255,255,255,0.18);
  margin-top: 12px;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .cta-section { padding: 48px 24px; }
  .cta-form    { flex-direction: column; border-radius: 10px; }
  .cta-input   { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .cta-submit  { justify-content: center; }
}

