

    /* =========================
       CTA SECTION (Resumeera)
       ========================= */

    .cta-resumeera {
        border:1px solid red;
      padding: 70px 20px;
      background: radial-gradient(circle at top left, #1a2a6c 0%, #121221 55%, #0b0b12 100%);
      color: #fff;
      border-radius:30px;
    }

    .cta-wrap {
      max-width: 1100px;
      margin: auto;
      display: grid;
      grid-template-columns: 1.4fr 1fr;
      gap: 25px;
      align-items: center;
      border-radius:30px;
    }

    .cta-left h2 {
      font-size: 40px;
      line-height: 1.1;
      margin-bottom: 14px;
      font-weight: 900;
    }

    .cta-left p {
      font-size: 17px;
      opacity: 0.92;
      line-height: 1.6;
      margin-bottom: 22px;
    }

    .cta-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 18px;
    }

    .cta-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      padding: 14px 18px;
      border-radius: 14px;
      font-weight: 800;
      transition: 0.2s ease-in-out;
      cursor: pointer;
      user-select: none;
    }

    .cta-btn.primary {
      background: #00d4ff;
      color: #001018;
      box-shadow: 0px 10px 30px rgba(0, 212, 255, 0.25);
    }

    .cta-btn.primary:hover {
      transform: translateY(-2px);
      filter: brightness(1.05);
    }

    .cta-btn.secondary {
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: #ffffff;
      background: rgba(255, 255, 255, 0.06);
    }

    .cta-btn.secondary:hover {
      transform: translateY(-2px);
      border-color: rgba(255, 255, 255, 0.35);
    }

    .cta-trust {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
      font-size: 14px;
      opacity: 0.85;
    }

    .cta-right .cta-card {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255,255,255,0.12);
      padding: 22px;
      border-radius: 18px;
      backdrop-filter: blur(10px);
      box-shadow: 0px 15px 35px rgba(0,0,0,0.35);
    }

    .cta-mini {
      font-size: 13px;
      letter-spacing: 0.6px;
      text-transform: uppercase;
      opacity: 0.75;
      margin-bottom: 10px;
    }

    .cta-right h3 {
      font-size: 26px;
      margin: 0 0 8px;
      font-weight: 900;
    }

    .cta-small {
      opacity: 0.85;
      font-size: 15px;
      line-height: 1.55;
      margin-bottom: 18px;
    }

    .cta-btn.card-btn {
      width: 100%;
      background: linear-gradient(135deg, #ff416c, #ff4b2b);
      color: white;
      border-radius: 14px;
      padding: 14px;
      font-weight: 900;
    }

    .cta-btn.card-btn:hover {
      transform: translateY(-2px);
      filter: brightness(1.05);
    }

    /* Footer */
    .demo-footer {
      max-width: 1100px;
      margin: auto;
      padding: 35px 20px 70px;
      opacity: 0.7;
      font-size: 13px;
      text-align: center;
    }

    @media (max-width: 900px) {
      .demo-content {
        grid-template-columns: 1fr;
      }

      .cta-wrap {
        grid-template-columns: 1fr;
      }

      .cta-left h2 {
        font-size: 32px;
      }
    }