
.cta-section {
  position: relative;
  padding: 60px 0;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 1;
  pointer-events: none;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px 0;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.cta-subtitle {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 28px 0;
  line-height: 1.5;
}

.cta-content .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: white;
  color: #10b981;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-content .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  background: #f8fafc;
}

.cta-content .btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.cta-content .btn:hover svg {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .cta-section {
    padding: 48px 0;
  }

  .cta-title {
    font-size: 28px;
  }

  .cta-subtitle {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .cta-content .btn {
    padding: 12px 28px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .cta-section {
    padding: 40px 0;
  }

  .cta-title {
    font-size: 24px;
  }

  .cta-subtitle {
    font-size: 14px;
  }

  .cta-content .btn {
    width: 100%;
    justify-content: center;
  }
}
