/* Home page CTA section */
.simple-cta {
  /*background:
    linear-gradient(to bottom,
      rgba(10, 10, 10, 0.8) 0%,
      rgba(0, 163, 255, 0.1) 100%
    );
  backdrop-filter: blur(15px) saturate(120%);
  -webkit-backdrop-filter: blur(15px) saturate(120%)*/;
  padding: 120px 20px;
  padding-top: 200px;
  text-align: center;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-top: 0;
  z-index: 10;
}

#cta-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 60px 40px;
}

.cta-title {
  font-size: clamp(48px, 8vw, 72px);
  font-weight: 700;
  margin: 0 0 20px;
  color: #e5e5e5;
  letter-spacing: -0.02em;
}

.cta-subtitle {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  color: #a1a1a1;
  margin: 0 0 50px;
  letter-spacing: 0.01em;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-block;
  padding: 18px 48px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  min-width: 200px;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}

.cta-button.primary {
  background: linear-gradient(135deg, #4a4a4a, #353839);
  color: white;
  border: 2px solid transparent;
  box-shadow: 0 4px 16px rgba(100,100,100,0.3);
}

.cta-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgb(128, 128, 128);
  filter: brightness(1.05);
}

.cta-button.primary .button-text {
  position: relative;
  z-index: 1;
}

.cta-button.secondary {
  background: rgba(255,255,255,0.05);
  color: #e5e5e5;
  border: 2px solid rgba(122,122,122,0.3);
  backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
  background: rgba(0,163,255,0.1);
  border-color: #4a4a4a;
  transform: translateY(-2px);
}

@keyframes breathe {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

@media (max-width: 768px) {
  .simple-cta {
    padding: 80px 20px;
    padding-top: 120px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-button {
    padding: 14px 32px;
    font-size: 15px;
    width: auto;
    max-width: 240px;
    min-width: 180px;
  }
}

/* News & Blog Section */
.news-blog-section {
  padding: 80px 0;
  background: var(--color-primary);
}

.news-blog-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.news-blog-section h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #1a1a1a, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.news-blog-section .section-header p {
  color: var(--color-text-muted);
  font-size: 1.1rem;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.content-block {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #939393;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  transform: translateY(-2px);
}

.content-block:hover {
  background: rgba(255, 255, 255, 0.03);
}

.content-block h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--color-text);
}

.content-desc {
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 0.95rem;
}

.content-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.1);
}

.content-link:hover {
  background: rgba(0, 163, 255, 0.2);
  gap: 15px;
}

.content-link svg {
  transition: transform 0.3s ease;
}

.content-link:hover svg {
  transform: translateX(3px);
}
