/* ===========================================================
   Elyonware — Professional Edition
   Plain HTML/CSS/JS, no build step required.
   =========================================================== */

:root {
  --navy: #0b1324;
  --navy-soft: #101a33;
  --blue: #2454e8;
  --blue-dark: #1a3fc4;
  --blue-light: #eef2ff;
  --ink: #0f172a;
  --slate: #475569;
  --slate-light: #94a3b8;
  --border: #e6e9f0;
  --bg: #ffffff;
  --bg-alt: #f7f8fb;
  --radius: 14px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.12);
  --container: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { margin: 0; font-weight: 700; letter-spacing: -0.02em; }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
}

.section { padding: 96px 0; }
.section--alt { background: var(--bg-alt); }
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { max-width: 680px; margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); line-height: 1.15; color: var(--navy); }
.section-head p { margin-top: 16px; color: var(--slate); font-size: 1.05rem; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease), color .2s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 8px 20px rgba(36, 84, 232, 0.28); }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 12px 26px rgba(36, 84, 232, 0.35); }
.btn-ghost { background: #fff; color: var(--navy); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-1px); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.35); }
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-block { width: 100%; }

/* ---------- header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.site-header.is-scrolled { border-color: var(--border); box-shadow: 0 4px 24px rgba(15,23,42,0.05); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.nav-logo img { height: 30px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--slate);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); background: var(--bg-alt); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  display: block;
  width: 18px; height: 2px;
  background: var(--navy);
  position: relative;
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.is-open span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 860px) {
  .nav-links { position: fixed; top: 76px; left: 0; right: 0; bottom: 0; background: #fff; flex-direction: column; align-items: stretch; padding: 12px; gap: 4px; transform: translateY(-8px); opacity: 0; pointer-events: none; transition: opacity 0.2s var(--ease), transform 0.2s var(--ease); overflow-y: auto; }
  .nav-links.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-links a { padding: 14px 16px; font-size: 1rem; }
  .nav-actions .btn-ghost { display: none; }
  .nav-toggle { display: flex; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: 168px 0 100px;
  background:
    radial-gradient(680px 340px at 85% -10%, rgba(36,84,232,0.10), transparent 60%),
    radial-gradient(520px 320px at 5% 0%, rgba(36,84,232,0.06), transparent 60%),
    var(--bg);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  line-height: 1.08;
  color: var(--navy);
}
.hero h1 .accent { color: var(--blue); }
.hero p.lead {
  margin-top: 22px;
  font-size: 1.15rem;
  color: var(--slate);
  max-width: 520px;
}
.hero-actions { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { margin-top: 56px; display: flex; gap: 40px; flex-wrap: wrap; }
.hero-stats div strong { display: block; font-size: 1.7rem; color: var(--navy); }
.hero-stats div span { font-size: 0.85rem; color: var(--slate-light); text-transform: uppercase; letter-spacing: 0.06em; }

.hero-visual {
  position: relative;
  border-radius: 24px;
  padding: 28px;
  background: linear-gradient(160deg, var(--navy) 0%, #16224a 60%, var(--blue-dark) 130%);
  box-shadow: var(--shadow-lg);
  color: #fff;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-visual .tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14);
  padding: 6px 12px; border-radius: 999px; width: fit-content;
}
.hero-visual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 20px; }
.hero-visual-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 16px;
}
.hero-visual-card strong { display: block; font-size: 1.3rem; }
.hero-visual-card span { font-size: 0.78rem; color: rgba(255,255,255,0.65); }

/* ---------- logo strip ---------- */
.logo-strip { padding: 44px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-alt); }
.logo-strip p { text-align: center; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--slate-light); margin-bottom: 26px; }
.logo-strip-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; align-items: center; }
.logo-strip-row span { font-weight: 700; font-size: 1.05rem; color: var(--slate); opacity: 0.65; }

/* ---------- cards / grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #d9e0ee; }
.card-icon {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: var(--blue-light);
  color: var(--blue);
  margin-bottom: 20px;
}
.card-icon svg { width: 22px; height: 22px; }
.card h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: 10px; }
.card p { color: var(--slate); font-size: 0.96rem; line-height: 1.6; }
.card .tag-pill {
  display: inline-block;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--blue); background: var(--blue-light);
  padding: 4px 10px; border-radius: 999px; margin-bottom: 14px;
}

.numbered-row {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
}
.numbered-row:first-of-type { border-top: none; }
.numbered-row .num { font-weight: 800; font-size: 1rem; color: var(--slate-light); flex-shrink: 0; width: 40px; }
.numbered-row h4 { font-size: 1.05rem; color: var(--navy); margin-bottom: 6px; }
.numbered-row p { color: var(--slate); font-size: 0.95rem; }

/* ---------- product cards ---------- */
.product-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.product-card-top { padding: 26px 26px 0; }
.product-card-body { padding: 18px 26px 26px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.product-card ul { display: flex; flex-direction: column; gap: 8px; }
.product-card ul li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.88rem; color: var(--slate); }
.product-card ul li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); margin-top: 6px; flex-shrink: 0; }
.product-card-cta { margin-top: auto; padding-top: 4px; }

/* ---------- CTA band ---------- */
.cta-band {
  border-radius: 28px;
  padding: 72px 56px;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, var(--navy) 0%, #16224a 55%, var(--blue-dark) 130%);
  position: relative;
  overflow: hidden;
}
.cta-band h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); }
.cta-band p { margin-top: 16px; color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-band .hero-actions { justify-content: center; margin-top: 32px; }

/* ---------- footer ---------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.7); padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand img { height: 30px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.92rem; line-height: 1.6; max-width: 260px; }
.footer-col h4 { color: #fff; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 0.92rem; transition: color 0.2s var(--ease); }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; font-size: 0.85rem; flex-wrap: wrap; gap: 12px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; transition: background 0.2s var(--ease), border-color 0.2s var(--ease); }
.footer-socials a:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.3); }
.footer-socials svg { width: 16px; height: 16px; }

/* ---------- page hero (inner pages) ---------- */
.page-hero { padding: 160px 0 70px; background: var(--bg-alt); border-bottom: 1px solid var(--border); text-align: center; }
.page-hero h1 { font-size: clamp(2.2rem, 4vw, 3.1rem); color: var(--navy); }
.page-hero p { margin: 18px auto 0; max-width: 620px; color: var(--slate); font-size: 1.08rem; }
.breadcrumb { font-size: 0.82rem; color: var(--slate-light); margin-bottom: 16px; }
.breadcrumb a { color: var(--blue); font-weight: 600; }

/* ---------- about page bits ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { border-radius: 20px; overflow: hidden; background: var(--bg-alt); border: 1px solid var(--border); min-height: 320px; display: flex; align-items: center; justify-content: center; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-copy h3 { font-size: 1.7rem; color: var(--navy); margin-bottom: 16px; line-height: 1.2; }
.split-copy p { color: var(--slate); font-size: 1rem; line-height: 1.7; }

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-band div strong { display: block; font-size: 2.2rem; color: var(--navy); }
.stat-band div span { font-size: 0.85rem; color: var(--slate); }

/* ---------- contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 40px; align-items: start; }
.form-card { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 40px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 0.94rem;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(36,84,232,0.12);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.82rem; color: var(--slate-light); text-align: center; margin-top: 14px; }

.contact-info-card { background: var(--bg-alt); border: 1px solid var(--border); border-radius: 18px; padding: 26px; margin-bottom: 18px; }
.contact-info-card h3 { color: var(--navy); font-size: 1.02rem; margin-bottom: 18px; }
.contact-channel { display: flex; align-items: flex-start; gap: 14px; padding: 12px 0; border-top: 1px solid var(--border); }
.contact-channel:first-of-type { border-top: none; padding-top: 0; }
.contact-channel .card-icon { width: 38px; height: 38px; margin-bottom: 0; flex-shrink: 0; }
.contact-channel .label { font-size: 0.78rem; color: var(--slate-light); }
.contact-channel .value { font-size: 0.94rem; font-weight: 600; color: var(--navy); }

.status-dot { display: inline-flex; align-items: center; gap: 8px; font-size: 0.9rem; color: var(--slate); }
.status-dot::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #16a34a; }

.form-success { display: none; flex-direction: column; align-items: center; text-align: center; gap: 14px; padding: 40px 10px; }
.form-success.is-visible { display: flex; }
.form-fields.is-hidden { display: none; }
.form-success .check {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--blue-light); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
}

/* ---------- careers ---------- */
.job-list { display: flex; flex-direction: column; gap: 14px; }
.job-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 24px 28px;
  border: 1px solid var(--border); border-radius: 16px;
  background: #fff;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), transform 0.2s var(--ease);
}
.job-row:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.job-row h4 { color: var(--navy); font-size: 1.05rem; margin-bottom: 6px; }
.job-meta { display: flex; gap: 14px; font-size: 0.85rem; color: var(--slate-light); flex-wrap: wrap; }
.job-meta span { display: inline-flex; align-items: center; gap: 6px; }

/* job accordion (native <details>) */
.job-details {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.job-details:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); }
.job-details summary {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 24px 28px;
  cursor: pointer; list-style: none;
}
.job-details summary::-webkit-details-marker { display: none; }
.job-details summary h4 { color: var(--navy); font-size: 1.05rem; margin-bottom: 6px; }
.job-details .job-chevron {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%;
  background: var(--blue-light); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.25s var(--ease);
}
.job-details[open] .job-chevron { transform: rotate(180deg); }
.job-tag {
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  padding: 3px 10px; border-radius: 999px;
  color: var(--blue); background: var(--blue-light);
}
.job-details-body { padding: 0 28px 28px; border-top: 1px solid var(--border); }
.job-details-body p.job-desc { color: var(--slate); font-size: 0.96rem; line-height: 1.65; margin: 20px 0 24px; }
.job-req-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 24px; }
.job-req-grid h5 { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--slate-light); margin-bottom: 12px; }
.job-req-grid ul { display: flex; flex-direction: column; gap: 9px; }
.job-req-grid ul li { display: flex; align-items: flex-start; gap: 9px; font-size: 0.92rem; color: var(--slate); }
.job-req-grid ul li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); margin-top: 6px; flex-shrink: 0; }
.job-apply-box { background: var(--bg-alt); border: 1px solid var(--border); border-radius: 14px; padding: 20px 22px; }
.job-apply-box h5 { color: var(--navy); font-size: 0.98rem; margin-bottom: 8px; }
.job-apply-box p { color: var(--slate); font-size: 0.92rem; line-height: 1.6; }
.job-apply-box a { color: var(--blue); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }

.perk-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.perk-card { text-align: center; padding: 30px 20px; border: 1px solid var(--border); border-radius: 16px; background: #fff; }
.perk-card .card-icon { margin: 0 auto 16px; }

/* ---------- reveal-on-scroll (vanilla, no library) ----------
   Visible by default so content never depends on JS running.
   Only hidden-then-revealed once html.has-js is set (see inline
   head script), and even then a JS fallback timer guarantees
   full visibility within 2s regardless of observer support. */
[data-reveal] { transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
html.has-js [data-reveal] { opacity: 0; transform: translateY(18px); }
html.has-js [data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ---------- corner-arrow badge (bento cards) ---------- */
.corner-arrow {
  position: absolute;
  top: 16px; right: 16px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}
.corner-arrow svg { width: 16px; height: 16px; }
.bento-card:hover .corner-arrow { transform: rotate(45deg); background: var(--blue); color: #fff; }

/* ---------- bento image cards (numbered feature tiles) ---------- */
.bento-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.bento-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.bento-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.bento-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.94; }
.bento-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,19,36,0.82) 0%, rgba(11,19,36,0.15) 55%, transparent 80%);
}
.bento-card-body { position: relative; z-index: 1; padding: 22px; color: #fff; }
.bento-card-body .num { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; color: rgba(255,255,255,0.65); display: block; margin-bottom: 6px; }
.bento-card-body h4 { font-size: 1.1rem; color: #fff; }

/* ---------- pill tags ---------- */
.pill-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.pill-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.82rem; font-weight: 600;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

/* ---------- tabs ---------- */
.tabs-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 36px; }
.tab-btn {
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 0.9rem; font-weight: 600;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--slate);
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.tab-btn.is-active { background: var(--navy); color: #fff; border-color: var(--navy); }
.tab-panel { display: none; }
.tab-panel.is-active { display: block; }
.tab-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  min-height: 340px;
}
.tab-card-media { position: relative; min-height: 260px; }
.tab-card-media img { width: 100%; height: 100%; object-fit: cover; }
.tab-card-copy { padding: 40px; display: flex; flex-direction: column; justify-content: center; gap: 14px; }
.tab-card-copy h3 { font-size: 1.5rem; color: var(--navy); }
.tab-card-copy ul { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.tab-card-copy ul li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.94rem; color: var(--slate); }
.tab-card-copy ul li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); margin-top: 7px; flex-shrink: 0; }

/* ---------- FAQ accordion ---------- */
.accordion { display: flex; flex-direction: column; gap: 12px; max-width: 780px; margin: 0 auto; }
.accordion-item { border: 1px solid var(--border); border-radius: 16px; background: #fff; overflow: hidden; }
.accordion-trigger {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none; border: none;
  text-align: left;
  font-size: 1rem; font-weight: 600; color: var(--navy);
}
.accordion-trigger .plus { flex-shrink: 0; width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; color: var(--blue); transition: transform 0.25s var(--ease); }
.accordion-item.is-open .accordion-trigger .plus { transform: rotate(45deg); }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height 0.3s var(--ease); }
.accordion-item.is-open .accordion-panel { max-height: 220px; }
.accordion-panel-inner { padding: 0 24px 22px; color: var(--slate); font-size: 0.94rem; line-height: 1.65; }

/* ---------- testimonial ---------- */
.testimonial-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: var(--bg-alt);
}
.testimonial-card img { width: 76px; height: 76px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.testimonial-stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 10px; letter-spacing: 2px; }
.testimonial-quote { font-size: 1.15rem; color: var(--navy); line-height: 1.55; margin-bottom: 16px; }
.testimonial-name { font-weight: 700; color: var(--navy); font-size: 0.94rem; }
.testimonial-role { color: var(--slate-light); font-size: 0.84rem; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .grid-3, .value-grid, .stat-band { grid-template-columns: repeat(2, 1fr); }
  .perk-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .split, .split.reverse { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .tab-card { grid-template-columns: 1fr; }
  .tab-card-media { min-height: 220px; }
  .testimonial-card { grid-template-columns: 1fr; text-align: center; }
  .testimonial-card img { margin: 0 auto; }
}
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .grid-3, .grid-2, .value-grid, .stat-band, .perk-grid, .footer-grid, .bento-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band { padding: 48px 24px; }
  .job-row { flex-direction: column; align-items: flex-start; }
  .tab-card-copy { padding: 26px; }
  .testimonial-card { padding: 26px; }
  .job-req-grid { grid-template-columns: 1fr; }
  .job-details summary { flex-direction: column; align-items: flex-start; }
}
