/* main.css */
/* Material icons base */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Macro sections reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero look tech */
.hero-panel {
  backdrop-filter: blur(18px);
  background: radial-gradient(circle at top, rgba(43, 108, 238, 0.28), transparent 55%) rgba(16, 22, 34, 0.92);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}

.hero-bg {
  background-attachment: fixed;
}

/* Hover service cards */
.card-elevated {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.card-elevated:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6);
  border-color: rgba(255, 255, 255, 0.15);
  background: radial-gradient(circle at top, rgba(43, 108, 238, 0.15), rgba(16, 22, 34, 0.9));
}

/* Scroll cue */
.scroll-cue {
  animation: scroll-cue-bounce 1.6s infinite;
}

@keyframes scroll-cue-bounce {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(6px); opacity: 1; }
}

/* Process steps pop */
.process-step {
  opacity: 0;
  transform: scale(0.92) translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.process-step.step-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* Desktop snap sections */
@media (min-width: 1024px) {
  .snap-section {
    min-height: calc(100vh - 140px);
    display: flex;
    align-items: center;
  }
}

/* Language pills style */
.lang-pill {
  border-radius: 9999px;
  border-width: 1px;
  padding: 0.25rem 0.6rem;
  font-size: 0.7rem;
  line-height: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-color: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-pill.lang-active {
  background: #2b6cee;
  color: #ffffff;
  border-color: transparent;
}

/* Mobile process visibility */
@media (max-width: 767px) {
  .process-step {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
