/* ═══════════════════════════════════════════
   CTA / КОНТАКТ
═══════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(140deg, #172B0E 0%, #1E3516 55%, #111809 100%);
  padding: 130px 56px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: 'EG';
  position: absolute; font-family: var(--serif); font-size: 340px; font-weight: 600;
  color: rgba(255,255,255,.025); top: 50%; left: 50%;
  transform: translate(-50%,-50%); pointer-events: none; letter-spacing: -.05em;
}
.cta-section .tag { justify-content: center; }
.cta-section h2 { max-width: 620px; margin: 0 auto 20px; }
.cta-desc {
  font-size: 16px; font-weight: 400; line-height: 1.85;
  color: rgba(242,232,214,.68); max-width: 440px; margin: 0 auto 48px;
}
.cta-form { display: flex; max-width: 480px; margin: 0 auto; }
.cta-input {
  flex: 1; padding: 17px 22px;
  background: rgba(242,232,214,.08); border: 1.5px solid rgba(242,232,214,.22);
  color: var(--cream); font-family: var(--sans); font-size: 14px; outline: none;
  transition: border-color .3s;
}
.cta-input::placeholder { color: rgba(242,232,214,.38); }
.cta-input:focus { border-color: var(--sage); }
.cta-sub {
  background: var(--moss); color: var(--cream); border: none;
  padding: 17px 32px; font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase; cursor: none;
  transition: background .3s;
}
.cta-sub:hover { background: var(--gold); }
