/* ============================================================
   VELION INTELLIGENCE — CTA Section + Footer + Floating FAB
   ============================================================ */

/* ---------- CTA SECTION ---------- */
.cta {
  background: var(--navy);
  color: white;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.cta .container { position: relative; z-index: 2; }
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.cta h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 24px;
}
.cta p {
  font-size: 18px;
  color: #b8c4d8;
  line-height: 1.6;
  margin-bottom: 0;
}
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cta-btn {
  background: white;
  color: var(--navy);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.15s;
  border: none;
  cursor: pointer;
  text-align: left;
}
.cta-btn:hover { background: #e8e8e0; }
.cta-btn.dark {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
}
.cta-btn.dark:hover { background: rgba(255,255,255,0.08); border-color: white; }
.cta-btn-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.6;
  display: block;
  margin-bottom: 6px;
}
.cta-btn-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.cta-btn-arrow {
  font-size: 24px;
  font-weight: 300;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--navy-deep);
  color: #b8c4d8;
  padding: 80px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid #1a2540;
  margin-bottom: 32px;
}
.footer-brand .logo { height: 27px; margin-bottom: 24px; }
.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 360px;
}
.footer-cert {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #6b8cb8;
  display: flex;
  gap: 24px;
  text-transform: uppercase;
}
.footer-col h5 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  font-size: 13px;
  color: #b8c4d8;
  transition: color 0.15s;
}
.footer-col a:hover { color: white; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  color: #6b8cb8;
  letter-spacing: 0.04em;
}

/* ---------- FLOATING WHATSAPP ---------- */
.fab-wa {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--navy);
  color: white;
  padding: 16px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  z-index: 50;
  box-shadow: 0 8px 24px -8px rgba(10,30,63,0.4);
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.2s;
}
.fab-wa:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
}
.fab-wa::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #4ade80;
  display: inline-block;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(74,222,128,0.3);
}
