.bottom-cta {
  padding: 100px 80px 180px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bottom-cta h2 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  padding: 0.1em 0;
  margin-bottom: 40px;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
  position: relative;
}

.bottom-cta-btn-group {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.bottom-cta-btn-primary {
  background: #1e40af;
  color: #fff;
  padding: 14px 32px;
  border-radius: 99px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  user-select: none;
  box-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.25), 
    inset 0 1px 0 rgba(255, 255, 255, 0.2), 
    inset 0 -1px 1px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
  font-size: 1.05rem;
}

.bottom-cta-btn-primary:hover {
  background: #1d4ed8;
  color: #fff;
  box-shadow: 
    0 5px 14px rgba(0, 0, 0, 0.3), 
    inset 0 1px 0 rgba(255, 255, 255, 0.25), 
    inset 0 -1px 1px rgba(0, 0, 0, 0.2);
}


@media (max-width: 768px) {
  .bottom-cta {
    padding: 80px 24px;
    background: none;
  }

  .bottom-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }

  .bottom-cta-btn-group {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .bottom-cta-btn-primary {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 1rem;
  }
}