/* ============ Reklaamify — core styles ============ */

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

::selection {
  background: #FFDE21;
  color: #0a0a0b;
}

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #0a0a0b; }
::-webkit-scrollbar-thumb { background: #FFDE21; border-radius: 6px; }

/* ============ Nav ============ */
.nav-link {
  position: relative;
  color: rgba(255,255,255,0.75);
  transition: color .2s ease;
}
.nav-link:hover { color: #FFDE21; }
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: #FFDE21;
  transition: width .25s ease;
}
.nav-link:hover::after { width: 100%; }

.lang-btn, .lang-btn-mobile {
  color: rgba(255,255,255,0.6);
  transition: all .2s ease;
}
.lang-btn.active, .lang-btn-mobile.active {
  background: #FFDE21;
  color: #0a0a0b;
}

/* ============ Hero ============ */
.glitch {
  display: inline-block;
  position: relative;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(-2deg); }
  50% { transform: translateY(-18px) rotate(2deg); }
}
.animate-float {
  animation: float 4.5s ease-in-out infinite;
}

/* ============ Marquee ============ */
.marquee {
  animation: marquee-scroll 22s linear infinite;
}
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* ============ Cards ============ */
.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.5rem;
  padding: 2rem;
  transition: all .3s ease;
}
.service-card:hover {
  border-color: #FFDE21;
  transform: translateY(-6px);
  background: rgba(255,222,33,0.05);
  box-shadow: 0 20px 40px -20px rgba(255,222,33,0.25);
}

.step-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.25rem;
  padding: 1.75rem 1.5rem;
  transition: all .3s ease;
}
.step-card:hover {
  border-color: #FF3B30;
  transform: translateY(-4px);
}
.step-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: 2rem;
  color: rgba(255,222,33,0.35);
}

.stat-card {
  text-align: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.25rem;
  padding: 2rem 1.25rem;
  transition: all .3s ease;
}
.stat-card:hover {
  border-color: #FFDE21;
  transform: translateY(-4px);
}

/* ============ Form ============ */
.form-input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: .85rem;
  padding: .85rem 1rem;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  transition: all .2s ease;
}
.form-input:focus {
  outline: none;
  border-color: #FFDE21;
  background: rgba(255,222,33,0.06);
}
select.form-input option {
  background: #141416;
  color: #fff;
}

.scenario-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(255,255,255,0.04);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 1.1rem;
  padding: 1.25rem .75rem;
  cursor: pointer;
  transition: all .25s ease;
}
.scenario-card:hover {
  border-color: rgba(255,222,33,0.5);
  transform: translateY(-3px);
}
.scenario-card:has(input:checked) {
  border-color: #FFDE21;
  background: rgba(255,222,33,0.1);
  box-shadow: 0 0 25px -5px rgba(255,222,33,0.4);
}

/* ============ Reveal on scroll ============ */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============ Misc ============ */
#site-header {
  transition: box-shadow .3s ease;
}
#site-header.scrolled {
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.6);
}

.legal-page h2 {
  font-family: 'Archivo Black', sans-serif;
  color: #FFDE21;
  margin-top: 2rem;
  margin-bottom: .75rem;
  font-size: 1.4rem;
}
.legal-page p, .legal-page li {
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: .75rem;
}
.legal-page ul { list-style: disc; padding-left: 1.5rem; }
