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

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #0a1628;
  color: #c8d8e8;
  line-height: 1.5;
}

a { text-decoration: none; color: inherit; }

/* ─── NAV ───────────────────────────────────────────────────────────────────── */
.nav {
  background: #0a1628;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 64px;
  border-bottom: 1px solid #1a2e4a;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-brand { font-size: 16px; font-weight: 800; color: #fff; letter-spacing: 0.06em; }
.nav-sub { font-size: 9px; font-weight: 600; color: #4a8fc4; letter-spacing: 0.14em; text-transform: uppercase; margin-top: 1px; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { color: #6a90b0; font-size: 13px; letter-spacing: 0.02em; transition: color 0.15s; }
.nav-links a:hover { color: #fff; }
.nav-pill { display: flex; align-items: center; gap: 10px; }
.nav-tb { background: #1a3a6a; border: 1px solid #2a5a9a; color: #7ab8e8; font-size: 11px; font-weight: 700; padding: 5px 12px; border-radius: 3px; letter-spacing: 0.06em; }
.nav-cta { background: #1e5fa0; color: #fff; border: none; padding: 9px 20px; font-size: 13px; font-weight: 600; cursor: pointer; border-radius: 3px; transition: background 0.15s; display: inline-block; }
.nav-cta:hover { background: #2570b8; }

/* ─── HERO ──────────────────────────────────────────────────────────────────── */
.hero { background: #0a1628; padding: 72px 2rem 60px; position: relative; overflow: hidden; }
.hero-geo { position: absolute; right: -40px; top: -40px; opacity: 0.06; pointer-events: none; }
.hero-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; }
.hero-badge { background: #0d2240; border: 1px solid #1e4a7a; color: #5aaee0; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; padding: 5px 12px; border-radius: 2px; text-transform: uppercase; }
.hero-sep { width: 32px; height: 1px; background: #1e4a7a; }
.hero-cert { font-size: 11px; color: #3a7ab0; letter-spacing: 0.08em; text-transform: uppercase; }
.hero-h1 { font-size: 50px; font-weight: 900; line-height: 1.04; letter-spacing: -0.03em; color: #fff; max-width: 660px; margin-bottom: 18px; }
.hero-h1 .accent { color: #4a9ee0; }
.hero-h1 .brand { color: #ffd44a; }
.hero-p { font-size: 16px; color: #6a90aa; line-height: 1.7; max-width: 520px; margin-bottom: 32px; }
.hero-btns { display: flex; gap: 12px; margin-bottom: 48px; flex-wrap: wrap; }
.btn-primary { background: #1e5fa0; color: #fff; border: none; padding: 13px 28px; font-size: 14px; font-weight: 600; cursor: pointer; border-radius: 3px; display: inline-block; transition: background 0.15s; }
.btn-primary:hover { background: #2570b8; color: #fff; }
.btn-outline { background: transparent; color: #7ab0d0; border: 1px solid #1e3a5a; padding: 13px 28px; font-size: 14px; cursor: pointer; border-radius: 3px; display: inline-block; transition: border-color 0.15s, color 0.15s; }
.btn-outline:hover { border-color: #4a9ee0; color: #c8d8e8; }
.hero-usp { display: flex; gap: 12px; flex-wrap: wrap; }
.usp-pill { display: flex; align-items: center; gap: 8px; background: #0d2240; border: 1px solid #1a3a60; padding: 8px 14px; border-radius: 4px; }
.usp-dot { width: 6px; height: 6px; border-radius: 50%; background: #4a9ee0; flex-shrink: 0; }
.usp-text { font-size: 12px; color: #5a90b8; font-weight: 500; }

/* ─── Hero floating chips ───────────────────────────────────────────────────── */
.hero-chips { position: absolute; inset: 0; pointer-events: none; }

.hc {
  position: absolute;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 0.04em;
  opacity: 0;
  animation: chip-pulse 14s infinite both;
}

/* sizes */
.hc--lg { font-size: 15px; padding: 7px 16px; }
.hc--md { font-size: 13px; padding: 6px 13px; }
.hc--sm { font-size: 11px; padding: 5px 11px; }

/* colour variants */
.hc--blue  { background: #0d2a4a; border: 1px solid #2e78c8; color: #7dc8ff; }
.hc--dim   { background: #0d1e35; border: 1px solid #1e4a78; color: #5a90b8; }
.hc--faint { background: #0a1628; border: 1px solid #1a3a60; color: #3a6080; }

@keyframes chip-pulse {
  0%   { opacity: 0; transform: translateY(10px) scale(0.93); }
  7%   { opacity: 1; transform: translateY(0)    scale(1);    }
  28%  { opacity: 1; transform: translateY(0)    scale(1);    }
  40%  { opacity: 0; transform: translateY(-8px) scale(0.96); }
  100% { opacity: 0; transform: translateY(-8px) scale(0.96); }
}

@media (max-width: 860px) {
  .hero-chips { display: none; }
}

/* ─── USP BAR ───────────────────────────────────────────────────────────────── */
.usp-bar { background: #0d2240; border-top: 1px solid #1a3a60; border-bottom: 1px solid #1a3a60; padding: 18px 2rem; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.usp-bar-icon { width: 40px; height: 40px; background: #1e5fa0; border-radius: 4px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.usp-bar-title { font-size: 14px; font-weight: 700; color: #fff; }
.usp-bar-desc { font-size: 12px; color: #5a90aa; margin-top: 2px; }
.usp-divider { width: 1px; height: 36px; background: #1a3a60; margin: 0 8px; flex-shrink: 0; }

/* ─── STATS ─────────────────────────────────────────────────────────────────── */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); background: #1e5fa0; }
.stat { padding: 24px 2rem; border-right: 1px solid rgba(255,255,255,0.15); }
.stat:last-child { border-right: none; }
.stat-n { font-size: 30px; font-weight: 900; color: #fff; letter-spacing: -0.03em; }
.stat-l { font-size: 11px; color: rgba(255,255,255,0.65); margin-top: 3px; text-transform: uppercase; letter-spacing: 0.07em; }

/* ─── DIFFERENTIATOR ────────────────────────────────────────────────────────── */
.diff { background: #0d1e35; padding: 56px 2rem; }
.sec-label { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #4a9ee0; margin-bottom: 8px; }
.sec-title { font-size: 30px; font-weight: 800; color: #fff; letter-spacing: -0.025em; margin-bottom: 8px; }
.sec-sub { font-size: 15px; color: #4a7090; margin-bottom: 36px; line-height: 1.6; max-width: 560px; }
.diff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: #1a2e4a; border: 1px solid #1a2e4a; }
.diff-card { background: #0d1e35; padding: 24px; }
.diff-num { font-size: 11px; font-weight: 700; color: #1e5fa0; letter-spacing: 0.08em; margin-bottom: 10px; }
.diff-title { font-size: 15px; font-weight: 700; color: #c8dcea; margin-bottom: 6px; }
.diff-desc { font-size: 13px; color: #4a6a80; line-height: 1.6; }
.diff-highlight { background: #0d2a4a; border: 1px solid #1e5fa0; padding: 20px 24px; border-radius: 4px; margin-top: 24px; display: flex; align-items: flex-start; gap: 14px; }
.diff-hl-bar { width: 3px; min-height: 48px; background: #1e5fa0; border-radius: 2px; flex-shrink: 0; margin-top: 2px; }
.diff-hl-title { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.diff-hl-desc { font-size: 13px; color: #5a90aa; line-height: 1.5; }

/* ─── SERVICES ──────────────────────────────────────────────────────────────── */
.services { background: #0a1628; padding: 56px 2rem; }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: #1a2e4a; border: 1px solid #1a2e4a; margin-top: 32px; }
.svc-card { background: #0a1628; padding: 26px 22px; }
.svc-tag { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #1e5fa0; margin-bottom: 10px; }
.svc-title { font-size: 14px; font-weight: 700; color: #b8d0e4; margin-bottom: 6px; }
.svc-desc { font-size: 12px; color: #3a5a72; line-height: 1.65; }

/* ─── JOBS ──────────────────────────────────────────────────────────────────── */
.jobs { background: #0d1e35; padding: 56px 2rem; }
.jobs-list { margin-top: 28px; display: flex; flex-direction: column; gap: 1px; background: #1a2e4a; border: 1px solid #1a2e4a; }
.job { background: #0d1e35; padding: 18px 22px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; transition: background 0.15s; }
.job:hover { background: #111e35; }
.job-l { display: flex; align-items: center; gap: 14px; }
.job-ind { width: 3px; height: 36px; background: #1e5fa0; border-radius: 2px; flex-shrink: 0; }
.job-role { font-size: 14px; font-weight: 600; color: #c8dcea; }
.job-co { font-size: 12px; color: #3a6a88; margin-top: 2px; }
.job-r { display: flex; align-items: center; gap: 10px; }
.badge { font-size: 10px; padding: 3px 8px; border-radius: 2px; font-weight: 700; letter-spacing: 0.04em; }
.b-remote { background: #0a2018; color: #3a9e6a; border: 1px solid #1a4a30; }
.b-hybrid { background: #1a1a10; color: #c8a030; border: 1px solid #3a3018; }
.b-onsite { background: #10101e; color: #7a6ad0; border: 1px solid #28204a; }
.job-sal { font-size: 12px; color: #3a6a88; min-width: 96px; text-align: right; }
.job-arr { color: #1a3a5a; font-size: 18px; }
.job:hover .job-arr { color: #4a9ee0; }

/* ─── PROCESS ───────────────────────────────────────────────────────────────── */
.process { background: #0a1628; padding: 56px 2rem; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 36px; }
.step { padding: 0 16px 0 0; }
.step-n { font-size: 36px; font-weight: 900; color: #1a2e4a; letter-spacing: -0.04em; margin-bottom: 10px; }
.step-bar { width: 100%; height: 2px; background: #1a2e4a; margin-bottom: 16px; }
.step-bar-fill { height: 2px; background: #1e5fa0; width: 60%; }
.step-title { font-size: 13px; font-weight: 700; color: #c8dcea; margin-bottom: 6px; }
.step-desc { font-size: 12px; color: #3a5a72; line-height: 1.6; }

/* ─── CTA ───────────────────────────────────────────────────────────────────── */
.cta { background: #0d2240; border-top: 1px solid #1a3a60; border-bottom: 1px solid #1a3a60; padding: 56px 2rem; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; color: #4a9ee0; text-transform: uppercase; margin-bottom: 8px; }
.cta-title { font-size: 26px; font-weight: 800; color: #fff; letter-spacing: -0.02em; margin-bottom: 6px; }
.cta-sub { font-size: 14px; color: #4a7090; }
.cta-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.cta-btn1 { background: #1e5fa0; color: #fff; border: none; padding: 13px 28px; font-size: 14px; font-weight: 600; cursor: pointer; border-radius: 3px; display: inline-block; transition: background 0.15s; }
.cta-btn1:hover { background: #2570b8; color: #fff; }
.cta-btn2 { background: transparent; color: #5a90b8; border: 1px solid #1a3a60; padding: 13px 28px; font-size: 14px; cursor: pointer; border-radius: 3px; display: inline-block; transition: border-color 0.15s; }
.cta-btn2:hover { border-color: #4a9ee0; }

/* ─── FOOTER ────────────────────────────────────────────────────────────────── */
.footer { background: #060e1c; padding: 28px 2rem; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid #0d1e35; flex-wrap: wrap; gap: 16px; }
.footer-left { display: flex; align-items: center; gap: 14px; }
.footer-copy { font-size: 12px; color: #2a4a6a; }
.footer-tagline { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; color: #1a3a5a; text-transform: uppercase; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { font-size: 12px; color: #2a4a6a; transition: color 0.15s; }
.footer-links a:hover { color: #4a9ee0; }

/* ─── APPLY PAGE ────────────────────────────────────────────────────────────── */
.apply-page { max-width: 780px; margin: 0 auto; padding: 40px 2rem 80px; }

.apply-back { margin-bottom: 28px; }
.apply-back-link { font-size: 13px; color: #4a7090; display: inline-flex; align-items: center; gap: 6px; transition: color 0.15s; }
.apply-back-link:hover { color: #4a9ee0; }

.apply-job-card { background: #0d1e35; border: 1px solid #1a2e4a; padding: 18px 22px; display: flex; align-items: center; justify-content: space-between; border-radius: 4px; margin-bottom: 28px; flex-wrap: wrap; gap: 12px; }
.apply-job-left { display: flex; align-items: center; gap: 14px; }
.apply-job-ind { width: 3px; height: 36px; background: #1e5fa0; border-radius: 2px; flex-shrink: 0; }
.apply-job-title { font-size: 16px; font-weight: 700; color: #c8dcea; }
.apply-job-meta { font-size: 12px; color: #3a6a88; margin-top: 3px; }
.apply-job-right { display: flex; align-items: center; gap: 10px; }
.apply-job-sal { font-size: 13px; color: #5a90b8; font-weight: 600; }

.apply-desc { background: #0d1e35; border: 1px solid #1a2e4a; border-radius: 4px; padding: 24px; margin-bottom: 32px; }
.apply-desc-inner { max-width: 100%; }
.apply-section-label { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #4a9ee0; margin-bottom: 12px; }
.apply-para { font-size: 13px; color: #6a90aa; line-height: 1.7; margin-bottom: 12px; }
.apply-req-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.apply-req-item { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: #6a90aa; line-height: 1.5; }
.apply-req-dot { width: 5px; height: 5px; border-radius: 50%; background: #1e5fa0; flex-shrink: 0; margin-top: 6px; }

.apply-form-wrap { background: #0d1e35; border: 1px solid #1a2e4a; border-radius: 4px; padding: 28px; }
.apply-form-header { margin-bottom: 28px; }
.apply-form-title { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.apply-form-note { font-size: 13px; color: #4a6a80; }

/* Form global error */
.form-global-error { background: #2a0e0e; border: 1px solid #6a2020; border-radius: 3px; padding: 12px 16px; margin-bottom: 20px; }
.form-global-error p { font-size: 13px; color: #e07070; }

.apply-form { display: flex; flex-direction: column; gap: 0; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-label { font-size: 11px; font-weight: 700; color: #6a90a8; text-transform: uppercase; letter-spacing: 0.08em; display: block; margin-bottom: 6px; }
.form-req { color: #4a9ee0; }
.form-input {
  width: 100%;
  background: #0a1628;
  border: 1px solid #1a3a60;
  color: #c8d8e8;
  padding: 10px 14px;
  font-size: 14px;
  border-radius: 3px;
  outline: none;
  font-family: inherit;
  transition: border-color 0.15s;
}
.form-input:focus { border-color: #1e5fa0; }
.form-input::placeholder { color: #2a4a60; }
.form-input-error { border-color: #6a2020 !important; }
.form-textarea { resize: vertical; min-height: 110px; }
.form-error { font-size: 11px; color: #e07070; margin-top: 4px; }
.form-help { font-size: 11px; color: #3a5a72; margin-top: 5px; }

/* File input */
.form-file-wrap { position: relative; }
.form-file-input { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; }
.form-file-label {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #0a1628;
  border: 1px dashed #1a3a60;
  color: #4a7090;
  padding: 12px 16px;
  border-radius: 3px;
  font-size: 13px;
  cursor: pointer;
  transition: border-color 0.15s;
}
.form-file-wrap:hover .form-file-label { border-color: #1e5fa0; color: #6a90b0; }
.form-file-icon { font-size: 16px; color: #1e5fa0; }

.form-submit {
  background: #1e5fa0;
  color: #fff;
  border: none;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 3px;
  align-self: flex-start;
  letter-spacing: 0.02em;
  transition: background 0.15s;
  margin-top: 8px;
  font-family: inherit;
}
.form-submit:hover { background: #2570b8; }

/* ─── SUCCESS PAGE ──────────────────────────────────────────────────────────── */
.success-page { max-width: 580px; margin: 0 auto; padding: 80px 2rem; text-align: center; }
.success-icon { margin-bottom: 20px; display: flex; justify-content: center; }
.success-badge { display: inline-block; background: #0d2240; border: 1px solid #1e4a7a; color: #5aaee0; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; padding: 5px 14px; border-radius: 2px; text-transform: uppercase; margin-bottom: 16px; }
.success-title { font-size: 40px; font-weight: 900; color: #fff; letter-spacing: -0.03em; margin-bottom: 16px; }
.success-desc { font-size: 15px; color: #5a80a0; line-height: 1.7; margin-bottom: 32px; }
.success-detail { background: #0d2a4a; border: 1px solid #1e5fa0; padding: 20px 24px; border-radius: 4px; margin-bottom: 36px; display: flex; align-items: flex-start; gap: 14px; text-align: left; }
.success-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ─── HAMBURGER + MOBILE MENU ───────────────────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: 8px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #c8d8e8;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-hamburger--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger--open span:nth-child(2) { opacity: 0; }
.nav-hamburger--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  background: #0d1e35;
  border-bottom: 1px solid #1a2e4a;
  position: sticky;
  top: 64px;
  z-index: 99;
}
.nav-mobile a {
  padding: 14px 1.5rem;
  font-size: 15px;
  color: #6a90b0;
  border-bottom: 1px solid #1a2e4a;
  display: block;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: #fff; background: #111e35; }
.nav-mobile--open { display: flex; }
.nav-mobile-cta {
  background: #1e5fa0 !important;
  color: #fff !important;
  font-weight: 600;
  text-align: center;
  margin: 12px 1.5rem 16px;
  border-radius: 3px;
  border-bottom: none !important;
}

/* ─── RESPONSIVE ────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  body { overflow-x: hidden; }

  .nav { padding: 0 1rem; }
  .nav-links { display: none; }
  .nav-tb { display: none; }
  .nav-hamburger { display: flex; }

  .hero { padding: 48px 1rem 40px; }
  .hero-h1 { font-size: 34px; }

  .usp-bar { padding: 14px 1rem; }
  .usp-divider { display: none; }

  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }

  .diff { padding: 40px 1rem; }
  .diff-grid { grid-template-columns: 1fr; }

  .services { padding: 40px 1rem; }
  .svc-grid { grid-template-columns: 1fr 1fr; }

  .jobs { padding: 40px 1rem; }
  .job { flex-wrap: wrap; gap: 8px; }
  .job-sal { min-width: unset; text-align: left; }

  .process { padding: 40px 1rem; }
  .steps { grid-template-columns: 1fr 1fr; row-gap: 28px; }

  .cta { padding: 40px 1rem; }

  .footer { padding: 24px 1rem; }

  .form-row-2 { grid-template-columns: 1fr; }
  .apply-page { padding: 32px 1rem 60px; }
  .apply-job-card { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .nav-cta { padding: 7px 14px; font-size: 12px; }
  .nav-brand { font-size: 14px; }
  .nav-sub { display: none; }

  .hero { padding: 40px 1rem 32px; }
  .hero-h1 { font-size: 26px; }
  .hero-p { font-size: 14px; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-outline { text-align: center; }

  .svc-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }

  .cta { flex-direction: column; }
  .cta-title { font-size: 22px; }
  .cta-btns { flex-direction: column; width: 100%; }
  .cta-btn1, .cta-btn2 { text-align: center; }
}

/* ─── CERTIFIED ENGINEERS SECTION ──────────────────────────────────────────── */
.cert-eng-section { background: #0a1628; padding: 64px 2rem; border-top: 1px solid #1a2e4a; border-bottom: 1px solid #1a2e4a; }
.cert-eng-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; max-width: 1100px; }
.cert-eng-lead { font-size: 15px; color: #5a8098; line-height: 1.75; margin-bottom: 28px; }
.cert-eng-lead strong { color: #c8dcea; font-weight: 700; }
.cert-eng-badges { display: flex; flex-direction: column; gap: 10px; }
.cert-eng-badge { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; color: #7ab8e8; background: #0d2240; border: 1px solid #1e5fa0; padding: 10px 14px; border-radius: 4px; }

.cert-steps { display: flex; flex-direction: column; gap: 0; }
.cert-step { display: flex; gap: 18px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid #1a2e4a; }
.cert-step:last-child { border-bottom: none; padding-bottom: 0; }
.cert-step:first-child { padding-top: 0; }
.cert-step-num { font-size: 11px; font-weight: 800; color: #1e5fa0; letter-spacing: 0.1em; background: #0d2240; border: 1px solid #1e5fa0; border-radius: 3px; padding: 4px 8px; flex-shrink: 0; margin-top: 2px; }
.cert-step-title { font-size: 14px; font-weight: 700; color: #c8dcea; margin-bottom: 5px; }
.cert-step-desc { font-size: 13px; color: #4a6a80; line-height: 1.65; }

@media (max-width: 768px) {
  .cert-eng-inner { grid-template-columns: 1fr; gap: 40px; }
  .cert-eng-section { padding: 48px 1rem; }
}

/* ─── ABOUT PAGE ────────────────────────────────────────────────────────────── */
.about-hero { background: #0a1628; padding: 72px 2rem 60px; position: relative; overflow: hidden; }

.about-hero--split { display: grid; grid-template-columns: 1fr 420px; gap: 56px; align-items: start; }
.about-hero--split .hero-geo { display: none; }
.about-hero-left { position: relative; z-index: 1; }
.about-hero-right { position: relative; z-index: 1; padding-top: 8px; }

.about-interview-card { background: #0d1e35; border: 1px solid #1a2e4a; border-radius: 8px; padding: 24px; }
.about-interview-label { font-size: 10px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: #4a9ee0; margin-bottom: 20px; }

@media (max-width: 960px) {
  .about-hero--split { grid-template-columns: 1fr; gap: 40px; }
}

.about-mission-strip { background: #1e5fa0; padding: 28px 2rem; }
.about-mission-inner { max-width: 860px; display: flex; align-items: flex-start; gap: 24px; }
.about-mission-label { font-size: 10px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.6); white-space: nowrap; padding-top: 3px; }
.about-mission-text { font-size: 16px; font-weight: 600; color: #fff; line-height: 1.6; }

/* Founder */
.about-founder { background: #0d1e35; padding: 64px 2rem; }
.about-founder-inner { display: grid; grid-template-columns: 1fr 280px; gap: 56px; align-items: start; max-width: 1100px; }
.about-founder-name { font-size: 36px; font-weight: 900; color: #fff; letter-spacing: -0.03em; margin-bottom: 6px; }
.about-founder-title { font-size: 13px; color: #4a9ee0; font-weight: 600; margin-bottom: 24px; letter-spacing: 0.02em; }
.about-founder-bio { font-size: 14px; color: #5a8098; line-height: 1.75; margin-bottom: 16px; }
.about-founder-bio strong { color: #c8dcea; font-weight: 700; }
.about-founder-certs { display: flex; flex-direction: column; gap: 10px; margin-top: 28px; padding-top: 24px; border-top: 1px solid #1a2e4a; }
.about-cert-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: #6a90aa; }
.about-cert-dot { width: 6px; height: 6px; border-radius: 50%; background: #1e5fa0; flex-shrink: 0; }

/* Founder card */
.about-founder-card { background: #0a1628; border: 1px solid #1a2e4a; border-radius: 6px; padding: 28px; text-align: center; position: sticky; top: 80px; }
.about-founder-avatar { width: 88px; height: 88px; background: #0d2240; border: 2px solid #1e5fa0; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.about-founder-card-name { font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 3px; }
.about-founder-card-role { font-size: 12px; color: #4a7090; margin-bottom: 10px; }
.about-founder-card-badge { display: inline-block; background: #0d2240; border: 1px solid #1e5fa0; color: #4a9ee0; font-size: 10px; font-weight: 700; letter-spacing: 0.08em; padding: 4px 10px; border-radius: 2px; text-transform: uppercase; margin-bottom: 20px; }
.about-founder-card-divider { height: 1px; background: #1a2e4a; margin-bottom: 16px; }
.about-founder-card-stat { display: flex; align-items: baseline; justify-content: center; gap: 8px; margin-bottom: 8px; }
.about-founder-card-n { font-size: 26px; font-weight: 900; color: #fff; letter-spacing: -0.03em; }
.about-founder-card-l { font-size: 11px; color: #3a5a72; }
.about-founder-card-cta { display: block; background: #1e5fa0; color: #fff; padding: 11px 20px; font-size: 13px; font-weight: 600; border-radius: 3px; margin-top: 20px; transition: background 0.15s; }
.about-founder-card-cta:hover { background: #2570b8; color: #fff; }

/* Guarantee */
.about-guarantee { background: #0d2240; border-top: 1px solid #1a3a60; border-bottom: 1px solid #1a3a60; padding: 56px 2rem; }
.about-guarantee-inner { display: flex; align-items: flex-start; gap: 28px; }
.about-guarantee-icon { width: 64px; height: 64px; background: #1e5fa0; border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 4px; }
.about-guarantee-title { font-size: 26px; font-weight: 800; color: #fff; letter-spacing: -0.02em; margin-bottom: 12px; }
.about-guarantee-desc { font-size: 14px; color: #4a7090; line-height: 1.75; max-width: 680px; margin-bottom: 28px; }
.about-guarantee-pillars { display: flex; align-items: center; gap: 0; flex-wrap: wrap; }
.about-guarantee-pillar { padding: 0 32px 0 0; }
.about-guarantee-pillar:first-child { padding-left: 0; }
.about-gp-n { font-size: 32px; font-weight: 900; color: #fff; letter-spacing: -0.03em; }
.about-gp-l { font-size: 11px; color: #3a6a88; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; max-width: 140px; line-height: 1.4; }
.about-gp-divider { width: 1px; height: 48px; background: #1a3a60; margin: 0 32px 0 0; flex-shrink: 0; }

@media (max-width: 768px) {
  .about-founder-inner { grid-template-columns: 1fr; }
  .about-founder-card { position: static; }
  .about-guarantee-inner { flex-direction: column; }
  .about-mission-inner { flex-direction: column; gap: 8px; }
  .about-guarantee-pillars { gap: 20px; }
  .about-gp-divider { display: none; }
}

/* About → Meet Team CTA strip */
.about-team-cta { background: #0d1e35; border-top: 1px solid #1a2e4a; border-bottom: 1px solid #1a2e4a; padding: 36px 2rem; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.about-team-cta-title { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.about-team-cta-desc { font-size: 14px; color: #4a7090; max-width: 520px; }

/* ─── TEAM PAGE ─────────────────────────────────────────────────────────────── */
.team-header { background: #0a1628; padding: 64px 2rem 48px; position: relative; overflow: hidden; }

.team-section { background: #0d1e35; padding: 48px 2rem 64px; }

.team-card { max-width: 780px; margin: 0 auto; background: #0a1628; border: 1px solid #1a2e4a; border-radius: 8px; overflow: hidden; }

/* Cover image */
.team-card-cover { height: 120px; background: #0d2240; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.team-cover-logo { position: absolute; right: 40px; top: 50%; transform: translateY(-50%); }

/* Avatar */
.team-avatar-wrap { margin: -52px 0 0 28px; position: relative; z-index: 2; width: 104px; height: 104px; }
.team-avatar { width: 104px; height: 104px; border-radius: 50%; object-fit: cover; object-position: top center; border: 3px solid #0a1628; display: block; }
.team-avatar-fallback { width: 104px; height: 104px; border-radius: 50%; background: #0d2240; border: 3px solid #0a1628; align-items: center; justify-content: center; }

/* Profile body */
.team-card-body { padding: 16px 28px 28px; }
.team-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 14px; flex-wrap: wrap; }
.team-name { font-size: 24px; font-weight: 900; color: #fff; letter-spacing: -0.02em; margin-bottom: 3px; }
.team-role { font-size: 14px; color: #5a90aa; margin-bottom: 5px; }
.team-location { display: flex; align-items: center; gap: 6px; font-size: 12px; color: #3a6070; }
.team-loc-dot { width: 5px; height: 5px; border-radius: 50%; background: #1e5fa0; flex-shrink: 0; }
.team-card-actions { display: flex; gap: 8px; flex-shrink: 0; padding-top: 4px; }
.team-btn-primary { background: #1e5fa0; color: #fff; padding: 8px 18px; font-size: 13px; font-weight: 600; border-radius: 20px; transition: background 0.15s; white-space: nowrap; }
.team-btn-primary:hover { background: #2570b8; color: #fff; }
.team-btn-secondary { background: transparent; color: #5a90b8; border: 1px solid #1a3a60; padding: 8px 18px; font-size: 13px; font-weight: 600; border-radius: 20px; transition: border-color 0.15s; white-space: nowrap; }
.team-btn-secondary:hover { border-color: #4a9ee0; color: #c8d8e8; }

/* Champion badge */
.team-champion-badge { display: inline-flex; align-items: center; gap: 8px; background: #0d2240; border: 1px solid #1e5fa0; color: #4a9ee0; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; padding: 5px 12px; border-radius: 2px; text-transform: uppercase; margin-bottom: 16px; }

.team-divider { height: 1px; background: #1a2e4a; margin: 20px 0; }

.team-section-label { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #4a9ee0; margin-bottom: 12px; }

.team-bio { font-size: 14px; color: #5a8098; line-height: 1.75; margin-bottom: 12px; }
.team-bio strong { color: #c8dcea; font-weight: 700; }

/* Certifications */
.team-certs { display: flex; flex-direction: column; gap: 12px; }
.team-cert { display: flex; align-items: flex-start; gap: 12px; }
.team-cert-icon { width: 36px; height: 36px; background: #0d2240; border: 1px solid #1a3a60; border-radius: 4px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.team-cert-name { font-size: 13px; font-weight: 600; color: #c8dcea; margin-bottom: 2px; }
.team-cert-issuer { font-size: 11px; color: #3a6070; }

/* Experience */
.team-experience { display: flex; flex-direction: column; gap: 20px; }
.team-exp-item { display: flex; gap: 14px; align-items: flex-start; }
.team-exp-ind { width: 3px; min-height: 60px; background: #1e5fa0; border-radius: 2px; flex-shrink: 0; margin-top: 3px; }
.team-exp-title { font-size: 14px; font-weight: 700; color: #c8dcea; margin-bottom: 2px; }
.team-exp-company { font-size: 12px; color: #4a7090; margin-bottom: 2px; }
.team-exp-meta { font-size: 11px; color: #3a5a72; margin-bottom: 6px; }
.team-exp-desc { font-size: 13px; color: #4a6a80; line-height: 1.6; }

/* Stats */
.team-stats { display: flex; align-items: center; gap: 0; flex-wrap: wrap; }
.team-stat { padding: 0 28px; text-align: center; }
.team-stat:first-child { padding-left: 0; }
.team-stat-n { font-size: 26px; font-weight: 900; color: #fff; letter-spacing: -0.03em; }
.team-stat-l { font-size: 10px; color: #3a5a72; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }
.team-stat-divider { width: 1px; height: 40px; background: #1a2e4a; flex-shrink: 0; }

@media (max-width: 600px) {
  .team-card-top { flex-direction: column; }
  .team-card-actions { width: 100%; }
  .team-btn-primary, .team-btn-secondary { flex: 1; text-align: center; }
  .team-stats { gap: 16px; }
  .team-stat-divider { display: none; }
  .team-stat { padding: 0; }
}

/* Team grid — compact member cards */
.team-header-stats { display: flex; align-items: center; gap: 0; flex-wrap: wrap; margin-top: 36px; }
.team-hstat { display: flex; flex-direction: column; padding: 0 28px; }
.team-hstat:first-child { padding-left: 0; }
.team-hstat-n { font-size: 22px; font-weight: 900; color: #fff; letter-spacing: -0.03em; }
.team-hstat-l { font-size: 10px; color: #3a5a72; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }
.team-hstat-div { width: 1px; height: 36px; background: #1a2e4a; flex-shrink: 0; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; max-width: 1060px; margin: 0 auto; }

.team-mc { background: #0a1628; border: 1px solid #1a2e4a; border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; }
.team-mc-cover { height: 72px; background: linear-gradient(135deg, #0d2240 0%, #0a1628 100%); border-bottom: 1px solid #1a2e4a; position: relative; }
.team-mc-cover::after { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(0deg, transparent, transparent 27px, #1e5fa014 27px, #1e5fa014 28px), repeating-linear-gradient(90deg, transparent, transparent 27px, #1e5fa014 27px, #1e5fa014 28px); }
.team-mc-avatar-wrap { margin: -36px 0 0 20px; position: relative; z-index: 2; width: 72px; height: 72px; }
.team-mc-avatar { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; object-position: top center; border: 3px solid #0a1628; display: block; }
.team-mc-avatar-fb { width: 72px; height: 72px; border-radius: 50%; background: #0d2240; border: 3px solid #0a1628; align-items: center; justify-content: center; }

.team-mc-body { padding: 10px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.team-mc-name { font-size: 17px; font-weight: 900; color: #fff; letter-spacing: -0.02em; margin-bottom: 2px; }
.team-mc-role { font-size: 12px; color: #5a90aa; margin-bottom: 4px; }
.team-mc-loc { display: flex; align-items: center; gap: 5px; font-size: 11px; color: #3a6070; margin-bottom: 12px; }

.team-mc-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.team-mc-badge { font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 3px 8px; border-radius: 2px; background: #0d2240; border: 1px solid #1a3a60; color: #4a7090; }
.team-mc-badge--hl { background: #0d2240; border-color: #1e5fa0; color: #4a9ee0; }

.team-mc-bio { font-size: 13px; color: #4a6a80; line-height: 1.65; margin-bottom: 16px; flex: 1; }

.team-mc-actions { display: flex; gap: 8px; }
.team-mc-actions .team-btn-primary, .team-mc-actions .team-btn-secondary { flex: 1; text-align: center; }

@media (max-width: 600px) {
  .team-header-stats { gap: 16px; margin-top: 24px; }
  .team-hstat-div { display: none; }
  .team-hstat { padding: 0; }
  .team-grid { grid-template-columns: 1fr; }
}

/* ── Announcement ticker ── */
.ticker-wrap { display: block; overflow: hidden; background: #0f2d52; border-bottom: 1px solid #1a4070; height: 38px; text-decoration: none; cursor: pointer; }
.ticker-wrap:hover { background: #132f55; }
.ticker-track { display: flex; align-items: center; white-space: nowrap; height: 100%; width: max-content; animation: ticker-scroll 36s linear infinite; }
.ticker-wrap:hover .ticker-track { animation-play-state: paused; }
.ticker-item { display: inline-flex; align-items: center; gap: 8px; padding: 0 36px; font-size: 12.5px; color: #c8dff0; font-weight: 500; }
.ticker-item strong { color: #fff; font-weight: 700; }
.ticker-sep { color: #1e5fa0; font-size: 8px; flex-shrink: 0; }

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── News list ── */
.news-section { background: #0d1e35; padding: 48px 2rem 64px; }
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; max-width: 1060px; margin: 0 auto; }
.news-empty { color: #3a5a72; font-size: 14px; }

.news-card-link { text-decoration: none; display: block; }
.news-card { background: #0a1628; border: 1px solid #1a2e4a; border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; transition: border-color 0.15s, transform 0.15s; }
.news-card-link:hover .news-card { border-color: #1e5fa0; transform: translateY(-2px); }
.news-card--event { border-color: #1a3a60; }

/* Thumbnail */
.news-thumb { position: relative; height: 180px; background: linear-gradient(135deg, #0d2240 0%, #091828 100%); overflow: hidden; flex-shrink: 0; }
.news-thumb::after { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(0deg, transparent, transparent 27px, #1e5fa010 27px, #1e5fa010 28px), repeating-linear-gradient(90deg, transparent, transparent 27px, #1e5fa010 27px, #1e5fa010 28px); }
.news-thumb--fallback::before { content: 'DATA + AI SUMMIT 2026'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; letter-spacing: 0.18em; color: #1e5fa0; z-index: 1; }
.news-thumb-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.news-thumb-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 50%, #0a162880 100%); z-index: 1; }
.news-thumb-event-badge { position: absolute; bottom: 10px; left: 12px; z-index: 2; display: flex; align-items: center; gap: 5px; background: #0a1628cc; border: 1px solid #1e5fa0; color: #4a9ee0; font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 8px; border-radius: 2px; backdrop-filter: blur(4px); }

/* Card body */
.news-card-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.news-card-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.news-tag { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 8px; border-radius: 2px; background: #0d2240; border: 1px solid #1a3a60; color: #4a7090; }
.news-tag--event { border-color: #1e5fa0; color: #4a9ee0; }
.news-date { font-size: 11px; color: #3a5a72; }
.news-card-title { font-size: 16px; font-weight: 800; color: #fff; letter-spacing: -0.01em; line-height: 1.4; margin-bottom: 8px; }
.news-card-excerpt { font-size: 13px; color: #4a6a80; line-height: 1.65; flex: 1; margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.news-read-more { font-size: 12px; font-weight: 700; color: #4a9ee0; letter-spacing: 0.04em; }
.news-card-link:hover .news-read-more { color: #6ab8f0; }

/* ── News detail ── */
.news-detail-wrap { background: #0d1e35; padding: 32px 2rem 64px; max-width: 860px; margin: 0 auto; }
.news-detail-back { margin-bottom: 24px; }
.news-back-link { font-size: 13px; color: #4a7090; font-weight: 600; transition: color 0.15s; }
.news-back-link:hover { color: #4a9ee0; }

/* Hero image */
.news-hero { position: relative; height: 360px; border-radius: 8px; overflow: hidden; background: linear-gradient(135deg, #0d2240 0%, #091828 100%); margin-bottom: 36px; border: 1px solid #1a3a60; }
.news-hero::after { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(0deg, transparent, transparent 27px, #1e5fa010 27px, #1e5fa010 28px), repeating-linear-gradient(90deg, transparent, transparent 27px, #1e5fa010 27px, #1e5fa010 28px); }
.news-hero--fallback { display: flex; align-items: center; justify-content: center; }
.news-hero--fallback::before { content: 'DATABRICKS DATA + AI SUMMIT 2026 · SAN FRANCISCO'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; letter-spacing: 0.14em; color: #1e5fa066; z-index: 1; text-align: center; padding: 2rem; }
.news-hero-img { width: 100%; height: 100%; object-fit: cover; display: block; position: relative; z-index: 0; }
.news-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 40%, #0d1e3566 100%); z-index: 1; }
.news-hero-badge { position: absolute; top: 16px; left: 16px; z-index: 2; display: flex; align-items: center; gap: 6px; background: #0a1628cc; border: 1px solid #1e5fa0; color: #4a9ee0; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 10px; border-radius: 2px; backdrop-filter: blur(6px); }

/* Article */
.news-article { }
.news-article-header { margin-bottom: 28px; }
.news-article-title { font-size: 28px; font-weight: 900; color: #fff; letter-spacing: -0.02em; line-height: 1.3; margin-bottom: 12px; }
.news-article-lead { font-size: 15px; color: #5a8098; line-height: 1.75; }

.news-event-details { background: #0d2240; border: 1px solid #1a3a60; border-radius: 6px; padding: 18px 22px; margin-bottom: 32px; }
.news-event-row { display: flex; gap: 40px; flex-wrap: wrap; }
.news-event-item { display: flex; flex-direction: column; gap: 4px; }
.news-event-label { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #3a5a72; }
.news-event-value { font-size: 14px; font-weight: 600; color: #c8dcea; }

.news-body-section { margin-bottom: 24px; }
.news-body-label { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #4a9ee0; margin-bottom: 12px; }
.news-body-p { font-size: 14px; color: #4a6a80; line-height: 1.7; }
.news-bullets { padding-left: 20px; display: flex; flex-direction: column; gap: 10px; margin: 0; }
.news-bullets li { font-size: 14px; color: #4a6a80; line-height: 1.7; }
.news-bullets li b { color: #c8dcea; font-weight: 700; }

.news-article-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 32px; padding-top: 28px; border-top: 1px solid #1a2e4a; }

@media (max-width: 640px) {
  .news-grid { grid-template-columns: 1fr; }
  .news-thumb { height: 160px; }
  .news-hero { height: 220px; }
  .news-article-title { font-size: 22px; }
  .news-event-row { gap: 20px; }
  .news-article-actions { flex-direction: column; }
  .news-article-actions .team-btn-primary,
  .news-article-actions .team-btn-secondary { text-align: center; }
  .news-detail-wrap { padding: 24px 1rem 48px; }
}

/* ── Insights list ── */
.ins-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; max-width: 1060px; margin: 0 auto; }

.ins-card-link { text-decoration: none; display: block; }
.ins-card { background: #0a1628; border: 1px solid #1a2e4a; border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; transition: border-color 0.15s, transform 0.15s; }
.ins-card-link:hover .ins-card { border-color: #1e5fa0; transform: translateY(-2px); }

.ins-thumb { position: relative; height: 200px; background: linear-gradient(135deg, #0d2240 0%, #091828 100%); overflow: hidden; flex-shrink: 0; }
.ins-thumb::after { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(0deg, transparent, transparent 27px, #1e5fa010 27px, #1e5fa010 28px), repeating-linear-gradient(90deg, transparent, transparent 27px, #1e5fa010 27px, #1e5fa010 28px); }
.ins-thumb--fallback { }
.ins-thumb-img { width: 100%; height: 100%; object-fit: cover; display: block; position: relative; z-index: 0; }
.ins-thumb-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 40%, #0a162870 100%); z-index: 1; }
.ins-thumb-cat { position: absolute; top: 12px; left: 14px; z-index: 2; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 8px; border-radius: 2px; background: #0a1628cc; border: 1px solid #1e5fa0; color: #4a9ee0; backdrop-filter: blur(4px); }

.ins-card-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.ins-card-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.ins-date { font-size: 11px; color: #3a5a72; }
.ins-dot { width: 3px; height: 3px; border-radius: 50%; background: #1e5fa0; flex-shrink: 0; }
.ins-read-time { font-size: 11px; color: #3a5a72; }
.ins-card-title { font-size: 16px; font-weight: 800; color: #fff; letter-spacing: -0.01em; line-height: 1.4; margin-bottom: 8px; }
.ins-card-excerpt { font-size: 13px; color: #4a6a80; line-height: 1.65; flex: 1; margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

.ins-card-footer { display: flex; align-items: center; justify-content: space-between; }
.ins-author-row { display: flex; align-items: center; gap: 7px; }
.ins-author-dot { width: 24px; height: 24px; border-radius: 50%; background: #1e5fa0; border: 2px solid #0d2240; flex-shrink: 0; }
.ins-author-name { font-size: 12px; font-weight: 600; color: #5a90aa; }
.ins-read-more { font-size: 12px; font-weight: 700; color: #4a9ee0; }
.ins-card-link:hover .ins-read-more { color: #6ab8f0; }

/* ── Insights detail — Medium-style ── */
.ins-detail-page { background: #0a1220; }

/* Full-width hero */
.ins-hero { width: 100%; height: 420px; overflow: hidden; }
.ins-hero-img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Narrow reading column */
.ins-col { max-width: 680px; margin: 0 auto; padding: 48px 24px 80px; }

.ins-back { display: inline-block; font-size: 13px; color: #4a7090; font-weight: 500; margin-bottom: 40px; transition: color 0.15s; }
.ins-back:hover { color: #4a9ee0; }

/* Meta row */
.ins-meta-row { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; flex-wrap: wrap; }
.ins-cat-pill { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #4a9ee0; background: #0d2240; border: 1px solid #1e5fa0; padding: 3px 9px; border-radius: 2px; }
.ins-meta-sep { color: #1e3a5a; font-size: 12px; }
.ins-meta-text { font-size: 13px; color: #3a5a72; }

/* Title */
.ins-title { font-size: 34px; font-weight: 900; color: #f0f6ff; letter-spacing: -0.03em; line-height: 1.25; margin-bottom: 28px; }

/* Byline */
.ins-byline { display: flex; align-items: center; gap: 12px; margin-bottom: 32px; }
.ins-byline-avatar-wrap { width: 44px; height: 44px; flex-shrink: 0; }
.ins-byline-avatar-img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; object-position: top center; border: 2px solid #1e5fa0; display: block; }
.ins-byline-avatar-fb { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, #1e5fa0, #0d2240); border: 2px solid #1e5fa0; }
.ins-byline-info { display: flex; flex-direction: column; gap: 3px; }
.ins-byline-name { font-size: 14px; font-weight: 700; color: #c8dcea; }
.ins-byline-role { font-size: 12px; color: #3a5a72; }

/* Divider */
.ins-rule { border: none; border-top: 1px solid #1a2e4a; margin: 0 0 36px; }

/* Lead */
.ins-lead { font-size: 20px; color: #7a9bb8; line-height: 1.7; margin-bottom: 36px; font-weight: 400; }

/* Body — generous spacing between every element */
.ins-p { font-size: 18px; color: #7a9bb8; line-height: 1.85; margin: 0 0 28px; }
.ins-h2 { font-size: 24px; font-weight: 800; color: #e8f2ff; letter-spacing: -0.02em; line-height: 1.3; margin: 48px 0 20px; }
.ins-bullets { padding-left: 24px; margin: 0 0 28px; display: flex; flex-direction: column; gap: 14px; }
.ins-bullets li { font-size: 18px; color: #7a9bb8; line-height: 1.75; }
.ins-bullets li b { color: #c8dcea; font-weight: 700; }
.ins-callout { margin: 8px 0 32px; padding: 20px 28px; border-left: 4px solid #1e5fa0; background: #0d1e35; border-radius: 0 6px 6px 0; font-size: 20px; font-style: italic; color: #6ab0d8; line-height: 1.65; }
.ins-code { background: #060f1c; border: 1px solid #1a2e4a; border-radius: 8px; padding: 20px 24px; overflow-x: auto; margin: 0 0 28px; }
.ins-code code { font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace; font-size: 14px; color: #7dc4f5; line-height: 1.65; }

@media (max-width: 640px) {
  .ins-grid { grid-template-columns: 1fr; }
  .ins-thumb { height: 170px; }
  .ins-hero { height: 220px; }
  .ins-col { padding: 32px 20px 60px; }
  .ins-title { font-size: 24px; }
  .ins-lead { font-size: 17px; }
  .ins-p, .ins-bullets li { font-size: 16px; }
  .ins-callout { font-size: 17px; }
}

/* ── Chat widget ── */
.chat-widget { position: fixed; bottom: 28px; right: 28px; z-index: 1000; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }

/* Toggle button */
.chat-btn { width: 54px; height: 54px; border-radius: 50%; background: #1e5fa0; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; color: #fff; box-shadow: 0 4px 20px #00000060; transition: background 0.15s, transform 0.15s; flex-shrink: 0; }
.chat-btn:hover { background: #2570b8; transform: scale(1.06); }
.chat-btn-icon--close { display: none; }
.chat-open .chat-btn-icon--open  { display: none; }
.chat-open .chat-btn-icon--close { display: block; }

/* Panel */
.chat-panel { width: 340px; background: #0a1628; border: 1px solid #1a3a60; border-radius: 12px; overflow: hidden; box-shadow: 0 8px 40px #00000070; display: none; flex-direction: column; }
.chat-open .chat-panel { display: flex; animation: chat-in 0.2s ease; }
@keyframes chat-in { from { opacity: 0; transform: translateY(10px) scale(0.97); } to { opacity: 1; transform: none; } }

/* Header */
.chat-header { background: #0d2240; padding: 14px 16px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #1a3a60; }
.chat-header-left { display: flex; align-items: center; gap: 10px; }
.chat-header-avatar { width: 36px; height: 36px; border-radius: 50%; background: #0a1628; border: 1px solid #1e5fa0; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.chat-header-name { font-size: 14px; font-weight: 700; color: #fff; }
.chat-header-status { display: flex; align-items: center; gap: 5px; font-size: 11px; color: #4a7090; margin-top: 2px; }
.chat-status-dot { width: 6px; height: 6px; border-radius: 50%; background: #2ecc71; flex-shrink: 0; }
.chat-close-btn { background: none; border: none; color: #4a7090; font-size: 22px; cursor: pointer; line-height: 1; padding: 0 2px; transition: color 0.15s; }
.chat-close-btn:hover { color: #c8dcea; }

/* Messages */
.chat-messages { padding: 16px; display: flex; flex-direction: column; gap: 12px; max-height: 180px; overflow-y: auto; }
.chat-bubble-bot { display: flex; align-items: flex-start; gap: 8px; }
.chat-bubble-avatar { width: 28px; height: 28px; border-radius: 50%; background: #0d2240; border: 1px solid #1e5fa0; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.chat-bubble-text { background: #0d2240; border: 1px solid #1a3a60; border-radius: 2px 10px 10px 10px; padding: 10px 13px; font-size: 13px; color: #8ab4cc; line-height: 1.6; }

/* Form */
.chat-form-wrap { padding: 12px 14px 14px; border-top: 1px solid #1a2e4a; }
.chat-form { display: flex; flex-direction: column; gap: 8px; }
.chat-field-row { display: flex; gap: 8px; }
.chat-input { background: #0d1e35; border: 1px solid #1a3a60; border-radius: 6px; padding: 9px 12px; font-size: 13px; color: #c8dcea; outline: none; width: 100%; transition: border-color 0.15s; font-family: inherit; }
.chat-input::placeholder { color: #3a5a72; }
.chat-input:focus { border-color: #1e5fa0; }
.chat-textarea { resize: none; }
.chat-send-btn { background: #1e5fa0; color: #fff; border: none; border-radius: 6px; padding: 10px 16px; font-size: 13px; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 7px; transition: background 0.15s; }
.chat-send-btn:hover { background: #2570b8; }
.chat-send-btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* Success */
.chat-success { padding: 24px 16px; display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; border-top: 1px solid #1a2e4a; }
.chat-success-icon { width: 40px; height: 40px; border-radius: 50%; background: #0d3320; border: 1px solid #1e7a40; color: #2ecc71; font-size: 20px; display: flex; align-items: center; justify-content: center; }
.chat-success-title { font-size: 15px; font-weight: 700; color: #fff; }
.chat-success-sub { font-size: 13px; color: #4a7090; }

@media (max-width: 400px) {
  .chat-widget { bottom: 16px; right: 16px; }
  .chat-panel { width: calc(100vw - 32px); }
  .chat-field-row { flex-direction: column; }
}
