.elementor-22 .elementor-element.elementor-element-29691a94{--display:flex;}/* Start custom CSS for html, class: .elementor-element-e0548e4 *//* =========================================================
   Special Glass Component Library - Global CSS
   Inspired by uploaded JAX-style HTML structure:
   white sticky header, condensed uppercase nav, blue CTA,
   dark video hero, overlay feature cards, gray news tiles.
   Use prefix .sg-* to avoid conflicts with Elementor/WordPress.
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
  --sg-blue: #0078AE;
  --sg-blue-300: #2B96C9;
  --sg-blue-500: #006A9C;
  --sg-blue-600: #005984;
  --sg-blue-700: #00486F;
  --sg-blue-800: #003D62;

  --sg-black: #050505;
  --sg-gray-950: #151515;
  --sg-gray-900: #222222;
  --sg-gray-850: #2B2B2B;
  --sg-gray-700: #565656;
  --sg-gray-550: #636363;
  --sg-gray-300: #D7DCE0;
  --sg-gray-150: #F2F4F5;
  --sg-gray-100: #F5F6F7;
  --sg-white: #FFFFFF;

  --sg-font-main: Inter, "Helvetica Neue", Arial, sans-serif;
  --sg-font-nav: "Barlow Condensed", "Roboto Condensed", "Arial Narrow", Arial, sans-serif;

  --sg-container-xxl: 1366px;
  --sg-container-xl: 1070px;
  --sg-container-lg: 954px;
  --sg-container-fluid: 91.6667%;

  --sg-shadow-card: 0 18px 35px rgba(0, 0, 0, 0.18);
  --sg-shadow-soft: 0 10px 24px rgba(0, 0, 0, 0.12);
  --sg-transition: 200ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--sg-gray-900);
  background: var(--sg-white);
  font-family: var(--sg-font-main);
  font-size: 16px;
  line-height: 1.6;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
}

a {
  color: var(--sg-blue);
  text-decoration: none;
  transition: color var(--sg-transition), background-color var(--sg-transition), transform var(--sg-transition), border-color var(--sg-transition);
}

a:hover {
  color: var(--sg-blue-300);
  text-decoration: underline;
}

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--sg-gray-950);
  font-family: var(--sg-font-main);
  font-weight: 800;
  line-height: 1.12;
}

button,
input,
textarea,
select {
  font: inherit;
}

/* ---------- Layout Helpers ---------- */
.sg-container {
  width: min(var(--sg-container-fluid), var(--sg-container-xxl));
  margin-inline: auto;
}

@media (min-width: 1024px) and (max-width: 1279px) {
  .sg-container { max-width: var(--sg-container-lg); }
}

@media (min-width: 1280px) and (max-width: 1537px) {
  .sg-container { max-width: var(--sg-container-xl); }
}

.sg-section {
  padding: 64px 0;
}

.sg-section--gray {
  background: var(--sg-gray-100);
}

.sg-section-title {
  margin-bottom: 40px;
  font-size: clamp(24px, 2.4vw, 32px);
  color: var(--sg-gray-950);
}

.sg-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.sg-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

@media (max-width: 900px) {
  .sg-grid-3,
  .sg-grid-2 {
    grid-template-columns: 1fr;
  }
}

/* ---------- Buttons ---------- */
.sg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  min-height: 46px;
  padding: 12px 24px;
  border: 2px solid transparent;
  background: var(--sg-blue);
  color: var(--sg-white);
  font-family: var(--sg-font-main);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  cursor: pointer;
}

.sg-btn:hover {
  background: var(--sg-blue-300);
  color: var(--sg-white);
  text-decoration: none;
}

.sg-btn:active {
  background: rgba(0, 120, 174, 0.82);
}

.sg-btn--large {
  min-height: 58px;
  padding: 16px 42px;
  font-size: 20px;
}

.sg-btn--white {
  background: var(--sg-white);
  color: var(--sg-blue-800);
  border-color: var(--sg-white);
}

.sg-btn--white:hover {
  background: transparent;
  color: var(--sg-white);
  border-color: var(--sg-white);
}

.sg-btn__icon {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

/* ---------- Header / Navigation ---------- */
.sg-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--sg-white);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.sg-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 20px 0;
  background: var(--sg-white);
}

.sg-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 193px;
  width: 193px;
  height: 52px;
  background: var(--sg-blue);
  color: var(--sg-white);
  font-family: var(--sg-font-nav);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sg-logo:hover {
  color: var(--sg-white);
  text-decoration: none;
}

.sg-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  gap: clamp(18px, 2.1vw, 38px);
}

.sg-nav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 0;
  border-bottom: 2px solid transparent;
  color: var(--sg-gray-550);
  font-family: var(--sg-font-nav);
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.sg-nav a:hover {
  color: var(--sg-blue);
  border-color: var(--sg-blue);
  text-decoration: none;
}

.sg-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.sg-icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--sg-blue);
  cursor: pointer;
}

.sg-mobile-menu-button {
  display: none;
  width: 50px;
  height: 50px;
  border: 0;
  background: var(--sg-blue);
  color: var(--sg-white);
  cursor: pointer;
}

.sg-mobile-nav {
  display: none;
  background: var(--sg-gray-850);
}

.sg-mobile-nav a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  border-bottom: 1px solid var(--sg-gray-700);
  color: var(--sg-white);
  font-family: var(--sg-font-nav);
  font-size: 24px;
  text-transform: uppercase;
}

.sg-mobile-nav a:hover {
  background: var(--sg-white);
  color: var(--sg-gray-850);
  text-decoration: none;
}

.sg-mobile-nav.is-open {
  display: block;
}

@media (max-width: 991px) {
  .sg-header__inner { gap: 20px; }
  .sg-nav { display: none; }
  .sg-mobile-menu-button { display: inline-flex; align-items: center; justify-content: center; }
  .sg-logo { flex-basis: 170px; width: 170px; }
}

/* ---------- Hero ---------- */
.sg-hero {
  position: relative;
  min-height: clamp(520px, 72vh, 760px);
  overflow: hidden;
  background: var(--sg-gray-950);
}

.sg-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(110deg, rgba(0, 48, 72, 0.70), rgba(0, 0, 0, 0.20) 48%, rgba(0, 0, 0, 0.65)),
    radial-gradient(circle at 72% 35%, rgba(100, 210, 255, 0.30), transparent 34%),
    linear-gradient(135deg, #08131A 0%, #0B2636 46%, #061016 100%);
}

.sg-hero__media::before,
.sg-hero__media::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.sg-hero__media::before {
  right: 8%;
  top: 18%;
  width: 34vw;
  max-width: 520px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.20);
  box-shadow: inset 0 0 80px rgba(255,255,255,0.08), 0 0 60px rgba(0,120,174,0.22);
}

.sg-hero__media::after {
  right: 20%;
  bottom: 18%;
  width: 22vw;
  max-width: 340px;
  height: 12px;
  background: rgba(255,255,255,0.16);
  filter: blur(14px);
  transform: rotate(-12deg);
}

.sg-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  min-height: inherit;
  padding-bottom: 118px;
}

.sg-hero h1 {
  max-width: 880px;
  color: var(--sg-white);
  font-size: clamp(44px, 6.8vw, 96px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.sg-hero p {
  max-width: 680px;
  margin-top: 24px;
  color: rgba(255,255,255,0.92);
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.5;
}

/* ---------- Overlay Feature Cards ---------- */
.sg-overlay-cards {
  position: relative;
  z-index: 3;
  margin-top: -82px;
  margin-bottom: 48px;
}

.sg-feature-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 360px;
  padding: 48px;
  background: var(--sg-white);
  box-shadow: var(--sg-shadow-card);
}

.sg-feature-card__heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  color: var(--sg-blue);
}

.sg-feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--sg-blue);
  color: var(--sg-white);
}

.sg-feature-card h2,
.sg-feature-card h3 {
  color: var(--sg-blue);
  font-size: clamp(25px, 2.4vw, 30px);
}

.sg-feature-card p {
  margin-bottom: 28px;
  color: var(--sg-gray-900);
  font-size: 18px;
  line-height: 1.78;
}

.sg-feature-card .sg-btn {
  margin-top: auto;
}

@media (max-width: 1180px) {
  .sg-feature-card { padding: 32px; }
}

/* ---------- Image / CTA Banner ---------- */
.sg-banner {
  margin: 32px 0 64px;
  padding: 48px;
  background:
    linear-gradient(90deg, rgba(0,61,98,0.88), rgba(0,120,174,0.68)),
    radial-gradient(circle at 85% 25%, rgba(255,255,255,0.28), transparent 28%),
    linear-gradient(135deg, #0A3046, #0078AE);
  color: var(--sg-white);
}

.sg-banner__grid {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 40px;
}

.sg-banner h2,
.sg-banner h3 {
  color: var(--sg-white);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.08;
}

.sg-banner p {
  margin: 0;
  padding-left: 18px;
  border-left: 4px solid var(--sg-white);
  color: var(--sg-white);
  font-size: 18px;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .sg-banner { padding: 36px 24px; text-align: center; }
  .sg-banner__grid { grid-template-columns: 1fr; gap: 24px; }
  .sg-banner p { padding-left: 0; border-left: 0; }
  .sg-banner .sg-btn { margin-inline: auto; width: 100%; }
}

/* ---------- Cards / News / Product Tiles ---------- */
.sg-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin: 40px 0;
}

.sg-news-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--sg-gray-100);
}

.sg-news-card__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(145deg, rgba(0, 120, 174, 0.18), rgba(0, 0, 0, 0.16)),
    radial-gradient(circle at 40% 38%, rgba(255,255,255,0.68), transparent 28%),
    linear-gradient(135deg, #DDE7ED, #AEBEC8 48%, #F8FAFB);
  overflow: hidden;
}

.sg-news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sg-news-card__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 18px 24px 24px;
}

.sg-news-card h3 {
  margin: 8px 0 12px;
  color: var(--sg-gray-900);
  font-size: 20px;
  line-height: 1.25;
}

.sg-news-card p {
  margin-bottom: 24px;
  color: var(--sg-gray-900);
  font-size: 16px;
  line-height: 1.55;
}

.sg-news-card .sg-btn {
  margin-top: auto;
  align-self: flex-start;
}

@media (max-width: 900px) {
  .sg-card-grid { grid-template-columns: 1fr; }
}

/* ---------- Editorial Split Blocks ---------- */
.sg-editorial {
  padding: 58px 0;
}

.sg-editorial__panel {
  padding: 32px;
  background: var(--sg-white);
}

.sg-editorial__panel h2,
.sg-editorial__panel h3 {
  margin-bottom: 16px;
  font-size: 28px;
}

.sg-editorial__panel p {
  color: var(--sg-gray-700);
  font-size: 17px;
  line-height: 1.72;
}

.sg-link-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 40px;
  margin-top: 26px;
}

.sg-link-list a {
  color: var(--sg-blue);
  font-weight: 800;
  text-decoration: underline;
}

@media (max-width: 700px) {
  .sg-link-list { grid-template-columns: 1fr; }
}

/* ---------- Gradient Link Tiles ---------- */
.sg-link-tile-section {
  padding: 48px 0 72px;
  background: var(--sg-gray-100);
}

.sg-link-tile-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

.sg-link-tile {
  position: relative;
  z-index: 0;
  display: block;
  min-height: 136px;
  padding: 24px 24px 42px;
  overflow: hidden;
  background: var(--sg-white);
  color: var(--sg-blue);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.02);
  transition: transform 250ms ease, color 250ms ease;
}

.sg-link-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: linear-gradient(90deg, var(--sg-blue-500) 0%, var(--sg-blue-600) 43.42%, var(--sg-blue-700) 100%);
  transition: opacity 250ms ease;
}

.sg-link-tile::after {
  content: "+";
  position: absolute;
  right: 22px;
  bottom: 12px;
  font-size: 28px;
  line-height: 1;
}

.sg-link-tile:hover {
  color: var(--sg-white);
  text-decoration: none;
  transform: scale(1.05);
}

.sg-link-tile:hover::before {
  opacity: 1;
}

@media (max-width: 1000px) {
  .sg-link-tile-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .sg-link-tile-grid { grid-template-columns: 1fr; }
}

/* ---------- Split CTA ---------- */
.sg-split-cta {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 32px;
  align-items: center;
  padding: 48px;
  background: var(--sg-white);
  color: var(--sg-gray-950);
}

.sg-split-cta h2 {
  margin-bottom: 12px;
  font-size: clamp(28px, 3vw, 40px);
}

.sg-split-cta p {
  max-width: 720px;
  margin: 0;
  color: var(--sg-gray-700);
  font-size: 18px;
}

.sg-split-cta__action {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 800px) {
  .sg-split-cta { grid-template-columns: 1fr; padding: 32px 24px; }
  .sg-split-cta__action { justify-content: flex-start; }
}

/* ---------- Footer ---------- */
.sg-footer {
  position: sticky;
  top: 100vh;
  padding: 32px 0 20px;
  background: var(--sg-black);
  color: var(--sg-white);
  text-align: center;
}

.sg-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 28px;
  margin-bottom: 20px;
}

.sg-footer a {
  color: var(--sg-white);
  font-weight: 700;
}

.sg-footer p {
  margin: 0;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
}

/* ---------- Demo-only labels: delete in production ---------- */
.sg-demo-label {
  display: inline-block;
  margin: 32px 0 12px;
  padding: 5px 10px;
  background: var(--sg-gray-950);
  color: var(--sg-white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}/* End custom CSS */