/* CTA Subscribe Styles */

.cta-subscribe {
    --cta-bg-dark: #232423;
    --cta-bg-light: #eaf3e3;
    --text: #0f172a;
    --muted: #64748b;
    --button: #2e2e2e;
    --button-hover: #1f1f1f;
    --ring: rgba(22, 163, 74, 0.35);
    --border: #e5e7eb;
    --white: #ffffff;
  }
  
  .cta-subscribe {
    position: relative;
    padding: 56px 0;
    background: linear-gradient(90deg, rgb(212 255 212) 0%, rgb(234 243 227) 100%);
    overflow: hidden;
  }
  
  .cta-subscribe .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
    text-align: center;
  }
  
  /* Optional soft texture */
  .cta-noise {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(rgba(0,0,0,0.04) 1px, transparent 1px);
    background-size: 6px 6px;
    opacity: .4;
  }
  
  /* Title and subtitle */
  .cta-title {
    font-family: "Bebas Neue", system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans";
    font-size: clamp(26px, 4.2vw, 40px);
    letter-spacing: .8px;
    color: #111827;
    margin: 0 0 8px;
  }
  
  .cta-subtitle {
    color: var(--muted);
    font-size: clamp(13px, 2.2vw, 15.5px);
    line-height: 1.7;
    max-width: 760px;
    margin: 0 auto 20px;
  }
  
  /* Form */
  .cta-form {
    margin-top: 6px;
  }
  
  .cta-input-group {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
  }
  
  /* Input */
  .cta-input {
    width: min(440px, 72vw);
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--white);
    color: var(--text);
    outline: none;
    font-size: 14px;
    transition: box-shadow .2s ease, border-color .2s ease, transform .04s ease, background-color .2s ease;
  }
  
  .cta-input::placeholder {
    color: #a1a1aa;
  }
  
  .cta-input:focus {
    border-color: #16a34a;
    box-shadow: 0 0 0 4px var(--ring);
    background: #fff;
  }
  
  /* Button */
  .cta-button {
    height: 42px;
    padding: 0 18px;
    border: 0;
    border-radius: 999px;
    background: var(--button);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .2px;
    cursor: pointer;
    transition: transform .06s ease, box-shadow .2s ease, background-color .2s ease;
    box-shadow: 0 8px 18px rgba(0,0,0,.12);
  }
  
  .cta-button:hover {
    background: var(--button-hover);
    transform: translateY(-1px);
  }
  
  .cta-button:active {
    transform: translateY(0);
  }
  
  /* Responsive */
  @media (max-width: 640px) {
    .cta-input-group {
      width: 100%;
      display: grid;
      grid-template-columns: 1fr;
      gap: 10px;
    }
    .cta-input {
      width: 100%;
    }
    .cta-button {
      width: 100%;
    }
  }