/* ═══════════════════════════════════════════════
   NESTO HUB — DESIGN SYSTEM
   Theme: Ocean Blue / Light Background
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Blues */
  --blue-900: #0a1628;
  --blue-800: #0d2040;
  --blue-700: #103058;
  --blue-600: #1a4a8a;
  --blue-500: #2563eb;
  --blue-400: #3b82f6;
  --blue-300: #93c5fd;
  --blue-100: #dbeafe;
  --blue-50:  #eff6ff;

  /* Accents */
  --gold: #f59e0b;
  --gold-light: #fcd34d;
  --coral: #f97316;
  --mint: #10b981;

  /* Neutrals */
  --white: #ffffff;
  --bg: #f7f9fc;
  --bg-card: #ffffff;
  --border: #e2e8f0;
  --border-mid: #cbd5e1;
  --text: #0f172a;
  --text-mid: #334155;
  --text-muted: #64748b;
  --text-light: #94a3b8;

  /* Typography */
  --font-display: 'Fraunces', Georgia, serif;
  --font-head: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --r: 12px;
  --r-lg: 20px;
  --r-xl: 32px;
  --max: 1240px;

  /* Shadows */
  --shadow-sm: 0 1px 4px rgba(10,22,40,.06), 0 1px 2px rgba(10,22,40,.04);
  --shadow: 0 4px 20px rgba(10,22,40,.08), 0 2px 8px rgba(10,22,40,.04);
  --shadow-lg: 0 16px 48px rgba(10,22,40,.12), 0 4px 16px rgba(10,22,40,.06);
  --shadow-blue: 0 8px 32px rgba(37,99,235,.25);
}

html { scroll-behavior: smooth; }

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

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

/* ── UTILITY ── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.serif { font-family: var(--font-display); }
.syne { font-family: var(--font-head); }

/* ── TICKER ── */
.ticker {
  background: var(--blue-900);
  color: rgba(255,255,255,.7);
  padding: 10px 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker-anim 40s linear infinite;
  white-space: nowrap;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 40px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.ticker-item strong { color: var(--gold-light); }
.ticker-sep { color: var(--blue-500); font-size: 16px; }
@keyframes ticker-anim { 0%{ transform: translateX(0) } 100%{ transform: translateX(-50%) } }

/* ── NAV ── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 999;
}

.site-nav {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 999;
  transition: box-shadow .3s;
}
.site-nav.scrolled { box-shadow: var(--shadow); }
.nav-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 0;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo-mark {
  width: 38px; height: 38px;
  background: var(--blue-500);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.nav-logo-mark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.2), transparent);
}
.nav-logo-mark svg { width: 20px; height: 20px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; position: relative; z-index: 1; }
.nav-logo-text {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--blue-900);
  letter-spacing: -.03em;
}
.nav-logo-text span { color: var(--blue-500); }
.nav-logo-img {
  height: 64px;
  width: auto;
  max-width: 210px;
  display: block;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
  padding: 4px 10px;
}
.footer-brand .nav-logo-img {
  height: 70px;
  max-width: 220px;
  padding: 6px 12px;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
.nav-link {
  padding: 8px 13px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  border-radius: 8px;
  transition: all .2s;
  cursor: pointer;
  letter-spacing: .01em;
  position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--blue-500); background: var(--blue-50); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  padding: 8px;
  z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 9px 14px;
  font-size: 13px;
  font-family: var(--font-head);
  font-weight: 500;
  color: var(--text-mid);
  border-radius: 8px;
  transition: all .15s;
}
.nav-dropdown-menu a:hover { background: var(--blue-50); color: var(--blue-500); }

/* CTA btn */
.nav-cta {
  background: var(--blue-500);
  color: #fff !important;
  padding: 9px 20px !important;
  border-radius: 10px !important;
  margin-left: 10px;
  font-family: var(--font-head) !important;
  font-weight: 700 !important;
  transition: all .2s !important;
  letter-spacing: .01em;
}
.nav-cta:hover { background: var(--blue-600) !important; box-shadow: var(--shadow-blue) !important; transform: translateY(-1px) !important; }

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 1001;
  padding: 80px 28px 40px;
  overflow-y: auto;
  flex-direction: column;
  gap: 8px;
}
.mobile-menu.open { 
  display: flex;
  z-index: 1001;
 }
.mobile-menu a {
  padding: 14px 18px;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  border-radius: 12px;
  transition: all .2s;
}
.mobile-menu a:hover { background: var(--blue-50); color: var(--blue-500); }
.mobile-close {
  position: fixed;
  top: 18px;
  right: 20px;
  width: 44px; height: 44px;
  background: var(--bg);
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 1002;
  color: var(--text);
}

/* ── FOOTER ── */
.site-footer {
  background: var(--blue-900);
  color: rgba(255,255,255,.6);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 280px 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand .nav-logo-text { color: #fff; }
.footer-brand p {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255,255,255,.45);
  margin: 16px 0 24px;
}
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.footer-social:hover { background: var(--blue-500); border-color: var(--blue-500); }
.footer-social svg { width: 14px; height: 14px; stroke: rgba(255,255,255,.6); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.footer-social:hover svg { stroke: #fff; }

.footer-col h5 {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col li a {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  transition: color .2s;
  font-family: var(--font-body);
}
.footer-col li a:hover { color: var(--blue-300); }
.footer-col .footer-h2 { margin-top: 32px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(255,255,255,.25);
  font-family: var(--font-head);
  letter-spacing: .02em;
}
.footer-bottom a { color: rgba(255,255,255,.25); transition: color .2s; }
.footer-bottom a:hover { color: rgba(255,255,255,.5); }
.footer-legal { display: flex; gap: 20px; }

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37,99,235,.2);
  border: 1px solid rgba(37,99,235,.3);
  border-radius: 40px;
  padding: 6px 14px;
  margin-top: 16px;
}
.footer-badge-dot {
  width: 6px; height: 6px;
  background: var(--blue-300);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
.footer-badge span { font-size: 11px; font-weight: 700; color: var(--blue-300); letter-spacing: .07em; font-family: var(--font-head); }

/* ── SHARED COMPONENTS ── */
.eyebrow {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-500);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--blue-500);
  border-radius: 2px;
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  color: var(--blue-900);
  letter-spacing: -.02em;
  margin-bottom: 18px;
}
.section-title em { font-style: italic; color: var(--blue-500); }
.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 560px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .01em;
  padding: 12px 24px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all .25s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary { background: var(--blue-500); color: #fff; }
.btn-primary:hover { background: var(--blue-600); box-shadow: var(--shadow-blue); transform: translateY(-2px); }
.btn-outline-blue { background: transparent; color: var(--blue-500); border: 2px solid var(--blue-500); }
.btn-outline-blue:hover { background: var(--blue-500); color: #fff; }
.btn-white { background: #fff; color: var(--blue-900); }
.btn-white:hover { background: var(--bg); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-ghost { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.2); }
.btn-ghost:hover { background: rgba(255,255,255,.18); }
.btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.btn-lg { padding: 16px 32px; font-size: 15px; border-radius: 14px; }
.btn-sm { padding: 8px 18px; font-size: 13px; border-radius: 8px; }

/* Page header */
.page-hero {
  background: var(--blue-900);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 28px 28px;
}
.page-hero-glow {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.25) 0%, transparent 70%);
  right: -100px; top: -100px;
}
.page-hero-glow2 {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,158,11,.12) 0%, transparent 70%);
  left: 10%; bottom: -50px;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.07;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -.025em;
}
.page-hero h1 em { font-style: italic; color: var(--blue-300); }
.page-hero p { font-size: 18px; color: rgba(255,255,255,.65); line-height: 1.7; max-width: 580px; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 12px;
  color: rgba(255,255,255,.35);
  margin-bottom: 28px;
  letter-spacing: .04em;
}
.breadcrumb a { color: rgba(255,255,255,.4); transition: color .2s; }
.breadcrumb a:hover { color: var(--blue-300); }
.breadcrumb span { color: rgba(255,255,255,.25); }

/* Cards */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: all .3s;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

/* Tags / pills */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}
.tag-blue { background: var(--blue-50); color: var(--blue-500); border: 1px solid var(--blue-100); }
.tag-gold { background: #fef3c7; color: #92400e; border: 1px solid #fde68a; }
.tag-urgent { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
.tag-green { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.tag-dark { background: var(--blue-900); color: rgba(255,255,255,.7); }

/* ── SECTION SPACING ── */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-lg { padding: 120px 0; }

/* ── ANIMATIONS ── */
@keyframes pulse { 0%,100%{ opacity:1;transform:scale(1) } 50%{ opacity:.6;transform:scale(.85) } }
@keyframes float { 0%,100%{ transform: translateY(0) } 50%{ transform: translateY(-10px) } }
@keyframes fadeUp { from{ opacity:0;transform:translateY(24px) } to{ opacity:1;transform:translateY(0) } }
@keyframes scaleIn { from{ opacity:0;transform:scale(.95) } to{ opacity:1;transform:scale(1) } }
@keyframes slideRight { from{ opacity:0;transform:translateX(-20px) } to{ opacity:1;transform:translateX(0) } }

.animate-fade-up { animation: fadeUp .6s ease forwards; }
.animate-delay-1 { animation-delay: .1s; opacity: 0; }
.animate-delay-2 { animation-delay: .2s; opacity: 0; }
.animate-delay-3 { animation-delay: .3s; opacity: 0; }
.animate-delay-4 { animation-delay: .4s; opacity: 0; }
.animate-delay-5 { animation-delay: .5s; opacity: 0; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── LOCATION BADGE ── */
.loc-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(37,99,235,.08);
  border: 1px solid rgba(37,99,235,.15);
  border-radius: 20px;
  padding: 5px 12px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  color: var(--blue-500);
}
.loc-badge svg { width: 12px; height: 12px; stroke: var(--blue-500); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* ── MOBILE ── */
@media(max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 64px 0; }
  .section-lg { padding: 80px 0; }
  .hero-stats { display: none; }
}
@media(max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .container { padding: 0 18px; }
  .page-hero { padding: 70px 0 56px; }
}

/* ── ILO VACANCY CARD ── */
.ilo-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all .35s cubic-bezier(.2,.8,.2,1);
  position: relative;
}
.ilo-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: var(--blue-300); }
.ilo-card-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--blue-500), var(--blue-300));
}
.ilo-card-body { padding: 28px 28px 24px; }

/* ── SERVICE CARD ── */
.svc2-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all .35s cubic-bezier(.2,.8,.2,1);
  display: flex;
  flex-direction: column;
}
.svc2-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.svc2-img { height: 200px; overflow: hidden; position: relative; flex-shrink: 0; }
.svc2-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.svc2-card:hover .svc2-img img { transform: scale(1.06); }
.svc2-img-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,22,40,.55), transparent 60%); }
.svc2-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.svc2-cat { font-family: var(--font-head); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue-400); margin-bottom: 8px; }
.svc2-title { font-size: 17px; font-weight: 700; font-family: var(--font-head); color: var(--blue-900); margin-bottom: 10px; line-height: 1.3; }
.svc2-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; flex: 1; margin-bottom: 18px; }
.svc2-link { font-family: var(--font-head); font-size: 13px; font-weight: 700; color: var(--blue-500); display: inline-flex; align-items: center; gap: 4px; transition: gap .2s; }
.svc2-link:hover { gap: 8px; }
.svc2-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* Contact form */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-family: var(--font-head); font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--text-muted); }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  outline: none;
  transition: border .2s, box-shadow .2s;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--blue-400);
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}
.form-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }

/* ── FILTER BTN (used on vacancies, careers, resources) ── */
.filter-btn {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 8px 18px;
  border-radius: 20px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-muted);
  cursor: pointer;
  transition: all .2s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--blue-500);
  border-color: var(--blue-500);
  color: #fff;
}

/* ── HERO FEAT (used in hero panel) ── */
.hero-feat {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all .2s;
}
.hero-feat:hover { background: rgba(255,255,255,.07); }
.hero-feat-icon {
  width: 40px; height: 40px;
  background: rgba(37,99,235,.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-feat-icon svg { width: 18px; height: 18px; stroke: var(--blue-300); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.hero-feat h4 { font-family: var(--font-head); font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.hero-feat p { font-size: 12px; color: rgba(255,255,255,.45); line-height: 1.5; }

/* Required field asterisk */
.req-star { color: #dc2626; font-weight: 700; }

/* ── SweetAlert2 — Nesto Hub brand theme ─────────────────────────────────── */
.nh-swal.swal2-popup {
  font-family: var(--font-head), 'Inter', Arial, sans-serif;
  border-radius: 20px;
  padding: 0 0 28px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(10, 22, 40, .18);
  border: none;
}
.nh-swal .swal2-icon {
  margin-top: 28px;
}
.nh-swal .swal2-title {
  font-family: var(--font-head), Arial, sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--blue-900);
  padding-top: 4px;
}
.nh-swal .swal2-html-container,
.nh-swal .swal2-content {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.nh-swal-btn.swal2-confirm {
  font-family: var(--font-head), Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px;
  padding: 12px 32px;
  letter-spacing: .02em;
  box-shadow: 0 4px 14px rgba(30, 58, 138, .35);
  transition: transform .15s, box-shadow .15s;
}
.nh-swal-btn.swal2-confirm:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(30, 58, 138, .45);
}
.nh-swal .swal2-icon.swal2-success .swal2-success-ring { border-color: rgba(30, 58, 138, .15); }
.nh-swal .swal2-icon.swal2-success [class^='swal2-success-line'] { background-color: var(--blue-600); }
.nh-swal .swal2-icon.swal2-success { border-color: var(--blue-200); }
.nh-swal .swal2-actions { margin-top: 20px; }
