/* Smart & Talented Premium Styles */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

:root {
  --primary: #3456fe;
  --primary-hover: #2141e0;
  --primary-light: #e1edff;
  --primary-subtle: #f4f8ff;
  --text-dark: #121313;
  --text-muted: #58595b;
  --bg-slate: #f8f9fc;
  --border-color: #e2e8f0;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-dark);
  background-color: #ffffff;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Rounded Corporate Buttons */
.btn-primary {
  background-color: var(--primary);
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 14px;
  padding: 18px 36px;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(52, 86, 254, 0.28);
  border: none;
}
.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(52, 86, 254, 0.38);
}

.btn-secondary {
  background-color: #ffffff;
  color: var(--text-dark);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 14px;
  padding: 18px 36px;
  border: 1.5px solid var(--border-color);
  transition: all 0.25s ease-in-out;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  background-color: var(--primary-light);
  transform: translateY(-2px);
}

/* FAQ Styling matching Tilda block */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-item.active .faq-icon {
  color: var(--primary);
}

/* Custom Modal Backdrop */
.modal-backdrop {
  background-color: rgba(18, 19, 19, 0.65);
  backdrop-filter: blur(5px);
}

/* Continuous Horizontal Auto-Scrolling Marquee Slider */
@keyframes marquee {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}

.animate-marquee {
  display: inline-flex;
  align-items: center;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.animate-marquee:hover {
  animation-play-state: paused;
}
