/* ===========================
   RESET & BASE
   =========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:        #1d4ed8;
  --blue-mid:    #2563eb;
  --blue-light:  #dbeafe;
  --blue-dark:   #1e3a8a;
  --orange:      #f97316;
  --orange-dark: #ea6b0a;
  --navy:        #0f172a;
  --navy-mid:    #1e293b;
  --slate:       #475569;
  --slate-light: #94a3b8;
  --bg:          #ffffff;
  --bg-light:    #f8fafc;
  --border:      #e2e8f0;
  --green:       #16a34a;
  --green-bg:    #dcfce7;
  --radius:      10px;
  --radius-lg:   16px;
  --shadow:      0 2px 16px rgba(0,0,0,.07);
  --shadow-lg:   0 8px 40px rgba(0,0,0,.12);
  --transition:  0.22s ease;
  --font:        'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--navy);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ===========================
   UTILITY
   =========================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 88px 0; }
.section-light { background: var(--bg-light); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-header h2 {
  font-size: clamp(26px, 3.8vw, 38px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-header p { color: var(--slate); font-size: 17px; }

.section-tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue-mid);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  line-height: 1;
}
.btn-primary {
  background: var(--blue-mid);
  color: #fff;
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,99,235,.3);
}
.btn-outline {
  border-color: rgba(255,255,255,.55);
  color: #fff;
  background: transparent;
}
.btn-outline:hover { background: rgba(255,255,255,.1); }
.btn-ghost {
  color: var(--slate);
  background: transparent;
  border-color: var(--border);
}
.btn-ghost:hover { background: var(--bg-light); border-color: var(--slate-light); }
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-full { width: 100%; justify-content: center; }

/* ===========================
   GROUP BAR
   =========================== */
.group-bar {
  background: var(--navy-mid);
  padding: 7px 0;
  font-size: 13px;
}
.group-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.group-label { color: rgba(255,255,255,.55); }
.group-label strong { color: rgba(255,255,255,.85); }
.group-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}
.group-nav a {
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
  font-size: 13px;
}
.group-nav a:hover,
.group-nav a.active { color: #fff; }
.group-nav .active { font-weight: 600; }
.divider { color: rgba(255,255,255,.2); }

/* ===========================
   HEADER / NAV
   =========================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0;
  background: rgba(15,23,42,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: all var(--transition);
}
.site-header.scrolled {
  background: rgba(255,255,255,.97);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-mark {
  width: 38px; height: 38px;
  background: var(--blue-mid);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: -.5px;
}
.logo-mark-sm { width: 32px; height: 32px; font-size: 12px; }
.logo-text-wrap { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name { font-weight: 800; font-size: 17px; color: #fff; transition: color var(--transition); }
.site-header.scrolled .logo-name { color: var(--navy); }
.logo-nl { color: var(--orange); }
.logo-sub { font-size: 11px; color: rgba(255,255,255,.45); font-weight: 500; transition: color var(--transition); }
.site-header.scrolled .logo-sub { color: var(--slate-light); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  transition: color var(--transition);
}
.main-nav a:hover { color: #fff; }
.site-header.scrolled .main-nav a { color: var(--slate); }
.site-header.scrolled .main-nav a:hover { color: var(--navy); }
.site-header.scrolled .main-nav .btn-primary { color: #fff; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: rgba(255,255,255,.8);
  border-radius: 2px;
  transition: all var(--transition);
}
.site-header.scrolled .hamburger span { background: var(--navy); }

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: calc(100vh - 64px - 35px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 55%, #1d4ed8 100%);
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1600&q=50') center/cover no-repeat;
  opacity: .06;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  color: #fff;
}

.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 999px;
  letter-spacing: .04em;
}
.badge-wkb {
  background: rgba(37,99,235,.25);
  border: 1px solid rgba(96,165,250,.4);
  color: #93c5fd;
}
.badge-bbl {
  background: rgba(249,115,22,.15);
  border: 1px solid rgba(249,115,22,.35);
  color: #fdba74;
}

.hero-content h1 {
  font-size: clamp(38px, 5.5vw, 66px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 22px;
  letter-spacing: -.02em;
}
.hero-content h1 em {
  font-style: normal;
  color: #60a5fa;
}

.hero-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255,255,255,.72);
  max-width: 600px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(8px);
  max-width: 680px;
}
.pillar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  flex: 1;
  min-width: 150px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  border-right: 1px solid rgba(255,255,255,.1);
}
.pillar:last-child { border-right: none; }
.pillar-icon { font-size: 20px; }

.hero-shapes {
  position: absolute;
  inset: 0; z-index: 1;
  pointer-events: none;
}
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .12;
}
.shape-1 { width: 700px; height: 700px; background: #60a5fa; top: -300px; right: -150px; }
.shape-2 { width: 450px; height: 450px; background: var(--orange); bottom: -100px; right: 100px; }

/* ===========================
   WKB UITLEG
   =========================== */
.wkb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 36px;
}
.wkb-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.wkb-card:hover {
  border-color: var(--blue-mid);
  box-shadow: 0 4px 24px rgba(37,99,235,.1);
}
.wkb-step {
  font-size: 36px;
  font-weight: 900;
  color: var(--blue-light);
  line-height: 1;
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}
.wkb-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.wkb-card p { font-size: 14px; color: var(--slate); line-height: 1.7; }

.wkb-info-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--blue-light);
  border: 1px solid #bfdbfe;
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  flex-wrap: wrap;
}
.info-banner-icon { font-size: 24px; flex-shrink: 0; }
.wkb-info-banner > div {
  flex: 1;
  font-size: 14px;
  color: var(--blue-dark);
  line-height: 1.6;
}
.wkb-info-banner strong { font-weight: 700; }
.wkb-info-banner .btn { flex-shrink: 0; }

/* ===========================
   ZELF-CHECK TOOL
   =========================== */
.check-wrapper {
  max-width: 820px;
  margin: 0 auto;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.check-progress {
  height: 4px;
  background: var(--border);
}
.progress-bar {
  height: 100%;
  background: var(--blue-mid);
  border-radius: 0 2px 2px 0;
  transition: width .35s ease;
  width: 20%;
}

.check-form { padding: 40px 48px; }

.check-step { display: none; }
.check-step.active { display: block; }

.check-step h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}
.step-desc {
  color: var(--slate);
  font-size: 15px;
  margin-bottom: 28px;
}

.radio-group {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin-bottom: 32px;
}
.radio-group-2 { grid-template-columns: repeat(3, 1fr); }

.radio-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 18px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}
.radio-card:hover { border-color: var(--blue-mid); background: var(--blue-light); }
.radio-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}
.radio-card:has(input:checked) {
  border-color: var(--blue-mid);
  background: var(--blue-light);
}
.rc-icon { font-size: 24px; margin-bottom: 4px; }
.rc-title { font-size: 14px; font-weight: 600; color: var(--navy); }
.rc-desc  { font-size: 12px; color: var(--slate); line-height: 1.4; }

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin-bottom: 32px;
}
.checkbox-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}
.checkbox-card:hover { border-color: var(--blue-mid); }
.checkbox-card:has(input:checked) {
  border-color: var(--blue-mid);
  background: var(--blue-light);
}
.checkbox-card input { width: 16px; height: 16px; accent-color: var(--blue-mid); }
.cc-icon { font-size: 20px; }
.cc-title { font-size: 13px; font-weight: 600; }

.step-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.check-result {
  padding: 56px 48px;
  text-align: center;
}
.result-icon { font-size: 56px; margin-bottom: 16px; }
.check-result h3 { font-size: 24px; font-weight: 800; margin-bottom: 12px; }
.check-result p { color: var(--slate); font-size: 16px; max-width: 500px; margin: 0 auto 32px; line-height: 1.7; }
.result-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ===========================
   PROCESS TIMELINE
   =========================== */
.process-timeline {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.timeline-item {
  display: flex;
  gap: 28px;
  padding-bottom: 40px;
  position: relative;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 44px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline-item:last-child::before { display: none; }

.tl-marker {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--blue-mid);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.tl-content { flex: 1; padding-top: 6px; }
.tl-content h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.tl-content p { color: var(--slate); font-size: 14px; line-height: 1.75; margin-bottom: 10px; }
.tl-tag {
  display: inline-block;
  background: var(--bg-light);
  border: 1px solid var(--border);
  color: var(--slate);
  font-size: 12px;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 999px;
}

/* ===========================
   FAQ
   =========================== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
}
.faq-item summary {
  padding: 18px 24px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 400;
  color: var(--slate-light);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item summary:hover { background: var(--bg-light); }
.faq-body {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--slate);
  line-height: 1.75;
}
.faq-body a { color: var(--blue-mid); text-decoration: underline; }

/* ===========================
   CONTACT
   =========================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 14px;
  color: var(--navy);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--slate-light); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.form-group-check { flex-direction: row; align-items: center; }
.inline-check {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: var(--slate);
}
.inline-check input { width: 15px; height: 15px; accent-color: var(--blue-mid); }
.inline-check a { color: var(--blue-mid); text-decoration: underline; }

.form-success {
  display: none;
  background: var(--green-bg);
  border: 1px solid #86efac;
  color: #14532d;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
}
.form-success.visible { display: block; }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-info-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.contact-info-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
}
.info-item:last-child { margin-bottom: 0; }
.info-icon {
  width: 38px; height: 38px;
  background: var(--blue-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.info-item strong { display: block; font-size: 12px; font-weight: 700; color: var(--slate); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 3px; }
.info-item a, .info-item span { display: block; font-size: 14px; color: var(--navy); }
.info-item a:hover { color: var(--blue-mid); text-decoration: underline; }
.info-note { font-size: 12px !important; color: var(--slate-light) !important; }

.highlight-card {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 100%);
  border-color: transparent;
  color: #fff;
}
.highlight-card h3 { color: #fff; border-bottom-color: rgba(255,255,255,.15); }
.highlight-icon { font-size: 28px; margin-bottom: 10px; }
.highlight-card p { font-size: 14px; color: rgba(255,255,255,.8); margin-bottom: 16px; line-height: 1.6; }
.highlight-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.highlight-list li { font-size: 13px; color: rgba(255,255,255,.85); }
.highlight-list strong { color: #fff; }

.group-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
}
.group-label-sm {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--slate-light);
  margin-bottom: 14px;
}
.group-links { display: flex; flex-direction: column; gap: 10px; }
.group-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.group-link:hover { border-color: var(--blue-mid); background: var(--bg-light); }
.group-link > div { flex: 1; }
.group-link strong { display: block; font-size: 14px; }
.group-link span:not(.gl-dot):not(.gl-arrow) { font-size: 12px; color: var(--slate); }
.gl-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.dot-blue  { background: var(--blue-mid); }
.dot-green { background: var(--green); }
.gl-arrow { font-size: 16px; color: var(--slate-light); }

/* ===========================
   FOOTER
   =========================== */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.65);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1fr;
  gap: 48px;
  padding: 60px 24px;
}
.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  max-width: 260px;
  margin: 14px 0 16px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-group-links {
  display: flex;
  gap: 16px;
}
.footer-group-links a {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  transition: color var(--transition);
}
.footer-group-links a:hover { color: #fff; }

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links h4 {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 4px;
}
.footer-links a,
.footer-links span {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
}
.footer-links a:hover { color: rgba(255,255,255,.9); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  font-size: 12px;
  color: rgba(255,255,255,.3);
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,.3); transition: color var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,.7); }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 960px) {
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .section { padding: 60px 0; }
  .hero-pillars { display: none; }
  .radio-group-2 { grid-template-columns: 1fr; }
  .check-form { padding: 28px 24px; }
  .check-result { padding: 36px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom-inner { flex-direction: column; gap: 10px; text-align: center; }
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .group-bar-inner { flex-direction: column; gap: 6px; align-items: flex-start; }
  .main-nav {
    display: none;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    gap: 0;
    padding: 8px 0 16px;
    box-shadow: var(--shadow-lg);
  }
  .site-header.scrolled .main-nav { background: #fff; }
  .main-nav.open { display: flex; }
  .main-nav a {
    color: rgba(255,255,255,.8) !important;
    padding: 14px 24px;
    width: 100%;
  }
  .site-header.scrolled .main-nav a { color: var(--navy) !important; }
  .main-nav .btn { margin: 8px 24px 0; width: calc(100% - 48px); }
  .hamburger { display: flex; }
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-badges  { animation: fadeUp .5s ease .1s both; }
.hero-content h1 { animation: fadeUp .5s ease .2s both; }
.hero-sub     { animation: fadeUp .5s ease .35s both; }
.hero-actions { animation: fadeUp .5s ease .5s both; }
.hero-pillars { animation: fadeUp .5s ease .65s both; }

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
