/* ══════════════════════════════════════════════════════════════
   ODOSEK BACKGROUND CHECKS — SHARED DESIGN SYSTEM
   Used by all solution landing pages.
   Typography : Plus Jakarta Sans | Palette: brand navy + blue
══════════════════════════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: var(--text); background: var(--white);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

:root {
  --navy-900: #0A1322;
  --navy-800: #101D33;
  --navy-700: #1A273D;
  --blue:     #1963BA;
  --blue-h:   #14529C;
  --blue-lt:  #3E86DB;
  --blue-50:  #EAF2FB;
  --blue-100: #D5E5F7;
  --bg:      #F6F9FC;
  --white:   #FFFFFF;
  --text:    #0F1B2D;
  --text-2:  #3D4B61;
  --muted:   #5C6B82;
  --border:  #E3E9F1;
  --green:   #0E9F6E;
  --amber:   #F59E0B;
  --shadow-sm: 0 1px 3px rgba(16,29,51,.06), 0 1px 2px rgba(16,29,51,.04);
  --shadow:    0 4px 16px rgba(16,29,51,.07);
  --shadow-lg: 0 14px 40px rgba(16,29,51,.13);
  --radius:    14px;
  --radius-lg: 20px;
  --spy:       96px;
  --z-nav: 50; --z-menu: 40; --z-badge: 10;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
::selection { background: var(--blue); color: #fff; }
:focus-visible { outline: 3px solid var(--blue-lt); outline-offset: 2px; border-radius: 4px; }

.icon { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: 10px; font-size: 15px;
  font-weight: 700; letter-spacing: .005em; white-space: nowrap;
  transition: background .2s, color .2s, box-shadow .2s, transform .2s, border-color .2s;
  cursor: pointer;
}
.btn .icon { width: 17px; height: 17px; }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 2px 10px rgba(25,99,186,.28); }
.btn-primary:hover { background: var(--blue-h); box-shadow: 0 6px 20px rgba(25,99,186,.38); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--navy-700); border: 1.5px solid #C7D2E0; }
.btn-outline:hover { border-color: var(--navy-700); background: var(--navy-700); color: #fff; }
.btn-ghost-light { background: rgba(255,255,255,.1); color: #fff; border: 1.5px solid rgba(255,255,255,.3); backdrop-filter: blur(8px); }
.btn-ghost-light:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.5); }

/* ── SECTION HEADERS ───────────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--blue);
  background: var(--blue-50); border: 1px solid var(--blue-100);
  padding: 6px 14px; border-radius: 100px; margin-bottom: 18px;
}
.eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }
.section-title {
  font-size: clamp(28px, 4vw, 40px); font-weight: 800; line-height: 1.12;
  color: var(--navy-800); letter-spacing: -0.025em; margin-bottom: 16px;
}
.section-sub { font-size: 17px; color: var(--muted); line-height: 1.7; max-width: 620px; }
.section-head-center { text-align: center; }
.section-head-center .section-sub { margin: 0 auto; }

/* ── NAV ───────────────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: var(--z-nav);
  background: rgba(255,255,255,.85); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s, border-color .3s, background .3s;
}
#navbar.scrolled { background: rgba(255,255,255,.95); border-color: var(--border); box-shadow: 0 4px 24px rgba(16,29,51,.07); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 78px; gap: 20px; }
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 54px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  padding: 9px 15px; border-radius: 8px; font-size: 14.5px; font-weight: 600;
  color: var(--text-2); transition: background .18s, color .18s;
}
.nav-links a:hover { background: var(--blue-50); color: var(--blue); }
.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-login {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 18px; border-radius: 10px; font-size: 14px; font-weight: 700;
  color: var(--navy-700); border: 1.5px solid #C7D2E0;
  transition: border-color .2s, background .2s, color .2s;
}
.nav-login:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-50); }
.nav-cta { padding: 10px 20px; font-size: 14px; }
.hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; padding: 10px; border-radius: 10px; }
.hamburger:hover { background: var(--blue-50); }
.hamburger span { display: block; height: 2px; background: var(--navy-800); border-radius: 2px; transition: transform .3s, opacity .3s; }

.mobile-menu {
  display: none; position: fixed; top: 78px; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,.98); backdrop-filter: blur(10px);
  z-index: var(--z-menu); padding: 20px 24px 40px;
  flex-direction: column; gap: 4px; overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 15px 16px; border-radius: 10px; font-size: 16px;
  font-weight: 600; color: var(--navy-800); transition: background .15s;
}
.mobile-menu a:hover { background: var(--blue-50); }
.mobile-menu .btn { margin-top: 14px; }

/* ── PAGE HERO (landing pages) ─────────────────────────────── */
.page-hero {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 45%, #142949 100%);
  padding: calc(78px + 64px) 0 80px;
  color: #fff;
}
.hero-grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 0%, black 45%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 0%, black 45%, transparent 100%);
}
.hero-glow { position: absolute; pointer-events: none; border-radius: 50%; filter: blur(110px); opacity: .5; }
.hero-glow.g1 { width: 520px; height: 520px; background: rgba(25,99,186,.55); top: -180px; right: -120px; }
.hero-glow.g2 { width: 420px; height: 420px; background: rgba(62,134,219,.3); bottom: -220px; left: -120px; }
.page-hero-inner { position: relative; max-width: 800px; }
.breadcrumbs { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; font-size: 13px; font-weight: 600; color: #8FA3BF; margin-bottom: 26px; }
.breadcrumbs a { color: #A8C4E8; transition: color .15s; }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs .sep { color: #54688A; }
.page-hero h1 {
  font-size: clamp(32px, 4.4vw, 50px); font-weight: 800;
  line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 20px;
}
.page-hero h1 .grad {
  background: linear-gradient(92deg, #5FA1E8 0%, #8FC1F5 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.page-hero .hero-sub { font-size: 17.5px; color: #A8B8CF; line-height: 1.7; max-width: 640px; margin-bottom: 32px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-ctas .btn { padding: 15px 30px; font-size: 16px; }
.hero-trust { display: flex; gap: 10px 26px; flex-wrap: wrap; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.12); }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: #C4D3E8; }
.hero-trust .icon { width: 16px; height: 16px; color: #5FB97F; }

/* ── VALUE PROP / FEATURE CARDS ────────────────────────────── */
.feature-section { background: var(--bg); padding: var(--spy) 0; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 52px; }
.feature-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.feature-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 30px 26px;
  box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s, border-color .25s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--blue-100); }
.feature-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--blue-50); border: 1px solid var(--blue-100);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.feature-icon .icon { width: 25px; height: 25px; color: var(--blue); }
.feature-card h3 { font-size: 16.5px; font-weight: 800; color: var(--navy-800); margin-bottom: 9px; letter-spacing: -.01em; }
.feature-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── PACKAGES ──────────────────────────────────────────────── */
.packages { background: var(--white); padding: var(--spy) 0; }
.pkg-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px; }
.pkg-grid.cols-3 { grid-template-columns: repeat(3, 1fr); max-width: 990px; margin-left: auto; margin-right: auto; }
.pkg-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 30px 24px 26px;
  box-shadow: var(--shadow-sm); position: relative;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  display: flex; flex-direction: column;
}
.pkg-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: #BFD4EC; }
.pkg-card.popular {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue), 0 18px 44px rgba(25,99,186,.18);
  background: linear-gradient(180deg, #FBFDFF 0%, var(--white) 100%);
}
.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(92deg, var(--blue) 0%, var(--blue-lt) 100%);
  color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px; white-space: nowrap;
  box-shadow: 0 6px 16px rgba(25,99,186,.35);
}
.popular-badge .icon { width: 12px; height: 12px; fill: #fff; stroke: none; }
.pkg-chip {
  display: inline-flex; align-self: flex-start; align-items: center;
  font-size: 10.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 11px; border-radius: 100px; margin-bottom: 14px;
}
.pkg-chip.criminal   { background: var(--blue-50);  color: var(--blue); }
.pkg-chip.employment { background: #EEEAFB; color: #6D4FC4; }
.pkg-chip.tenant     { background: #E3F7EF; color: #0B8A60; }
.pkg-chip.alacarte   { background: #FDF0E0; color: #B45309; }
.pkg-name { font-size: 17px; font-weight: 800; color: var(--navy-800); letter-spacing: -.01em; }
.pkg-price { display: flex; align-items: baseline; gap: 6px; margin: 14px 0 2px; }
.pkg-price .amount { font-size: 34px; font-weight: 800; letter-spacing: -.03em; color: var(--navy-800); }
.pkg-price .per { font-size: 13.5px; font-weight: 600; color: var(--muted); }
.pkg-divider { border: none; border-top: 1px solid var(--border); margin: 18px 0; }
.pkg-features { flex: 1; display: flex; flex-direction: column; gap: 11px; margin-bottom: 24px; }
.pkg-feat { display: flex; align-items: flex-start; gap: 9px; font-size: 13.5px; font-weight: 500; color: var(--text-2); line-height: 1.5; }
.pkg-feat .icon { width: 17px; height: 17px; color: var(--blue); stroke-width: 2.5; margin-top: 1px; }
.pkg-cta {
  width: 100%; padding: 12px; border-radius: 10px; font-size: 14px;
  font-weight: 700; border: 1.5px solid var(--blue); color: var(--blue);
  background: transparent; transition: background .2s, color .2s, box-shadow .2s; text-align: center; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
}
.pkg-cta:hover { background: var(--blue); color: #fff; box-shadow: 0 6px 18px rgba(25,99,186,.3); }
.pkg-card.popular .pkg-cta { background: var(--blue); color: #fff; box-shadow: 0 4px 14px rgba(25,99,186,.3); }
.pkg-card.popular .pkg-cta:hover { background: var(--blue-h); }
.pkg-note {
  margin-top: 44px; display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap;
  text-align: center; font-size: 15px; color: var(--text-2);
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 28px;
}
.pkg-note .icon { width: 22px; height: 22px; color: var(--blue); }
.pkg-note a { color: var(--blue); font-weight: 700; white-space: nowrap; }
.pkg-note a:hover { text-decoration: underline; }

/* ── PRICE TABLE ───────────────────────────────────────────── */
.alc-table {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
}
.alc-thead {
  display: grid; grid-template-columns: 1fr 150px 130px;
  background: var(--navy-800); padding: 14px 24px; gap: 12px;
}
.alc-thead span { font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: #9FB2CC; }
.alc-thead span:nth-child(2), .alc-thead span:nth-child(3) { text-align: right; }
.alc-row {
  display: grid; grid-template-columns: 1fr 150px 130px;
  padding: 15px 24px; gap: 12px; border-bottom: 1px solid var(--border);
  align-items: center; transition: background .15s;
}
.alc-row:last-child { border-bottom: none; }
.alc-row:hover { background: var(--blue-50); }
.alc-name { font-size: 14.5px; font-weight: 600; color: var(--navy-800); }
.alc-tat { display: inline-flex; justify-content: flex-end; }
.tat-chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 100px;
  background: #F0F3F8; color: var(--muted);
}
.tat-chip.instant { background: #E3F7EF; color: #0B8A60; }
.tat-chip.instant::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #10B981; }
.alc-price { font-size: 15.5px; font-weight: 800; color: var(--navy-800); text-align: right; font-variant-numeric: tabular-nums; letter-spacing: -.01em; }
.alc-price.instant { color: var(--blue); }
.table-section { background: var(--bg); padding: var(--spy) 0; }
.table-section .alc-table { margin-top: 48px; }

/* ── SPLIT (benefits + checklist card) ─────────────────────── */
.split-section { background: var(--white); padding: var(--spy) 0; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split-checklist {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 32px; box-shadow: var(--shadow);
}
.split-checklist h3 { font-size: 18px; font-weight: 800; color: var(--navy-800); margin-bottom: 22px; }
.check-rows { display: flex; flex-direction: column; gap: 15px; }
.check-row { display: flex; align-items: flex-start; gap: 12px; }
.check-row .badge {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0; margin-top: 1px;
  background: #E3F7EF; border: 1px solid #B7E8D4;
  display: flex; align-items: center; justify-content: center;
}
.check-row .badge .icon { width: 13px; height: 13px; color: var(--green); stroke-width: 3; }
.check-row .cr-title { font-size: 14.5px; font-weight: 700; color: var(--navy-800); }
.check-row .cr-sub { font-size: 13px; color: var(--muted); line-height: 1.6; margin-top: 3px; }
.split-body p { font-size: 16px; color: var(--text-2); line-height: 1.8; margin-bottom: 18px; }
.split-body p:last-of-type { margin-bottom: 28px; }

/* ── MINI STEPS ────────────────────────────────────────────── */
.mini-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.mini-step {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 22px; box-shadow: var(--shadow-sm);
}
.mini-step-num {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-lt) 100%);
  color: #fff; font-size: 15px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.mini-step h3 { font-size: 15.5px; font-weight: 800; color: var(--navy-800); margin-bottom: 6px; }
.mini-step p { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

/* ── FAQ ───────────────────────────────────────────────────── */
.faq { background: var(--white); padding: var(--spy) 0; }
.faq.alt { background: var(--bg); }
.faq-inner { max-width: 780px; margin: 0 auto; }
.faq-list { margin-top: 48px; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  border: 1.5px solid var(--border); border-radius: var(--radius);
  background: var(--white); overflow: hidden; transition: border-color .25s, box-shadow .25s;
}
.faq-item.open { border-color: var(--blue-100); box-shadow: var(--shadow); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 21px 24px; gap: 16px; text-align: left;
  font-size: 16px; font-weight: 700; color: var(--navy-800); cursor: pointer;
  transition: background .15s;
}
.faq-q:hover { background: var(--bg); }
.faq-chevron {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  background: var(--blue-50); display: flex; align-items: center; justify-content: center;
  transition: transform .28s ease, background .28s;
}
.faq-chevron .icon { width: 15px; height: 15px; color: var(--blue); }
.faq-item.open .faq-chevron { transform: rotate(180deg); background: var(--blue); }
.faq-item.open .faq-chevron .icon { color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .32s ease; }
.faq-a-inner { padding: 0 24px 22px; font-size: 15px; color: var(--muted); line-height: 1.75; }
.faq-item.open .faq-a { max-height: 320px; }

/* ── RELATED SOLUTIONS ─────────────────────────────────────── */
.related { background: var(--bg); padding: var(--spy) 0; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; }
.related-card {
  display: block; background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 26px;
  box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative; overflow: hidden;
}
.related-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--blue-lt));
  transform: scaleX(0); transform-origin: left; transition: transform .35s ease;
}
.related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--blue-100); }
.related-card:hover::before { transform: scaleX(1); }
.related-card h3 { font-size: 16.5px; font-weight: 800; color: var(--navy-800); margin-bottom: 8px; letter-spacing: -.01em; }
.related-card p { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.related-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13.5px; font-weight: 700; color: var(--blue); }
.related-link .icon { width: 14px; height: 14px; transition: transform .2s; }
.related-card:hover .related-link .icon { transform: translateX(4px); }

/* ── CTA BANNER ────────────────────────────────────────────── */
.cta-banner {
  position: relative; overflow: hidden;
  background: linear-gradient(150deg, var(--navy-900) 0%, var(--navy-800) 50%, #15305B 100%);
  padding: 100px 0;
}
.cta-banner .hero-grid-bg { mask-image: radial-gradient(ellipse 70% 90% at 50% 50%, black 30%, transparent 100%); -webkit-mask-image: radial-gradient(ellipse 70% 90% at 50% 50%, black 30%, transparent 100%); }
.cta-glow { position: absolute; width: 560px; height: 560px; border-radius: 50%; background: rgba(25,99,186,.4); filter: blur(130px); top: -200px; left: 50%; transform: translateX(-50%); pointer-events: none; }
.cta-inner { position: relative; text-align: center; }
.cta-inner h2 { font-size: clamp(30px, 4.4vw, 44px); font-weight: 800; color: #fff; margin-bottom: 16px; letter-spacing: -0.025em; line-height: 1.12; }
.cta-inner p { font-size: 17.5px; color: #A8B8CF; margin: 0 auto 38px; max-width: 540px; line-height: 1.7; }
.cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.cta-btns .btn { padding: 16px 36px; font-size: 16px; }
.cta-mini { margin-top: 30px; font-size: 13.5px; font-weight: 600; color: #8FA3BF; display: flex; justify-content: center; gap: 22px; flex-wrap: wrap; }
.cta-mini span { display: inline-flex; align-items: center; gap: 7px; }
.cta-mini .icon { width: 15px; height: 15px; color: #5FB97F; }

/* ── FOOTER ────────────────────────────────────────────────── */
footer { background: var(--navy-900); padding: 70px 0 36px; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1.1fr 1.2fr;
  gap: 48px; padding-bottom: 52px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-mark { width: 44px; height: 44px; border-radius: 12px; background: #fff; padding: 5px; }
.footer-mark img { width: 100%; height: 100%; object-fit: contain; }
.footer-wordmark { font-size: 21px; font-weight: 800; color: #fff; letter-spacing: -.01em; line-height: 1.1; }
.footer-wordmark small { display: block; font-size: 10.5px; font-weight: 700; letter-spacing: .14em; color: var(--blue-lt); text-transform: uppercase; margin-top: 3px; }
.footer-tagline { font-size: 14px; color: #8FA3BF; line-height: 1.7; max-width: 280px; }
.footer-col-title { font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: #6E84A3; margin-bottom: 18px; }
.footer-links-list { display: flex; flex-direction: column; gap: 12px; }
.footer-links-list a { font-size: 14.5px; color: #B4C3D9; transition: color .15s; width: fit-content; }
.footer-links-list a:hover { color: #fff; }
.footer-contact { display: flex; flex-direction: column; gap: 13px; }
.footer-contact a {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14.5px; color: #B4C3D9; transition: color .15s; width: fit-content;
}
.footer-contact a:hover { color: #fff; }
.footer-contact .icon { width: 16px; height: 16px; color: var(--blue-lt); }
.footer-login-btn {
  margin-top: 6px; display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px; border-radius: 10px; font-size: 14px; font-weight: 700;
  background: rgba(25,99,186,.18); border: 1px solid rgba(62,134,219,.4); color: #8FC1F5;
  transition: background .2s, border-color .2s, color .2s; width: fit-content;
}
.footer-login-btn:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
.footer-bottom { padding-top: 30px; display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; flex-wrap: wrap; }
.footer-copy { font-size: 13px; color: #6E84A3; }
.footer-disclaimer { font-size: 12px; color: #54688A; max-width: 600px; line-height: 1.65; }

/* ── SCROLL REVEAL ─────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .pkg-grid, .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .pkg-grid.cols-3, .feature-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 900px) {
  :root { --spy: 72px; }
  .nav-links, .nav-right .nav-login, .nav-right .nav-cta { display: none; }
  .hamburger { display: flex; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .mini-steps { grid-template-columns: 1fr; max-width: 540px; margin-left: auto; margin-right: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
  .alc-thead, .alc-row { grid-template-columns: 1fr 120px 100px; }
}
@media (max-width: 600px) {
  .pkg-grid, .pkg-grid.cols-3, .feature-grid, .feature-grid.cols-3, .related-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .alc-thead span:nth-child(2), .alc-row .alc-tat { display: none; }
  .alc-thead, .alc-row { grid-template-columns: 1fr 100px; }
  .hero-ctas .btn { width: 100%; }
  .cta-btns .btn { width: 100%; }
}
