/* =============================================
   HEIMPEL SOLUTIONS — SHARED STYLES v2
   ============================================= */
:root {
  --blue:       #3B5BFF;
  --blue-dark:  #2440CC;
  --blue-light: #EEF1FF;
  --blue-mid:   #6B85FF;
  --ink:        #0D0E14;
  --ink-mid:    #3A3D4A;
  --ink-light:  #6B7080;
  --bg:         #FFFFFF;
  --bg-soft:    #F7F8FB;
  --bg-mid:     #EFF1F7;
  --border:     #E2E5EF;
  --white:      #FFFFFF;
  --green:      #22C55E;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow-sm:  0 2px 8px rgba(59,91,255,.08);
  --shadow-md:  0 8px 32px rgba(59,91,255,.12);
  --shadow-lg:  0 24px 64px rgba(59,91,255,.15);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--ink); overflow-x: hidden; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 32px; }
.section { padding: 96px 0; }

.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); margin-bottom: 16px; }
.eyebrow::before { content: ''; display: block; width: 24px; height: 2px; background: var(--blue); border-radius: 2px; }
.headline { font-family: 'Sora', sans-serif; font-weight: 700; font-size: clamp(28px, 4vw, 48px); line-height: 1.1; color: var(--ink); letter-spacing: -.02em; }
.headline em { font-style: normal; color: var(--blue); }
.headline-lg { font-family: 'Sora', sans-serif; font-weight: 800; font-size: clamp(36px, 5.5vw, 68px); line-height: 1.05; color: var(--ink); letter-spacing: -.03em; }
.headline-lg em { font-style: normal; color: var(--blue); }
.subtext { font-size: 17px; font-weight: 400; line-height: 1.75; color: var(--ink-light); max-width: 540px; }

.btn { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; letter-spacing: .03em; padding: 14px 28px; border-radius: var(--radius); transition: all .22s ease; cursor: pointer; }
.btn-primary { background: var(--blue); color: var(--white); box-shadow: 0 4px 20px rgba(59,91,255,.28); }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(59,91,255,.4); }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-white { background: var(--white); color: var(--blue); font-weight: 700; }
.btn-white:hover { background: var(--blue-light); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: rgba(255,255,255,.6); border: 1.5px solid rgba(255,255,255,.18); }
.btn-ghost:hover { border-color: rgba(255,255,255,.5); color: var(--white); }

/* ── NAV ───────────────────────────────────── */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 500; height: 72px; display: flex; align-items: center; transition: background .3s, box-shadow .3s; }
.nav.scrolled, .nav.solid { background: rgba(255,255,255,.97); backdrop-filter: blur(20px); box-shadow: 0 1px 0 var(--border); }
.nav-inner { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 32px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.nav-logo { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.nav-logo-img { height: 36px; width: 36px; display: block; object-fit: contain; border-radius: 6px; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav-logo-name { font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 700; color: var(--ink); letter-spacing: -.01em; }
.nav-logo-sub { font-size: 9px; font-weight: 500; color: var(--ink-light); letter-spacing: .15em; text-transform: uppercase; margin-top: 2px; }

.nav-links { display: flex; align-items: center; gap: 2px; flex: 1; justify-content: center; }
.nav-links > a, .nav-dropdown > .nav-drop-trigger { font-size: 14px; font-weight: 500; color: var(--ink-mid); padding: 8px 13px; border-radius: 8px; transition: background .15s, color .15s; white-space: nowrap; }
.nav-links > a:hover, .nav-dropdown > .nav-drop-trigger:hover { background: var(--bg-soft); color: var(--blue); }
.nav-links > a.active { color: var(--blue); font-weight: 600; }

.nav-dropdown { position: relative; }
.nav-drop-trigger { display: flex; align-items: center; gap: 5px; cursor: default; user-select: none; }
.nav-drop-trigger svg { width: 14px; height: 14px; transition: transform .2s; }
.nav-dropdown:hover .nav-drop-trigger svg { transform: rotate(180deg); }
.nav-drop-menu { position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(-6px); background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: 0 16px 48px rgba(0,0,0,.1); padding: 8px; min-width: 230px; opacity: 0; visibility: hidden; transition: opacity .2s, visibility .2s, transform .2s; z-index: 100; }
.nav-dropdown:hover .nav-drop-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-drop-item { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 8px; transition: background .15s; }
.nav-drop-item:hover { background: var(--bg-soft); }
.nav-drop-icon { width: 34px; height: 34px; background: var(--blue-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.nav-drop-label { font-size: 13px; font-weight: 600; color: var(--ink); }
.nav-drop-sub { font-size: 11px; color: var(--ink-light); margin-top: 1px; }
.nav-cta { flex-shrink: 0; padding: 10px 22px !important; font-size: 13px !important; }

.nav-mob-btn { display: none; width: 40px; height: 40px; align-items: center; justify-content: center; border-radius: 8px; border: 1.5px solid var(--border); flex-direction: column; gap: 4px; }
.nav-mob-btn span { display: block; width: 18px; height: 1.5px; background: var(--ink); border-radius: 2px; }

/* ── BREADCRUMB ─────────────────────────── */
.breadcrumb { font-size: 13px; color: var(--ink-light); display: flex; align-items: center; gap: 6px; margin-bottom: 24px; flex-wrap: wrap; }
.breadcrumb a { color: var(--ink-light); transition: color .2s; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb span { color: var(--border); }
.breadcrumb strong { color: var(--ink-mid); }

/* ── PAGE HERO ─────────────────────────── */
.page-hero { background: var(--bg-soft); padding: 128px 0 72px; border-bottom: 1px solid var(--border); }
.page-hero-inner { max-width: 720px; }

/* ── MARQUEE ────────────────────────────── */
.marquee-strip { background: var(--blue); padding: 12px 0; overflow: hidden; white-space: nowrap; }
.marquee-track { display: inline-flex; animation: marquee 30s linear infinite; }
.marquee-item { font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.8); padding: 0 28px; border-right: 1px solid rgba(255,255,255,.2); }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── CTA BAND ───────────────────────────── */
.cta-band { background: var(--blue); padding: 72px 0; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-band h2 { font-family: 'Sora', sans-serif; font-size: clamp(22px, 3vw, 34px); font-weight: 700; color: var(--white); line-height: 1.2; }
.cta-band p { font-size: 16px; color: rgba(255,255,255,.7); margin-top: 8px; }

/* ── FOOTER ─────────────────────────────── */
.site-footer { background: #08090F; padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.06); }
.footer-logo-wrap { display: flex; align-items: center; gap: 11px; margin-bottom: 14px; }
.footer-logo-img { height: 32px; width: 32px; object-fit: contain; opacity: .9; }
.footer-logo-name { font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 700; color: var(--white); }
.footer-logo-sub { font-size: 9px; color: rgba(255,255,255,.3); letter-spacing: .14em; text-transform: uppercase; margin-top: 2px; }
.footer-brand-desc { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.7; max-width: 280px; margin-bottom: 16px; }
.footer-brand-contact { display: flex; flex-direction: column; gap: 6px; }
.footer-brand-contact a { font-size: 13px; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-brand-contact a:hover { color: var(--blue-mid); }
.footer-col-title { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 16px; }
.footer-col-links { display: flex; flex-direction: column; gap: 10px; }
.footer-col-links a { font-size: 13px; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-col-links a:hover { color: var(--blue-mid); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.2); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,.3); letter-spacing: .06em; text-transform: uppercase; transition: color .2s; }
.footer-legal a:hover { color: var(--blue-mid); }

/* ── COOKIE ─────────────────────────────── */
#cookieBanner { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; background: rgba(13,14,20,.97); border-top: 1px solid rgba(59,91,255,.2); backdrop-filter: blur(20px); padding: 18px 40px; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cookie-text p { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.6; }
.cookie-text p a { color: var(--blue-mid); text-decoration: underline; }
.cookie-text strong { color: rgba(255,255,255,.8); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ── REVEAL ─────────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-mob-btn { display: flex; }
}
@media (max-width: 900px) {
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  #cookieBanner { padding: 16px 20px; }
  .page-hero { padding: 100px 0 56px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── MOBILE MENU ────────────────────────────── */
.nav-mob-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(20px);
  z-index: 499;
  flex-direction: column;
  padding: 24px 24px 40px;
  overflow-y: auto;
  border-top: 1px solid var(--border);
}
.nav-mob-menu.open { display: flex; }

.mob-link {
  display: flex; align-items: center;
  font-size: 18px; font-weight: 600; color: var(--ink);
  padding: 16px 0; border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.mob-link:hover { color: var(--blue); }
.mob-link.active { color: var(--blue); }

.mob-section-title {
  font-size: 11px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-light);
  padding: 20px 0 10px;
}
.mob-sub-links {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
  padding-bottom: 8px; border-bottom: 1px solid var(--border);
}
.mob-sub-link {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; color: var(--ink-mid);
  padding: 10px 8px; border-radius: 8px; transition: background .15s;
}
.mob-sub-link:hover { background: var(--bg-soft); color: var(--blue); }
.mob-sub-icon {
  width: 28px; height: 28px; background: var(--blue-light);
  border-radius: 6px; display: flex; align-items: center;
  justify-content: center; font-size: 13px; flex-shrink: 0;
}
.mob-cta {
  margin-top: 24px;
}
/* Hamburger → X Animation */
.nav-mob-btn.is-open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-mob-btn.is-open span:nth-child(2) { opacity: 0; }
.nav-mob-btn.is-open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
.nav-mob-btn span { transition: transform .2s, opacity .2s; }
