
    /* ==========================
       CTA Component #2
       ========================== */

    .cta2 {
        border-radius:24px;
      padding: 80px 20px;
      background: linear-gradient(135deg, #0b0b12 0%, #121226 45%, #0b0b12 100%);
      color: #fff;
    }

    .cta2-container {
      max-width: 1150px;
      margin: auto;
      display: grid;
      grid-template-columns: 1.25fr 0.85fr;
      gap: 26px;
      align-items: center;
    }

    .cta2-tag {
      display: inline-flex;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255,255,255,0.12);
      padding: 8px 12px;
      border-radius: 999px;
      font-weight: 900;
      font-size: 13px;
      margin-bottom: 16px;
    }

    .cta2-title {
      font-size: 44px;
      line-height: 1.05;
      font-weight: 1000;
      margin-bottom: 16px;
    }

    .cta2-text {
      font-size: 16px;
      opacity: 0.9;
      margin-bottom: 18px;
      max-width: 600px;
    }

    .cta2-text b {
      opacity: 1;
    }

    .cta2-points {
      list-style: none;
      margin-bottom: 20px;
      display: grid;
      gap: 10px;
      font-size: 14px;
      opacity: 0.95;
    }

    .cta2-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 14px;
    }

    .cta2-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 18px;
      border-radius: 14px;
      font-weight: 1000;
      transition: 0.2s ease-in-out;
      cursor: pointer;
      user-select: none;
    }

    .cta2-btn.primary {
      background: #00d4ff;
      color: #001018;
      box-shadow: 0 14px 40px rgba(0, 212, 255, 0.25);
    }

    .cta2-btn.primary:hover {
      transform: translateY(-2px);
      filter: brightness(1.06);
    }

    .cta2-btn.ghost {
      border: 1px solid rgba(255,255,255,0.18);
      background: rgba(255,255,255,0.06);
    }

    .cta2-btn.ghost:hover {
      transform: translateY(-2px);
      border-color: rgba(255,255,255,0.35);
    }

    .cta2-footnote {
      font-size: 13px;
      opacity: 0.75;
    }

    /* Right Card */
    .cta2-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 18px;
      padding: 24px;
      backdrop-filter: blur(10px);
      box-shadow: 0px 15px 35px rgba(0,0,0,0.35);
    }

    .cta2-card h3 {
      font-size: 20px;
      font-weight: 1000;
      margin-bottom: 8px;
    }

    .cta2-card p {
      font-size: 14px;
      opacity: 0.85;
      margin-bottom: 16px;
    }

    .cta2-input-wrap {
      display: grid;
      gap: 10px;
      margin-bottom: 14px;
    }

    .cta2-input-wrap input {
      width: 100%;
      padding: 13px 14px;
      border-radius: 12px;
      outline: none;
      border: 1px solid rgba(255,255,255,0.12);
      background: rgba(0,0,0,0.35);
      color: #fff;
      font-weight: 700;
      font-size: 14px;
    }

    .cta2-input-wrap input::placeholder {
      color: rgba(255,255,255,0.55);
      font-weight: 600;
    }

    .cta2-btn.big {
      width: 100%;
      padding: 15px 16px;
      background: linear-gradient(135deg, #ff416c, #ff4b2b);
      color: #fff;
      border-radius: 14px;
      font-weight: 1000;
      margin-bottom: 14px;
    }

    .cta2-btn.big:hover {
      transform: translateY(-2px);
      filter: brightness(1.06);
    }

    .cta2-badges {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      font-size: 12px;
      opacity: 0.9;
    }

    .cta2-badges span {
      padding: 8px 10px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.12);
      background: rgba(255,255,255,0.05);
      font-weight: 800;
    }

    