
/* ══════════════════════════════
   CSS VARIABLES (shared)
══════════════════════════════ */
:root {
  --navy:      #ffffff;
  --navy2:     #f5f7fa;
  --blue:      #0057ff;
  --blue2:     #003ecc;
  --cyan:      #0046cc;
  --gold:      #f0a500;
  --green:     #05ce37;
  --teal:      #007a6a;
  --white:     #0A1F44;
  --offwhite:  #1a2a3a;
  --muted:     #4a5568;
  --card-bg:   #f0f4f8;
  --border:    rgba(10,31,68,0.12);
  --font-head: "Segoe UI Variable", "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --font-body: "Segoe UI Variable", "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}
/*  */



/* ══════════════════════════════════════════════
   CSS VARIABLES
══════════════════════════════════════════════ */
:root {
  --navy:        #0A1F44;
  --navy-light:  #12285c;
  --cyan:        #4dc8f0;
  --cyan-dark:   #27aadb;
  --white:       #ffffff;
  --grey-50:     #f7f9fc;
  --grey-100:    #eef1f6;
  --grey-200:    #dde2ec;
  --grey-400:    #8c97ad;
  --grey-700:    #374151;
  --accent:      #0057ff;
  --nav-h:       72px;
  --shadow-sm:   0 2px 8px rgba(10,31,68,.07);
  --shadow-md:   0 8px 32px rgba(10,31,68,.12);
  --shadow-lg:   0 20px 60px rgba(10,31,68,.16);
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --transition:  all .22s cubic-bezier(.4,0,.2,1);
  --font:        "Segoe UI Variable", "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--navy);
  background: #f0f4f8;
  padding-top: var(--nav-h);
  overflow-x: hidden;
}
body.drawer-open { overflow: hidden; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/*  */

/* ===================================
   GLOBAL MOBILE TAP FIX
=================================== */

canvas,
.hero-grid,
.hero-blob1,
.hero-blob2,
.orbit,
.orbit1,
.orbit2,
.orbit3,
.orbit-node,
.cloud-center,
.glow-ring{
    pointer-events:none !important;
}

/* all links/buttons */
a,
button,
.btn,
.btn-primary,
.btn-outline,
.nav-cta,
.mob-cta,
.sv-item{
    pointer-events:auto !important;
    touch-action:manipulation;
    -webkit-tap-highlight-color:transparent;
}

/* content above decorative layers */
.hero-content,
.hero-actions,
.sv-content,
.sv-grid,
.nav-inner,
section,
.container{
    position:relative;
    z-index:10;
}

/* ══════════════════════════════════════════════
   MAIN NAV
══════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; width: 100%;
  height: var(--nav-h);
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--grey-100);
  transition: box-shadow .3s ease;
}
.nav.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 0;
}

/* ── Logo ── */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 36px;
  transition: opacity .2s;
}
.nav-logo:hover { opacity: .85; }
.logo-img { height: 120px; width: auto; object-fit: contain; }

/* ── Nav Links (desktop) ── */
.nav-links {
  display: flex;
  align-items: stretch;
  height: 100%;
  flex: 1;
}

.nav-item {
  position: static;
  height: 100%;
  display: flex;
  align-items: stretch;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--grey-700);
  white-space: nowrap;
  position: relative;
  transition: color .18s;
  letter-spacing: .01em;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 16px; right: 16px;
  height: 2px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  border-radius: 2px;
  transition: transform .22s cubic-bezier(.4,0,.2,1);
}
.nav-item.has-mega .nav-link::before {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0; right: 0;
  height: 16px;
  background: transparent;
  z-index: 1;
}
.nav-item:hover .nav-link,
.nav-item:focus-within .nav-link { color: var(--navy); }
.nav-item:hover .nav-link::after,
.nav-item:focus-within .nav-link::after { transform: scaleX(1); }

/* Chevron */
.nav-chevron {
  width: 10px; height: 7px;
  flex-shrink: 0;
  transition: transform .22s ease;
  opacity: .4;
}
.nav-item:hover .nav-chevron,
.nav-item:focus-within .nav-chevron { transform: rotate(180deg); opacity: .8; }

/* ── Right side ── */
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex-shrink: 0;
}

/* Search icon */
.nav-search-btn {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--grey-700);
  transition: background .18s, color .18s;
}
.nav-search-btn:hover { background: var(--grey-100); color: var(--navy); }
.nav-search-btn svg { width: 18px; height: 18px; }

/* Microsoft partner badge */
.nav-partner-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  transition: var(--transition);
}
.nav-partner-badge:hover { border-color: var(--cyan); background: #eef8fd; }

/* Microsoft logo */
.ms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 14px; height: 14px;
  gap: 2px; flex-shrink: 0;
}
.ms-grid span { border-radius: 1px; }
.ms-w1 { background: #f25022; }
.ms-w2 { background: #7fba00; }
.ms-w3 { background: #00a4ef; }
.ms-w4 { background: #ffb900; }

/* CTA */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--navy);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  font-weight: 700;
  white-space: nowrap;
  transition: var(--transition);
  letter-spacing: .01em;
}
.nav-cta svg { width: 14px; height: 14px; transition: transform .2s; }
.nav-cta:hover {
  background: var(--cyan);
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(77,200,240,.3);
}
.nav-cta:hover svg { transform: translateX(3px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-sm);
  padding: 9px;
  cursor: pointer;
  transition: background .18s;
}
.hamburger:hover { background: var(--grey-100); }
.ham-line {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .28s ease, opacity .2s ease, width .2s ease;
  transform-origin: center;
}
.ham-line:nth-child(1) { width: 22px; }
.ham-line:nth-child(2) { width: 15px; }
.ham-line:nth-child(3) { width: 22px; }
.hamburger.is-open .ham-line:nth-child(1) { width: 22px; transform: translateY(7px) rotate(45deg); }
.hamburger.is-open .ham-line:nth-child(2) { opacity: 0; }
.hamburger.is-open .ham-line:nth-child(3) { width: 22px; transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════
   MEGA MENU — XORIANT STYLE
   Full-width panel; left panel (dark) + right content
══════════════════════════════════════════════ */
.mega {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-top: 2px solid var(--cyan);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
  transform: translateY(-6px);
  z-index: 999;
}
.nav-item:hover .mega,
.nav-item:focus-within .mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.nav { overflow: visible; }

/* Inner layout */
.mega-layout {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  min-height: 320px;
}

/* Left panel */
.mega-left {
  width: 260px;
  flex-shrink: 0;
  background: var(--navy);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mega-left-icon {
  width: 48px; height: 48px;
  background: rgba(77,200,240,.15);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mega-left-icon svg { width: 24px; height: 24px; color: var(--cyan); }
.mega-left h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.mega-left p {
  font-size: 13px;
  color: rgba(255,255,255,.58);
  line-height: 1.75;
  flex: 1;
}
.mega-explore {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 4px;
  padding: 9px 16px;
  background: rgba(77,200,240,.14);
  border: 1px solid rgba(77,200,240,.28);
  border-radius: var(--radius-sm);
  color: var(--cyan);
  font-size: 12.5px;
  font-weight: 700;
  transition: var(--transition);
  align-self: flex-start;
}
.mega-explore svg { width: 13px; height: 13px; transition: transform .2s; }
.mega-explore:hover {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--navy);
}
.mega-explore:hover svg { transform: translateX(4px); }

/* Right content */
.mega-right {
  flex: 1;
  padding: 28px 32px;
  background: var(--white);
}

/* Section label */
.mega-section-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: 14px;
}

/* Grid */
.mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.mega-grid--4 { grid-template-columns: repeat(4, 1fr); }
.mega-grid--2 { grid-template-columns: repeat(2, 1fr); }

/* Card */
.mega-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 14px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  background: var(--white);
  transition: var(--transition);
  position: relative;
}
.mega-card:hover {
  border-color: var(--grey-200);
  background: var(--grey-50);
  transform: translateY(-1px);
}
.mega-card-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--grey-100);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .18s;
}
.mega-card-icon svg { width: 17px; height: 17px; color: var(--navy); }
.mega-card:hover .mega-card-icon { background: rgba(77,200,240,.18); }
.mega-card:hover .mega-card-icon svg { color: var(--navy-light); }

.mc-title {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  transition: color .15s;
}
.mc-sub {
  display: block;
  font-size: 11.5px;
  color: var(--grey-400);
  line-height: 1.45;
  margin-top: 2px;
}
.mega-card:hover .mc-title { color: var(--accent); }

/* Arrow on card hover */
.mc-arrow {
  margin-left: auto;
  width: 14px; height: 14px;
  color: var(--grey-200);
  flex-shrink: 0;
  align-self: center;
  transition: color .2s, transform .2s;
}
.mega-card:hover .mc-arrow { color: var(--accent); transform: translateX(2px); }



/* ══════════════════════════════════════════════
   MOBILE DRAWER
══════════════════════════════════════════════ */
.mob-drawer {
  position: fixed;
  top: 0; left: 0;
  width: 100%; max-width: 100%;
  height: 100vh;
  background: var(--white);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform .32s cubic-bezier(.4,0,.2,1);
  overflow: hidden;
}
.mob-drawer.is-open { transform: translateX(0); }

.mob-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 64px;
  background: var(--navy);
  flex-shrink: 0;
}
.mob-logo img { height: 40px; width: auto; filter: brightness(0) invert(1); }
.mob-close {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: background .18s;
  cursor: pointer;
}
.mob-close:hover { background: rgba(255,255,255,.24); }
.mob-close svg { width: 18px; height: 18px; }

.mob-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.mob-row { border-bottom: 1px solid var(--grey-100); }

.mob-link-direct {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 17px 22px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  transition: color .15s, background .15s;
}
.mob-link-direct:hover { background: var(--grey-50); color: var(--accent); }

.mob-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 17px 22px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  user-select: none;
  transition: color .15s, background .15s;
}
.mob-trigger:hover { background: var(--grey-50); color: var(--accent); }
.mob-row.is-open > .mob-trigger { color: var(--accent); background: #eef5ff; }

.mob-arrow {
  width: 13px; height: 10px;
  flex-shrink: 0;
  transition: transform .24s ease;
  color: var(--grey-400);
}
.mob-row.is-open .mob-arrow { transform: rotate(180deg); color: var(--accent); }

.mob-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .36s cubic-bezier(.4,0,.2,1);
  background: var(--grey-50);
  border-top: 1px solid transparent;
}
.mob-row.is-open .mob-panel {
  max-height: 1000px;
  border-top-color: var(--grey-100);
}

.mob-sub-link {
  display: block;
  padding: 12px 22px 12px 28px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--grey-700);
  border-left: 3px solid transparent;
  transition: color .15s, background .15s, border-color .15s, padding-left .15s;
}
.mob-sub-link:hover {
  color: var(--accent);
  background: #e8f4fd;
  border-left-color: var(--cyan);
  padding-left: 34px;
}

/* Section divider inside panel */
.mob-panel-section {
  padding: 10px 22px 4px 28px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--grey-400);
}

.mob-footer {
  border-top: 1px solid var(--grey-100);
  padding: 16px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
  background: var(--white);
}
.mob-cta {
  display: block;
  text-align: center;
  padding: 14px;
  background: var(--navy);
  color: var(--white);
  font-size: 14.5px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: background .2s, transform .2s;
}
.mob-cta:hover { background: var(--cyan); color: var(--navy); transform: translateY(-1px); }
.mob-partner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--grey-400);
}


/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1280px) {
  .nav-inner { padding: 0 24px; }
  .nav-link { padding: 0 12px; font-size: 13.5px; }
  .nav-link::after { left: 12px; right: 12px; }
}

@media (max-width: 1100px) {
  .nav-partner-badge { display: none; }
  .mega-grid--4 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .nav-links, .nav-search-btn { display: none; }
  .hamburger { display: flex; }
  .nav-inner { padding: 0 20px; }
  .nav-logo { margin-right: 0; }
}

@media (max-width: 640px) {
  :root { --nav-h: 64px; }
  .logo-img { height: 100px; }
  .nav-cta { padding: 9px 16px; font-size: 13px; }
}

@media (max-width: 400px) {
  .nav-cta span { display: none; }
}


.mega-card--download { cursor: pointer; }

.mc-dl-badge {
  margin-left: auto;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #fff;
  background: #0057ff;
  padding: 2px 7px;
  border-radius: 4px;
  white-space: nowrap;
  align-self: center;
  flex-shrink: 0;
}

.mob-sub-divider {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #aab0c0;
  padding: 10px 16px 4px;
}

.mob-sub-link--dl {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mob-dl-badge {
  margin-left: auto;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  background: #0057ff;
  padding: 2px 6px;
  border-radius: 4px;
  flex-shrink: 0;
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.si-footer {
  background: #071630;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.6);
}

/* ── Brand Bar ── */
.si-ft-brand {
  background: #0A1F44;
  border-top: 4px solid #4dc8f0;
  border-bottom: 1px solid rgba(77,200,240,0.18);
  padding: 28px 5%;
}
.si-ft-brand-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.si-ft-logo-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
}
.si-ft-logo {
  height: 54px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
  transition: opacity 0.2s;
  display: block;
}
.si-ft-logo:hover { opacity: 1; }
.si-ft-logo-divider {
  width: 1px;
  height: 38px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}
.si-ft-tagline {
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  max-width: 300px;
  margin: 0;
}
.si-ft-contacts {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.si-ft-clink {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 15px;
  background: rgba(77,200,240,0.1);
  border: 1px solid rgba(77,200,240,0.28);
  border-radius: 6px;
  text-decoration: none;
  color: #4dc8f0;
  font-size: 12.5px;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.18s, border-color 0.18s, transform 0.18s;
}
.si-ft-clink:hover {
  background: rgba(77,200,240,0.2);
  border-color: #4dc8f0;
  transform: translateY(-1px);
}
.si-ft-clink svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

/* ── Main Link Grid ──
   Key change: flexbox instead of grid, no nth-child border math
──────────────────────── */
.si-ft-main {
  display: flex;
  flex-wrap: wrap;
  padding: 44px 5% 36px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  gap: 0;
}
.si-ft-col {
  flex: 1 1 200px;
  padding: 0 32px;
  border-left: 1px solid rgba(255,255,255,0.07);
  box-sizing: border-box;
}
.si-ft-col:first-child {
  border-left: none;
  padding-left: 0;
}
.si-ft-col:last-child {
  padding-right: 0;
}
.si-ft-col-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #4dc8f0;
}
.si-ft-col-head svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.si-ft-col-head span {
  font-size: 10.5px;
  font-weight: 700;
  color: #4dc8f0;
  text-transform: uppercase;
  letter-spacing: 2.5px;
}

/* ── Link List ── */
.si-ft-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.si-ft-links li {
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.si-ft-links li:last-child {
  border-bottom: none;
}
.si-ft-links li a {
  display: block;
  padding: 8px 0 8px 14px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.58);
  text-decoration: none;
  position: relative;
  transition: color 0.16s, padding-left 0.16s;
}
.si-ft-links li a::before {
  content: '›';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: rgba(255,255,255,0.22);
  transition: color 0.16s;
  line-height: 1;
}
.si-ft-links li a:hover {
  color: #fff;
  padding-left: 20px;
}
.si-ft-links li a:hover::before {
  color: #4dc8f0;
}

/* ── SEO Bar ── */
.si-ft-seo {
  background: #071630;
  padding: 18px 5%;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.si-ft-seo p {
  font-size: 11.5px;
  color: rgba(255,255,255,0.58);
  line-height: 1.75;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* ── Social + Badges Bar ── */
/* ── Social + Badges Bar ── */
.si-ft-social-bar {
  background: #0A1F44;
  padding: 16px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* LEFT */
.si-ft-social-left {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.si-ft-social-label {
  font-size: 10.5px;
  color: rgba(255,255,255,.38);
  text-transform: uppercase;
  letter-spacing: 1.8px;
  margin-right: 2px;
  white-space: nowrap;
}
.si-soc {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: rgba(255,255,255,.58);
  transition: background .2s, border-color .2s, color .2s, transform .2s;
  flex-shrink: 0;
}
.si-soc:hover {
  background: #4dc8f0;
  border-color: #4dc8f0;
  color: #071630;
  transform: translateY(-2px);
}
.si-soc svg { width: 15px; height: 15px; display: block; }

/* CENTER */
.si-ft-social-center {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

/* RIGHT */
.si-ft-social-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
  flex-shrink: 0;
}

/* Plain badges */
.si-ft-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 5px 13px;
  font-size: 11px;
  color: rgba(255,255,255,.5);
  white-space: nowrap;
  text-decoration: none;
  cursor: default;
}
.si-ft-badge svg { width: 10px; height: 10px; flex-shrink: 0; }
a.si-ft-badge { cursor: pointer; }
a.si-ft-badge:hover {
  border-color: rgba(77,200,240,.4);
  background: rgba(77,200,240,.08);
  color: #4dc8f0;
}

/* 20+ Years glowing badge */
.si-ft-badge-years {
  display: inline-flex;
  align-items: center;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, #0099cc, #4dc8f0, #0057ff);
  box-shadow: 0 0 14px rgba(77,200,240,.5), 0 0 28px rgba(77,200,240,.2);
  animation: yearsGlow 2.5s ease-in-out infinite;
}
@keyframes yearsGlow {
  0%,100% { box-shadow: 0 0 10px rgba(77,200,240,.45), 0 0 22px rgba(77,200,240,.18); }
  50%      { box-shadow: 0 0 22px rgba(77,200,240,.8), 0 0 44px rgba(77,200,240,.35); }
}
.si-ft-years-inner {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #0A1F44;
  border-radius: 18px;
  padding: 6px 18px;
  font-size: 12px;
  font-weight: 700;
  color: #4dc8f0;
  letter-spacing: .5px;
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 900px) {
  .si-ft-social-bar { justify-content: flex-start; }
  .si-ft-social-center { flex: unset; order: 3; width: 100%; justify-content: flex-start; }
  .si-ft-social-right { order: 2; justify-content: flex-start; }
}
@media (max-width: 700px) {
  .si-ft-social-bar { flex-direction: column; align-items: flex-start; gap: 14px; }
  .si-ft-social-center { width: auto; }
}

/* ── Bottom Bar ── */
.si-ft-bottom {
  background: #040e1f;
  padding: 14px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.si-ft-copy {
  font-size: 13px;
  color: #4dc8f0;
  margin: 0;
}
.si-ft-legal {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.si-ft-legal a {
  font-size: 13px;
  color: #4dc8f0;
  text-decoration: none;
  transition: color 0.16s;
}
.si-ft-legal a:hover { color: rgba(255,255,255,0.7); }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */

/* Tablet */
@media (max-width: 900px) {
  .si-ft-main {
    padding: 36px 5% 28px;
    gap: 0;
  }
  .si-ft-col {
    flex: 1 1 calc(50% - 1px);
    padding: 24px 24px 24px 24px;
    border-left: none;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    box-sizing: border-box;
  }
  /* left column in each row */
  .si-ft-col:nth-child(odd) {
    padding-left: 0;
    border-right: 1px solid rgba(255,255,255,0.07);
  }
  /* right column in each row */
  .si-ft-col:nth-child(even) {
    border-right: none;
    padding-right: 0;
  }
  /* remove bottom border from last two columns */
  .si-ft-col:nth-last-child(1),
  .si-ft-col:nth-last-child(2) {
    border-bottom: none;
  }
}

/* Large Mobile */
@media (max-width: 700px) {
  .si-ft-brand-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .si-ft-logo-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .si-ft-logo-divider { display: none; }
  .si-ft-tagline { max-width: 100%; }
  .si-ft-contacts {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
  .si-ft-clink { justify-content: center; }
  .si-ft-social-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .si-ft-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* Small Mobile — single column */
@media (max-width: 480px) {
  .si-ft-brand  { padding: 22px 4%; }
  .si-ft-main   { padding: 24px 4%; }
  .si-ft-seo    { padding: 16px 4%; }
  .si-ft-social-bar { padding: 16px 4%; }
  .si-ft-bottom { padding: 14px 4%; }
  .si-ft-logo   { height: 44px; }
  .si-ft-badges { gap: 6px; }
  .si-ft-badge  { font-size: 10.5px; padding: 3px 10px; }
  .si-ft-legal  { gap: 12px; }

  .si-ft-col {
    flex: 1 1 100%;
    padding: 20px 0 !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.07) !important;
  }
  .si-ft-col:last-child {
    border-bottom: none !important;
  }
}




/*  */

/* ── Overlay ── */
.asm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 13, 31, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
}
.asm-overlay.asm-open {
  opacity: 1;
  pointer-events: auto;
}

/* ── Dialog ── */
.asm-dialog {
  background: #ffffff;
  border-radius: 0;
  width: 100%;
  max-width: 760px;
  height: 100vh;
  max-height: 100vh;
  overflow-y: auto;
  box-shadow: 0 24px 64px rgba(2,13,31,.45);
  transform: translateY(24px) scale(.97);
  transition: transform .30s cubic-bezier(.34,1.56,.64,1);
  scrollbar-width: thin;
  scrollbar-color: #4dc8f0 #e8f4fb;
  display: flex;
  flex-direction: column;
}
.asm-overlay.asm-open .asm-dialog {
  transform: translateY(0) scale(1);
}

/* ── Header — sticky so always visible ── */
.asm-header {
  background: linear-gradient(135deg, #020d1f 60%, #0a1f44);
  padding: 16px 28px 14px;
  position: sticky;
  top: 0;
  z-index: 10;
  border-radius: 0;
  flex-shrink: 0;
}
.asm-header-label {
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #4dc8f0;
  margin: 0 0 3px;
}
.asm-header h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.25;
}
.asm-header p {
  font-family: 'DM Sans', sans-serif;
  font-size: 11.5px;
  color: rgba(255,255,255,.6);
  margin: 4px 0 0;
  line-height: 1.4;
}
.asm-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 30px;
  height: 30px;
  border: none;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 16px;
  line-height: 1;
  transition: background .18s;
}
.asm-close:hover { background: rgba(77,200,240,.25); }

/* ── Body / Form — scrollable area ── */
.asm-body {
  padding: 16px 28px 20px;
  overflow-y: auto;
  flex: 1;
}

.asm-section-title {
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #4dc8f0;
  margin: 0 0 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid #e5eaf2;
}

.asm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
}
.asm-grid.asm-single { grid-template-columns: 1fr; }
.asm-span2 { grid-column: 1 / -1; }

/* ── Field ── */
.asm-field {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.asm-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 3px;
}
.asm-label .asm-req {
  color: #e02d2d;
  font-size: 12px;
  line-height: 1;
}
.asm-input,
.asm-select,
.asm-textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #111827;
  background: #f8fafc;
  border: 1.5px solid #dde3ed;
  border-radius: 7px;
  padding: 7px 11px;
  outline: none;
  transition: border-color .18s, box-shadow .18s, background .18s;
  width: 100%;
  box-sizing: border-box;
}
.asm-input:focus,
.asm-select:focus,
.asm-textarea:focus {
  border-color: #4dc8f0;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(77,200,240,.14);
}
.asm-input.asm-invalid,
.asm-select.asm-invalid,
.asm-textarea.asm-invalid {
  border-color: #e02d2d;
  box-shadow: 0 0 0 3px rgba(224,45,45,.10);
}
.asm-select { appearance: none; cursor: pointer; }
.asm-select-wrap { position: relative; }
.asm-select-wrap::after {
  content: '';
  position: absolute;
  right: 11px;
  top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #6b7280;
  pointer-events: none;
}
.asm-textarea { resize: vertical; min-height: 80px; }

/* ── Account number (conditional) ── */
.asm-account-wrap {
  display: none;
  animation: asmFadeIn .22s ease;
}
.asm-account-wrap.asm-visible {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
@keyframes asmFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Hints / errors ── */
.asm-hint {
  font-size: 10px;
  color: #9ca3af;
  font-family: 'DM Sans', sans-serif;
  line-height: 1.3;
}
.asm-field-error {
  font-size: 10px;
  color: #e02d2d;
  font-family: 'DM Sans', sans-serif;
  display: none;
  line-height: 1.3;
}
.asm-field.asm-has-error .asm-field-error { display: block; }

/* ── Divider ── */
.asm-divider {
  border: none;
  border-top: 1px solid #e5eaf2;
  margin: 14px 0 12px;
}

/* ── Phone row ── */
.asm-phone-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 8px;
}

/* ── Actions — sticky footer ── */
.asm-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 0;
  flex-wrap: wrap;
  position: sticky;
  bottom: 0;
  background: #fff;
  padding: 12px 28px 14px;
  border-top: 1px solid #e5eaf2;
  margin-left: -28px;
  margin-right: -28px;
}
.asm-note {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: #9ca3af;
  flex: 1;
  min-width: 140px;
}
.asm-submit {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #020d1f;
  background: linear-gradient(135deg, #4dc8f0, #2eb8e6);
  border: none;
  border-radius: 8px;
  padding: 10px 24px;
  cursor: pointer;
  letter-spacing: .4px;
  transition: transform .15s, box-shadow .15s, opacity .15s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}
.asm-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(77,200,240,.4);
}
.asm-submit:active { transform: translateY(0); }
.asm-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }

/* spinner */
.asm-spinner {
  width: 15px; height: 15px;
  border: 2px solid rgba(2,13,31,.25);
  border-top-color: #020d1f;
  border-radius: 50%;
  animation: asmSpin .7s linear infinite;
  display: none;
}
.asm-submit.asm-loading .asm-spinner { display: block; }
.asm-submit.asm-loading .asm-submit-text { display: none; }
@keyframes asmSpin { to { transform: rotate(360deg); } }

/* ── Toast ── */
.asm-toast {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 10001;
  background: #020d1f;
  color: #fff;
  border-radius: 10px;
  padding: 14px 20px 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 340px;
  box-shadow: 0 12px 32px rgba(2,13,31,.4);
  transform: translateY(80px);
  opacity: 0;
  transition: transform .3s ease, opacity .3s ease;
  pointer-events: none;
}
.asm-toast.asm-show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.asm-toast-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
}
.asm-toast.asm-success .asm-toast-icon { background: #4dc8f0; color: #020d1f; }
.asm-toast.asm-error   .asm-toast-icon { background: #e02d2d; color: #fff; }
.asm-toast-msg {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  line-height: 1.5;
  flex: 1;
}
.asm-toast-msg strong { display: block; font-weight: 700; margin-bottom: 2px; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 600px) {
  .asm-dialog  { max-width: 100%; border-radius: 0; }
  .asm-header  { padding: 13px 16px 11px; }
  .asm-header h2 { font-size: 1rem; }
  .asm-body    { padding: 12px 16px 16px; }
  .asm-grid    { grid-template-columns: 1fr; gap: 8px; }
  .asm-span2   { grid-column: auto; }
  .asm-divider { margin: 10px 0 8px; }
  .asm-actions {
    flex-direction: column-reverse;
    align-items: stretch;
    padding: 10px 16px 12px;
    margin-left: -16px;
    margin-right: -16px;
  }
  .asm-submit  { justify-content: center; }
  .asm-phone-row { grid-template-columns: 95px 1fr; }
}