/* ============================================
   IMA IT B.V. — Global Styles
   Light professional theme
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700&family=Outfit:wght@400;500;600;700;800&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --red: #C8381D;
  --red-hover: #B5301A;
  --red-light: #FEF2F0;
  --red-glow: rgba(200, 56, 29, 0.08);

  --charcoal: #2D2D2D;
  --dark: #1A1A1A;

  --white: #FFFFFF;
  --off-white: #FAFAFA;
  --gray-50: #F5F5F6;
  --gray-100: #EEEFF1;
  --gray-200: #D8DAE0;
  --gray-300: #B0B4BD;
  --gray-400: #8A8F9A;
  --gray-500: #6B7080;
  --gray-600: #4A4E59;
  --gray-700: #353840;

  --font-display: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.03);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
  --shadow-card: 0 1px 4px rgba(0,0,0,0.04);

  --radius: 12px;
  --radius-lg: 20px;
  --radius-sm: 8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--gray-600);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; }
a { text-decoration: none; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ============================================
   NAVIGATION
   ============================================ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow 0.3s;
}
.site-nav.scrolled { box-shadow: var(--shadow-sm); }
.nav-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 42px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: block;
  padding: 8px 14px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--gray-600);
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  color: var(--charcoal);
  background: var(--gray-50);
}
/* Dropdown */
.nav-dropdown {
  position: absolute; top: calc(100% + 8px); left: -12px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 240px;
  opacity: 0; visibility: hidden;
  transform: translateY(-4px);
  transition: all 0.2s;
  z-index: 100;
}
.nav-menu > li:hover > .nav-dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown a {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px;
  font-size: 0.9rem;
  color: var(--gray-600);
  border-radius: var(--radius-sm);
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown a:hover { background: var(--gray-50); color: var(--charcoal); }
.nav-dropdown .dd-icon {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: var(--red-light);
  border-radius: 8px; flex-shrink: 0;
}
.nav-dropdown .dd-icon svg { width: 16px; height: 16px; color: var(--red); }
.nav-dropdown .dd-text strong { display: block; font-weight: 600; color: var(--charcoal); font-size: 0.88rem; }
.nav-dropdown .dd-text span { font-size: 0.8rem; color: var(--gray-400); }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red);
  color: white;
  padding: 10px 22px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--red-hover); transform: translateY(-1px); }
.nav-cta svg { width: 16px; height: 16px; }

/* Mobile */
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  width: 40px; height: 40px;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: all 0.3s; }

@media (max-width: 920px) {
  .hamburger { display: flex; }
  .nav-menu, .nav-cta-wrap { display: none; }
  .nav-menu.open {
    display: flex; flex-direction: column;
    position: absolute; top: 70px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    box-shadow: var(--shadow-md);
    padding: 16px 24px; gap: 2px;
  }
  .nav-menu.open .nav-dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; padding: 0 0 0 12px; min-width: unset;
  }
  .nav-cta-wrap.open { display: block; position: absolute; top: auto; left: 0; right: 0; background: var(--white); padding: 0 24px 20px; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.hero-deco {
  position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--red-glow) 0%, transparent 70%);
  pointer-events: none;
}
.hero-deco-2 {
  position: absolute; bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200,56,29,0.03) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--gray-100) 1px, transparent 1px),
                    linear-gradient(90deg, var(--gray-100) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 50% 50% at 70% 30%, rgba(0,0,0,0.3) 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 50% 50% at 70% 30%, rgba(0,0,0,0.3) 0%, transparent 70%);
}
.hero-content { position: relative; z-index: 2; max-width: 680px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red-light);
  color: var(--red);
  padding: 6px 16px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.82rem;
  margin-bottom: 28px;
  opacity: 0; animation: fadeUp 0.7s 0.1s forwards;
}
.hero-badge svg { width: 14px; height: 14px; }
.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  line-height: 1.08;
  color: var(--dark);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
  opacity: 0; animation: fadeUp 0.7s 0.25s forwards;
}
.hero h1 .accent { color: var(--red); }
.hero-sub {
  font-size: 1.15rem;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 540px;
  opacity: 0; animation: fadeUp 0.7s 0.4s forwards;
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.7s 0.55s forwards;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: white;
  padding: 14px 30px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  border-radius: var(--radius-sm);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--red-hover); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(200,56,29,0.2); }
.btn-primary svg { width: 18px; height: 18px; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--charcoal);
  padding: 14px 30px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--gray-200);
  transition: all 0.2s;
  cursor: pointer;
}
.btn-outline:hover { border-color: var(--gray-300); background: var(--gray-50); }
.btn-outline svg { width: 18px; height: 18px; }

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  padding: 48px 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  background: var(--off-white);
}
.trust-items {
  display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.trust-item { text-align: center; flex: 1; min-width: 140px; }
.trust-num {
  font-family: var(--font-display);
  font-weight: 800; font-size: 2rem;
  color: var(--red); line-height: 1;
}
.trust-label {
  font-size: 0.85rem; color: var(--gray-400);
  margin-top: 4px; font-weight: 500;
}

/* ============================================
   SECTIONS
   ============================================ */
section { padding: 100px 0; }
.bg-light { background: var(--off-white); }
.bg-white { background: var(--white); }

.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin-left: auto; margin-right: auto; }

.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-body);
  font-weight: 600; font-size: 0.82rem;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--dark);
  line-height: 1.12;
  letter-spacing: -0.3px;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 560px;
}

/* ============================================
   SERVICE CARDS (Homepage)
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: border-color 0.2s, box-shadow 0.3s, transform 0.2s;
  position: relative;
  display: flex; flex-direction: column;
}
.service-card:hover {
  border-color: var(--gray-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.service-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--red-light);
  border-radius: 10px;
  margin-bottom: 20px;
}
.service-icon svg { width: 22px; height: 22px; color: var(--red); }
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.65;
  flex: 1;
}
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; font-size: 0.88rem;
  color: var(--red);
  margin-top: 18px;
  transition: gap 0.2s;
}
.service-link:hover { gap: 10px; }
.service-link svg { width: 16px; height: 16px; }

@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

/* ============================================
   USP SECTION
   ============================================ */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.usp-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: border-color 0.2s, box-shadow 0.3s;
}
.usp-card:hover {
  border-color: var(--gray-200);
  box-shadow: var(--shadow-md);
}
.usp-num {
  font-family: var(--font-display);
  font-weight: 800; font-size: 2.4rem;
  color: var(--red-light);
  line-height: 1;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(200,56,29,0.15), rgba(200,56,29,0.05));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.usp-card h3 {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 10px;
}
.usp-card p {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.65;
}
@media (max-width: 640px) { .usp-grid { grid-template-columns: 1fr; } }

/* ============================================
   CLOUD FEATURE SECTION
   ============================================ */
.cloud-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.cloud-split.reverse { direction: rtl; }
.cloud-split.reverse > * { direction: ltr; }
.feature-list { list-style: none; margin-top: 32px; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.95rem;
  color: var(--gray-600);
}
.feature-list li:first-child { border-top: 1px solid var(--gray-100); }
.feature-check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  background: var(--red-light);
  border-radius: 6px;
  margin-top: 1px;
}
.feature-check svg { width: 12px; height: 12px; color: var(--red); }

.terminal-mock {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 28px;
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 0.82rem;
  color: var(--gray-500);
  overflow: hidden;
}
.terminal-dots { display: flex; gap: 6px; margin-bottom: 18px; }
.terminal-dots span { width: 10px; height: 10px; border-radius: 50%; }
.terminal-dots span:nth-child(1) { background: #EF4444; }
.terminal-dots span:nth-child(2) { background: #F59E0B; }
.terminal-dots span:nth-child(3) { background: #22C55E; }
.terminal-line { margin: 3px 0; }
.terminal-line .prompt { color: var(--red); font-weight: 600; }
.terminal-line .cmd { color: var(--charcoal); }
.terminal-line .out { color: var(--gray-400); }

@media (max-width: 900px) {
  .cloud-split, .cloud-split.reverse { grid-template-columns: 1fr; gap: 40px; direction: ltr; }
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: var(--dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,56,29,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.cta-inner {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.cta-inner h2 {
  font-family: var(--font-display);
  font-weight: 800; font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--white);
  margin-bottom: 16px;
}
.cta-inner p {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
}
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--dark);
  padding: 14px 30px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  border-radius: var(--radius-sm);
  transition: transform 0.15s, box-shadow 0.2s;
  border: none; cursor: pointer;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.3); }

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 48px;
}
.contact-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-100);
}
.contact-item:first-child { border-top: 1px solid var(--gray-100); }
.contact-label {
  font-weight: 600; font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--gray-400);
  margin-bottom: 6px;
}
.contact-value { font-size: 1.1rem; color: var(--dark); font-weight: 500; }
.contact-value a { color: var(--dark); transition: color 0.2s; }
.contact-value a:hover { color: var(--red); }
.contact-note { font-size: 0.82rem; color: var(--gray-400); margin-top: 3px; font-style: italic; }
.contact-box {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 44px;
}
.contact-box h3 {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 14px;
}
.contact-box p {
  font-size: 0.95rem; color: var(--gray-500);
  line-height: 1.7; margin-bottom: 24px;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  border-top: 1px solid var(--gray-100);
  padding: 64px 0 40px;
  background: var(--off-white);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img { height: 36px; margin-bottom: 14px; }
.footer-brand p { font-size: 0.88rem; color: var(--gray-400); line-height: 1.65; max-width: 260px; }
.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 700; font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  font-size: 0.88rem; color: var(--gray-400);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--red); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--gray-100);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 0.82rem; color: var(--gray-400); }
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================
   SUB PAGE — HERO (dienst page)
   ============================================ */
.sub-hero {
  padding: 140px 0 80px;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}
.sub-hero .hero-deco {
  top: -150px; right: -150px;
  width: 500px; height: 500px;
}
.sub-hero-content { position: relative; z-index: 2; max-width: 640px; }
.breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.85rem; color: var(--gray-400);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--gray-400); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb svg { width: 14px; height: 14px; }
.sub-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 18px;
}
.sub-hero p {
  font-size: 1.1rem; color: var(--gray-500);
  line-height: 1.75; margin-bottom: 28px;
}

/* ============================================
   SUB PAGE — CONTENT
   ============================================ */
.content-section { padding: 80px 0; }
.content-section + .content-section { padding-top: 0; }
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.content-text h2 {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 16px;
}
.content-text h3 {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 12px;
  margin-top: 28px;
}
.content-text p {
  font-size: 0.95rem; color: var(--gray-500);
  line-height: 1.75; margin-bottom: 16px;
}
.content-text p + p { margin-top: 0; }
@media (max-width: 768px) {
  .content-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* Sidebar CTA */
.sidebar-cta {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 36px;
  position: sticky; top: 100px;
}
.sidebar-cta h4 {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 12px;
}
.sidebar-cta p {
  font-size: 0.9rem; color: var(--gray-500);
  line-height: 1.65; margin-bottom: 20px;
}
.sidebar-links { list-style: none; margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--gray-100); }
.sidebar-links li { margin-bottom: 8px; }
.sidebar-links a {
  font-size: 0.88rem; color: var(--gray-500);
  display: flex; align-items: center; gap: 8px;
  transition: color 0.2s;
}
.sidebar-links a:hover { color: var(--red); }
.sidebar-links a svg { width: 14px; height: 14px; color: var(--red); }

/* ============================================
   RELATED SERVICES
   ============================================ */
.related-services { padding: 80px 0; background: var(--off-white); }
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}
@media (max-width: 768px) { .related-grid { grid-template-columns: 1fr; } }

/* ============================================
   FAQ / SCHEMA
   ============================================ */
.faq-list { margin-top: 36px; max-width: 720px; }
.faq-item {
  border-bottom: 1px solid var(--gray-100);
  padding: 20px 0;
}
.faq-item:first-child { border-top: 1px solid var(--gray-100); }
.faq-q {
  font-family: var(--font-display);
  font-weight: 600; font-size: 1.02rem;
  color: var(--dark);
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  background: none; border: none; width: 100%; text-align: left;
  padding: 0;
}
.faq-q svg {
  width: 20px; height: 20px; color: var(--gray-300);
  transition: transform 0.3s; flex-shrink: 0;
}
.faq-q.open svg { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s;
  font-size: 0.92rem; color: var(--gray-500); line-height: 1.7;
}
.faq-a.open { max-height: 300px; padding-top: 12px; }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-50); }
::-webkit-scrollbar-thumb { background: var(--gray-200); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gray-300); }
