/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; color: #222b3a; background: #fff; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── TOKENS ── */
:root {
  --blue:    #1a3a6b;
  --blue2:   #1e4fa0;
  --yellow:  #f5a800;
  --ylight:  #ffc93c;
  --offwhite:#f4f6fb;
  --muted:   #5a6a82;
  --border:  #dce4f0;
  --white:   #fff;
  --text:    #222b3a;
}

/* ═══════════════════════════════════
   TOP BAR
═══════════════════════════════════ */
.topbar {
  background: var(--blue);
  color: #b8ccee;
  font-size: 13px;
  padding: 7px 0;
}
.topbar .wrap {
  max-width: 1240px; margin: 0 auto; padding: 0 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px;
}
.topbar .left i { color: var(--yellow); margin-right: 6px; }
.topbar .right a { color: #b8ccee; margin-left: 14px; font-size: 13px; transition: color .2s; }
.topbar .right a:hover { color: var(--yellow); }

/* ═══════════════════════════════════
   HEADER UPPER
═══════════════════════════════════ */
.header-upper { background: #fff; border-bottom: 1px solid var(--border); padding: 16px 0; }
.header-upper .wrap {
  max-width: 1240px; margin: 0 auto; padding: 0 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.logo-wrap { display: flex; align-items: center; gap: 14px; }
.logo-wrap img { height: 90px; }
.logo-icon {
  width: 62px; height: 62px; background: var(--blue2);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.logo-icon i { color: var(--yellow); font-size: 26px; }
.logo-text .brand { font-family: 'Raleway', sans-serif; font-size: 24px; font-weight: 900; color: var(--blue); line-height: 1.1; }
.logo-text .sub { font-size: 10.5px; color: var(--muted); letter-spacing: 3px; text-transform: uppercase; }
.contact-chips { display: flex; gap: 22px; flex-wrap: wrap; }
.chip { display: flex; align-items: center; gap: 12px; }
.chip-ico {
  width: 42px; height: 42px; background: var(--offwhite);
  border: 2px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.chip-ico i { color: var(--blue2); font-size: 15px; }
.chip-info strong { display: block; font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .8px; }
.chip-info span { font-size: 14px; font-weight: 700; color: var(--blue); }

/* ═══════════════════════════════════
   NAVIGATION (desktop hover-dropdown)
═══════════════════════════════════ */
.main-nav {
  background: #fff;
  border-bottom: 3px solid var(--yellow);
  position: sticky; top: 0; z-index: 999;
  box-shadow: 0 2px 14px rgba(26,58,107,.09);
}
.main-nav .wrap {
  max-width: 1240px; margin: 0 auto; padding: 0 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: nowrap; width: 100%;
  position: relative; overflow: visible;
}

/* Menu list */
.nav-menu { list-style: none; display: flex; align-items: stretch; flex-wrap: nowrap; flex: 1 1 auto; min-width: 0; }
.nav-menu > li { position: relative; flex-shrink: 0; }
.nav-menu > li > a {
  display: flex; align-items: center; gap: 4px;
  padding: 0 10px; height: 56px;
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .2px;
  color: var(--text); transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-menu > li > a .arr { font-size: 10px; margin-top: 1px; transition: transform .25s; }
.nav-menu > li:hover > a { color: var(--blue2); background: var(--offwhite); }
.nav-menu > li.active > a { color: var(--blue2); border-bottom: 3px solid var(--yellow); }

/* Dropdown levels (desktop) */
.nav-menu li ul {
  list-style: none;
  position: absolute; top: 100%; left: 0;
  background: var(--white); min-width: 260px;
  box-shadow: 0 14px 28px rgba(26,58,107,.14);
  border-top: 3px solid var(--yellow);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index: 1000;
  display: block;
}
.nav-menu li:hover > ul { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-menu li ul li { position: relative; }
.nav-menu li ul li a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 18px; font-size: 13px; font-weight: 600; color: var(--text);
  white-space: nowrap; border-bottom: 1px solid var(--offwhite);
}
.nav-menu li ul li a:hover { background: var(--offwhite); color: var(--blue2); padding-left: 22px; }
.nav-menu li ul ul { top: -3px; left: 100%; }

/* chevron for items that have children */
.has-sub > a::after {
  content: '\f105'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  font-size: 11px; color: var(--muted); margin-left: 10px;
}

/* Quote button */
.btn-quote {
  background: var(--yellow); color: var(--blue) !important;
  padding: 10px 22px; font-size: 13px; font-weight: 800;
  border-radius: 2px; white-space: nowrap; transition: background .2s;
  display: flex; align-items: center; gap: 7px;
  flex-shrink: 0; margin-left: 16px;
}
.btn-quote:hover { background: var(--ylight); }

/* Hamburger */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 12px; flex-direction: column; justify-content: center; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--blue); margin: 5px 0; transition: .3s; }

/* ═══════════════════════════════════
   HERO / SLIDER (static)
═══════════════════════════════════ */
.hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0d2246 0%, #1a3a6b 55%, #1e4fa0 100%);
  padding: 80px 24px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg,rgba(255,255,255,.015) 0,rgba(255,255,255,.015) 1px,transparent 1px,transparent 22px);
}
.hero-content { max-width: 640px; position: relative; z-index: 2; }
.hero-eyebrow { font-size: 12px; color: var(--yellow); letter-spacing: 4px; text-transform: uppercase; font-weight: 700; margin-bottom: 16px; }
.hero h1 { font-family: 'Raleway', sans-serif; font-size: clamp(32px,5vw,56px); font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 20px; }
.hero h1 span { color: var(--yellow); }
.hero p { font-size: 16px; color: #aac2e8; line-height: 1.7; margin-bottom: 32px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-btns a {
  padding: 13px 30px; font-size: 14px; font-weight: 700; border-radius: 2px;
  transition: background .2s, color .2s;
}
.btn-solid { background: var(--yellow); color: var(--blue); }
.btn-solid:hover { background: var(--ylight); }
.btn-outline { border: 2px solid rgba(255,255,255,.4); color: #fff; }
.btn-outline:hover { border-color: var(--yellow); color: var(--yellow); }

/* Slider dots */
.hero-dots { position: relative; z-index: 2; display: flex; gap: 8px; }
.hero-dots span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.3); cursor: pointer; transition: background .2s; }
.hero-dots span.on { background: var(--yellow); }

/* ── PAGE TITLE / HERO ── */
.page-hero {
  background: var(--blue);
  background-image: linear-gradient(135deg, #0d2246 0%, #1a3a6b 60%, #1e4fa0 100%);
  padding: 64px 24px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,.015) 0, rgba(255,255,255,.015) 1px, transparent 1px, transparent 20px);
}
.page-hero h1 {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(28px, 5vw, 46px); font-weight: 900;
  color: var(--white); letter-spacing: 1px;
  position: relative;
}
.page-hero h1 span { color: var(--yellow); }
.page-hero .subtitle { margin-top: 10px; font-size: 14px; color: #b8ccee; position: relative; }
.breadcrumb-bar { margin-top: 16px; font-size: 13px; color: #99b4d8; position: relative; }
.breadcrumb-bar a { color: var(--yellow); }
.breadcrumb-bar span { margin: 0 8px; }

/* ── CONTENT CONTAINER ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── INTRO SECTION ── */
.intro-section { padding: 60px 0 40px; }
.intro-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
@media(max-width:860px){ .intro-grid { grid-template-columns: 1fr; } }
.intro-section h2 {
  font-family: 'Raleway', sans-serif;
  font-size: 26px; font-weight: 800; color: var(--blue);
  border-left: 4px solid var(--yellow); padding-left: 16px; margin-bottom: 18px;
}
.intro-section p { font-size: 15px; line-height: 1.8; color: #444; margin-bottom: 14px; }
.intro-img-wrap { position: relative; }
.intro-img-wrap img { width: 100%; border-radius: 4px; object-fit: cover; min-height: 260px; }
.intro-img-wrap .cap-badge {
  position: absolute; bottom: -16px; left: 16px;
  background: var(--white); border-left: 4px solid var(--yellow);
  padding: 10px 16px; box-shadow: 0 4px 18px rgba(26,58,107,.15);
  font-size: 12.5px; font-weight: 700; color: var(--blue);
  border-radius: 2px;
}
.authors-line { font-size: 13px; color: var(--muted); font-style: italic; margin-top: 18px; }

/* ── BULLET GRID ── */
.bullet-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px; margin: 24px 0 32px;
}
.bullet-item {
  display: flex; align-items: flex-start; gap: 10px;
  background: var(--offwhite); border-left: 3px solid var(--yellow);
  padding: 12px 14px; border-radius: 2px;
  font-size: 14px; font-weight: 600; color: var(--blue);
}
.bullet-item i { color: var(--yellow); margin-top: 2px; flex-shrink: 0; }

/* ── SECTION DIVIDER ── */
.sec-title {
  font-family: 'Raleway', sans-serif; font-size: 20px; font-weight: 800;
  color: var(--blue); text-transform: uppercase; letter-spacing: 1px;
  border-bottom: 2px solid var(--yellow); padding-bottom: 8px; margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.sec-title i { color: var(--yellow); font-size: 18px; }

/* ── KEY FEATURES ── */
.features-section { background: var(--offwhite); padding: 56px 0; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.feature-card {
  background: var(--white); border-radius: 4px;
  border-top: 4px solid var(--yellow);
  padding: 24px 20px;
  box-shadow: 0 2px 10px rgba(26,58,107,.07);
  transition: transform .2s, box-shadow .2s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(26,58,107,.12); }
.feature-card .icon {
  width: 48px; height: 48px; background: var(--blue);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.feature-card .icon i { color: var(--yellow); font-size: 20px; }
.feature-card h4 { font-size: 15px; font-weight: 700; color: var(--blue); margin-bottom: 10px; }
.feature-card ul { list-style: none; padding: 0; }
.feature-card ul li {
  font-size: 13px; color: #555; padding: 4px 0;
  border-bottom: 1px dashed var(--border);
  display: flex; gap: 8px; align-items: flex-start;
}
.feature-card ul li:last-child { border-bottom: none; }
.feature-card ul li::before { content: '›'; color: var(--yellow); font-weight: 700; flex-shrink: 0; }

/* ── SERVICES SECTION ── */
.services-section { padding: 60px 0; }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media(max-width:768px){ .services-grid { grid-template-columns: 1fr; } }
.service-items { list-style: none; padding: 0; }
.service-items li {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; font-size: 14px; color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: background .15s;
}
.service-items li:hover { background: var(--offwhite); }
.service-items li .num {
  width: 28px; height: 28px; background: var(--blue);
  color: var(--white); font-size: 12px; font-weight: 700;
  border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* ── BENEFITS SECTION ── */
.benefits-section {
  background: var(--blue);
  background-image: linear-gradient(135deg, #0d2246 0%, #1a3a6b 100%);
  padding: 60px 0;
}
.benefits-section h3 {
  font-family: 'Raleway', sans-serif; font-size: 28px; font-weight: 900;
  color: var(--white); text-align: center; margin-bottom: 40px;
}
.benefits-section h3 span { color: var(--yellow); }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }
.benefit-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: 4px; padding: 24px 18px; text-align: center;
  transition: background .2s;
}
.benefit-card:hover { background: rgba(255,255,255,.13); }
.benefit-card i { font-size: 32px; color: var(--yellow); margin-bottom: 12px; display: block; }
.benefit-card p { font-size: 13px; color: #ccdaee; line-height: 1.5; }

/* ── AIM SECTION ── */
.aim-section { padding: 60px 0; background: var(--offwhite); }
.aim-section .aim-title {
  text-align: center; font-family: 'Raleway', sans-serif;
  font-size: 26px; font-weight: 900; color: var(--blue); margin-bottom: 36px;
}
.aim-section .aim-title span { color: var(--yellow); }
.aim-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media(max-width:640px){ .aim-grid { grid-template-columns: 1fr; } }
.aim-item {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--white); padding: 14px 16px;
  border-radius: 3px; border-left: 3px solid var(--blue2);
  font-size: 14px; color: var(--text);
  box-shadow: 0 1px 4px rgba(0,0,0,.05);
}
.aim-item .num { color: var(--yellow); font-weight: 800; flex-shrink: 0; }

/* ── FOOTER ── */
footer {
  background: #0d1f3c;
  color: #8aabcf;
  padding: 48px 0 0;
}
footer .wrap {
  max-width: 1240px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.8fr; gap: 36px;
  padding-bottom: 44px;
}
@media(max-width:900px){ footer .wrap { grid-template-columns: 1fr 1fr !important; } }
@media(max-width:540px){ footer .wrap { grid-template-columns: 1fr !important; } }
footer h4 { color: var(--white); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
footer p { font-size: 13px; line-height: 1.8; }
footer ul { list-style: none; padding: 0; }
footer ul li { margin-bottom: 8px; font-size: 13px; }
footer ul li a:hover { color: var(--yellow); }
.foot-contact li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: 13px; line-height: 1.6; }
.foot-contact li i { color: var(--yellow); margin-top: 2px; flex-shrink: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 16px 0; text-align: center; font-size: 12px; color: #4a6a8a; }
.footer-bottom .socials a { color: #4a6a8a; margin-left: 12px; font-size: 14px; transition: color .2s; }
.footer-bottom .socials a:hover { color: var(--yellow); }
.foot-logo-text { font-family: 'Raleway', sans-serif; font-size: 22px; font-weight: 900; color: #fff; margin-bottom: 12px; }
.foot-logo-text span { color: var(--yellow); }

/* iframe */
.map-frame { width: 100%; height: 200px; border: 0; border-radius: 3px; margin-top: 8px; }

@media(max-width:768px){
  footer .wrap ul[style*="column-count"] { column-count: 1 !important; }
}

/* ═══════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════ */
.about-section { padding: 80px 0; background: #fff; overflow: hidden; }
.about-section .wrap {
  max-width: 1240px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
@media(max-width:860px){ .about-section .wrap { grid-template-columns: 1fr; } }
.about-img-wrap { position: relative; overflow: visible; }
.about-img-wrap img { width: 100%; border-radius: 4px; object-fit: cover; min-height: 360px; background: var(--offwhite); }
.exp-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--yellow); color: var(--blue);
  width: 110px; height: 110px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: 'Raleway', sans-serif; font-weight: 900;
  box-shadow: 0 6px 24px rgba(245,168,0,.4);
}
.exp-badge .num { font-size: 30px; line-height: 1; }
.exp-badge .lab { font-size: 10px; text-transform: uppercase; letter-spacing: 1px; text-align: center; line-height: 1.2; }
.about-content .eyebrow { font-size: 12px; color: var(--yellow); letter-spacing: 4px; text-transform: uppercase; font-weight: 700; margin-bottom: 10px; }
.about-content h2 { font-family: 'Raleway', sans-serif; font-size: 32px; font-weight: 900; color: var(--blue); margin-bottom: 16px; }
.about-content h2 span { color: var(--blue2); }
.about-divider { width: 48px; height: 4px; background: var(--yellow); margin-bottom: 18px; border-radius: 2px; }
.about-content p { font-size: 14.5px; color: #444; line-height: 1.8; margin-bottom: 14px; }
.about-features { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 24px; }
.feat-box { display: flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: var(--blue); }
.feat-box i { color: var(--yellow); }
.about-cta { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.btn-pro {
  background: var(--blue); color: #fff;
  padding: 12px 28px; border-radius: 2px; font-size: 14px; font-weight: 700;
  transition: background .2s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-pro:hover { background: var(--blue2); }
.call-info { display: flex; align-items: center; gap: 10px; }
.call-info i { color: var(--yellow); font-size: 22px; }
.call-info small { display: block; font-size: 11px; color: var(--muted); }
.call-info strong { font-size: 15px; color: var(--blue); }

/* ═══════════════════════════════════
   PRODUCTS SECTION
═══════════════════════════════════ */
.products-section { padding: 70px 0; background: var(--offwhite); }
.products-section .wrap { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section-head { text-align: center; margin-bottom: 44px; }
.section-head h2 { font-family: 'Raleway', sans-serif; font-size: 32px; font-weight: 900; color: var(--blue); margin-bottom: 10px; }
.section-head h2 span { color: var(--blue2); }
.section-head p { color: var(--muted); font-size: 15px; }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px,1fr)); gap: 24px; }
.prod-card {
  background: #fff; border-radius: 4px;
  border-top: 4px solid var(--yellow);
  box-shadow: 0 2px 12px rgba(26,58,107,.07);
  overflow: hidden; transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.prod-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(26,58,107,.13); }
.prod-img {
  height: 180px; background: var(--offwhite);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.prod-img img { width: 100%; height: 100%; object-fit: cover; }
.prod-img .ico { font-size: 54px; color: var(--border); }
.prod-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.prod-body h5 { font-family: 'Raleway', sans-serif; font-size: 15px; font-weight: 800; color: var(--blue); margin-bottom: 12px; }
.prod-body ul { list-style: none; padding: 0; margin-bottom: 18px; flex: 1; }
.prod-body ul li {
  font-size: 13px; color: #555; padding: 4px 0;
  border-bottom: 1px dashed var(--border); display: flex; gap: 7px;
}
.prod-body ul li::before { content: '›'; color: var(--yellow); font-weight: 700; }
.prod-body .btn-learn {
  align-self: flex-start;
  background: var(--blue); color: #fff;
  padding: 8px 20px; font-size: 13px; font-weight: 700;
  border-radius: 20px; transition: background .2s;
}
.prod-body .btn-learn:hover { background: var(--blue2); }

/* ═══════════════════════════════════
   LEGACY / STATS SECTION
═══════════════════════════════════ */
.legacy-section {
  position: relative;
  background: #0a1628;
  overflow: hidden;
  padding: 100px 0;
}
.legacy-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(245,168,0,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,168,0,.06) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
}
@keyframes gridMove {
  0%   { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}
.legacy-section::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(30,79,160,.35) 0%, transparent 70%);
  top: -100px; right: -100px;
  pointer-events: none;
}
.blob2 {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,168,0,.12) 0%, transparent 70%);
  bottom: -80px; left: 0;
  pointer-events: none;
}
.legacy-wrap {
  max-width: 1240px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  position: relative; z-index: 2;
}
@media(max-width:860px){ .legacy-wrap { grid-template-columns: 1fr; gap: 48px; } }

.legacy-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(245,168,0,.1);
  border: 1px solid rgba(245,168,0,.3);
  color: #f5a800; font-size: 11px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 20px; margin-bottom: 22px;
}
.legacy-eyebrow i { font-size: 10px; }
.legacy-title {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 10px;
}
.legacy-title span { color: #f5a800; }
.legacy-title em {
  display: block; font-style: normal;
  color: rgba(255,255,255,.18);
  font-size: clamp(40px, 6vw, 72px);
  line-height: .85; letter-spacing: -2px;
}
.legacy-divider {
  width: 56px; height: 3px;
  background: linear-gradient(90deg, #f5a800, transparent);
  margin: 22px 0;
}
.legacy-desc { font-size: 15px; color: #8aabcf; line-height: 1.85; margin-bottom: 40px; }
.legacy-desc strong { color: #fff; }

.stats-row {
  display: flex; gap: 0; flex-wrap: wrap;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 6px; overflow: hidden;
}
.stat-item {
  flex: 1; min-width: 110px;
  padding: 22px 20px;
  border-right: 1px solid rgba(255,255,255,.08);
  position: relative; transition: background .3s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,.04); }
.stat-item::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--c, #f5a800);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s;
}
.stat-item:hover::before { transform: scaleX(1); }
.stat-item:nth-child(1) { --c: #f5a800; }
.stat-item:nth-child(2) { --c: #1e4fa0; }
.stat-item:nth-child(3) { --c: #22c55e; }
.stat-num {
  font-family: 'Raleway', sans-serif;
  font-size: 38px; font-weight: 900;
  color: #fff; line-height: 1;
  background: linear-gradient(135deg, #fff 40%, #f5a800);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-lab { font-size: 11px; color: #5a7a9a; text-transform: uppercase; letter-spacing: 1.5px; margin-top: 6px; }

.legacy-right { position: relative; }
.img-card { position: relative; border-radius: 8px; overflow: hidden; box-shadow: 0 32px 80px rgba(0,0,0,.5); }
.img-card .main-visual {
  width: 100%; min-height: 380px;
  background: linear-gradient(135deg, #0f2340 0%, #1a3a6b 50%, #1e4fa0 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.img-card .main-visual::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(30,79,160,.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,79,160,.4) 1px, transparent 1px);
  background-size: 30px 30px;
}
.center-icon { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.center-icon .ring {
  width: 140px; height: 140px; border-radius: 50%;
  border: 2px solid rgba(245,168,0,.3);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  animation: rotate 12s linear infinite;
}
@keyframes rotate { to { transform: rotate(360deg); } }
.center-icon .ring::before {
  content: '';
  position: absolute;
  width: 20px; height: 20px; border-radius: 50%;
  background: #f5a800;
  top: -10px; left: 50%; transform: translateX(-50%);
  box-shadow: 0 0 20px #f5a800;
}
.center-icon .inner-icon { position: absolute; animation: rotate-rev 12s linear infinite; }
@keyframes rotate-rev { to { transform: rotate(-360deg); } }
.center-icon .inner-icon i { font-size: 52px; color: #f5a800; opacity: .85; }

.badge-float {
  position: absolute; z-index: 3;
  background: rgba(10,22,40,.9);
  border: 1px solid rgba(245,168,0,.25);
  border-radius: 6px; padding: 10px 14px;
  backdrop-filter: blur(8px);
  display: flex; align-items: center; gap: 10px;
}
.badge-float.b1 { top: 20px; left: 20px; }
.badge-float.b2 { bottom: 20px; right: 20px; }
.badge-float i { color: #f5a800; font-size: 18px; }
.badge-float .bt { font-size: 11px; color: #8aabcf; line-height: 1.4; }
.badge-float .bt strong { display: block; color: #fff; font-size: 13px; }

.corner-accent { position: absolute; width: 80px; height: 80px; border-color: #f5a800; border-style: solid; border-width: 0; }
.corner-accent.tl { top: -8px; left: -8px; border-top-width: 3px; border-left-width: 3px; border-radius: 4px 0 0 0; }
.corner-accent.br { bottom: -8px; right: -8px; border-bottom-width: 3px; border-right-width: 3px; border-radius: 0 0 4px 0; }

.v-label {
  position: absolute; right: -40px; top: 50%; transform: translateY(-50%) rotate(90deg);
  font-size: 10px; color: rgba(245,168,0,.4); letter-spacing: 5px; text-transform: uppercase;
  white-space: nowrap;
}
@media(max-width:860px){ .v-label { display: none; } }

/* ═══════════════════════════════════
   CERTIFICATIONS
═══════════════════════════════════ */
.cert-section{ padding:36px 0; background:#f7f9fc; }
.cert-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:18px; margin-top:16px; }
.cert-card{
  background:#fff; border-radius:10px; box-shadow:0 6px 18px rgba(0,0,0,.08);
  padding:18px 16px; text-align:center; transition:transform .25s, box-shadow .25s;
}
.cert-card:hover{ transform:translateY(-6px); box-shadow:0 12px 28px rgba(0,0,0,.12); }
.cert-card h4{ margin:0 0 4px; font-family:'Raleway',sans-serif; font-size:18px; }
.cert-card .cert-sub{ margin:0 0 6px; font-size:13px; color:#555; }
.cert-card .cert-meta{ margin:0; font-size:13px; color:#888; line-height:1.45; }
.cert-card .cert-badge{
  display:inline-block; margin-top:8px; padding:5px 14px; border-radius:20px;
  background:rgba(0,0,0,.05); font-size:12px; font-weight:700; color:var(--blue); letter-spacing:.4px;
}
.cert-card img{
  width:100%; max-width:200px; min-height:130px; height:auto; display:block;
  margin:0 auto 10px; border-radius:6px; border:1px solid #e6e9ef;
  box-shadow:0 4px 10px rgba(0,0,0,.06); background:#f1f3f7; object-fit:contain;
}
.cert-card i{ display:none; }

/* ═══════════════════════════════════
   CLIENTS SECTION
═══════════════════════════════════ */
.clients-section { padding: 52px 0; background: #fff; border-top: 1px solid var(--border); overflow: hidden; }
.clients-section .wrap { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.clients-title { text-align: center; margin-bottom: 28px; }
.clients-title h4 { font-family: 'Raleway', sans-serif; font-size: 18px; font-weight: 800; color: var(--blue); margin-bottom: 8px; }
.clients-title .bar { width: 40px; height: 3px; background: var(--yellow); margin: 0 auto; border-radius: 2px; }
.clients-track-wrap { overflow: hidden; width: 100%; }
.clients-track { display: flex; gap: 32px; align-items: center; animation: scroll-clients 28s linear infinite; width: max-content; }
.clients-track:hover { animation-play-state: paused; }
.client-logo {
  height: 52px; min-width: 120px; background: var(--offwhite);
  border: 1px solid var(--border); border-radius: 3px;
  display: flex; align-items: center; justify-content: center; padding: 8px 18px;
  font-size: 12px; font-weight: 700; color: var(--muted); letter-spacing: 1px;
  flex-shrink: 0;
}
@keyframes scroll-clients { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ═══════════════════════════════════
   SIMPLE SLIDER — FULL WIDTH
═══════════════════════════════════ */
.simple-slider-section { padding: 0; background: #0d1f3c; }
.simple-slider-section .wrap { max-width: 100%; margin: 0; padding: 0; }
.ss-slider { position: relative; width: 100%; height: 70vh; min-height: 420px; max-height: 640px; overflow: hidden; }
.ss-slide { display: none; position: absolute; inset: 0; width: 100%; height: 100%; }
.ss-slide.active { display: block; }
.ss-slide img { width: 100%; height: 100%; object-fit: contain; object-position: center; display: block; background: #0d1f3c; }
.ss-slide::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,31,60,0) 35%, rgba(13,31,60,.85) 100%); }
.ss-slide h3 {
  position: absolute; left: 50%; bottom: 56px; transform: translateX(-50%); margin: 0;
  font-family: 'Raleway', sans-serif; font-size: clamp(22px, 3.5vw, 36px); font-weight: 900;
  color: #fff; letter-spacing: .5px; text-shadow: 0 2px 12px rgba(0,0,0,.4); z-index: 2; white-space: nowrap;
}
.ss-slide h3::before { content: ''; display: block; width: 50px; height: 4px; background: var(--yellow); margin: 0 auto 14px; border-radius: 2px; }
.ss-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.4);
  color: #fff; font-size: 18px; cursor: pointer; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px); transition: background .25s, border-color .25s, transform .25s;
}
.ss-arrow:hover { background: var(--yellow); color: var(--blue); border-color: var(--yellow); transform: translateY(-50%) scale(1.08); }
.ss-prev { left: 28px; }
.ss-next { right: 28px; }
.ss-dots { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 3; }
.ss-dots span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.4); cursor: pointer; transition: background .2s, transform .2s; }
.ss-dots span.on { background: var(--yellow); transform: scale(1.2); }

@media (max-width: 768px) {
  .ss-slider { height: auto; min-height: 0; max-height: none; }
  .ss-slide { position: static; height: auto; }
  .ss-slide img { position: static; width: 100%; height: auto; object-fit: initial; background: none; }
  .ss-slide::after { display: none; }
  .ss-arrow { width: 40px; height: 40px; font-size: 14px; top: 40%; }
  .ss-prev { left: 12px; }
  .ss-next { right: 12px; }
  .ss-slide h3 { display: none; }
  .ss-dots { position: static; transform: none; justify-content: center; padding: 12px 0; background: #0d1f3c; }
}

html, body { overflow-x: hidden; width: 100%; max-width: 100%; position: relative; }

@media (max-width:900px){
  .logo-wrap img { height: 62px; }
}
@media (max-width:480px){
  .logo-wrap img { height: 48px; }
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE NAVIGATION — SINGLE AUTHORITATIVE BLOCK
   (only mobile-nav rules in the whole file — no duplicates,
   no conflicts. Works for Products → Tank Gauging →
   Communication Interface Unit → Tank Communicator, any depth.)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1300px) {

  .main-nav .wrap {
    flex-wrap: wrap;
    padding: 0;
    position: relative;
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: auto;
  }

  /* top-level menu container */
  .nav-menu {
    display: none;
    flex-direction: column;
    flex-wrap: nowrap;
    width: 100%;
    order: 4;
    background: #fff;
    max-height: calc(100vh - 56px);
    overflow-y: auto;
    box-shadow: 0 10px 24px rgba(0,0,0,.12);
    row-gap: 0;
  }
  .nav-menu.open { display: flex; }

  /* every li at every depth: full width, no absolute positioning */
  .nav-menu li {
    width: 100%;
    flex-shrink: 0;
    position: static;
  }

  .nav-menu > li > a {
    padding: 0 20px;
    height: 46px;
    border-bottom: 1px solid var(--border);
  }
  .nav-menu li ul li > a {
    padding: 12px 20px;
    height: auto;
    border-bottom: 1px solid var(--border);
  }

  /* UNIVERSAL submenu rule — applies at every nesting depth.
     Hidden by default; the JS toggles "open" on the parent <li>,
     and only that li's DIRECT child <ul> is shown. */
  .nav-menu li ul {
    position: static;
    top: auto; left: auto;
    border-top: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    background: var(--offwhite);
    min-width: 0;
    width: 100%;
    padding-left: 14px;
  }
  .nav-menu li.open > ul {
    display: block;
  }

  /* arrow rotation for the visible "Products / Solutions" arr span */
  .nav-menu li > a .arr {
    margin-left: auto;
    transition: transform .25s ease;
  }
  .nav-menu li.open > a .arr {
    transform: rotate(180deg);
  }

  /* Get Quote button stays visible on mobile */
  .btn-quote {
    display: flex;
    margin: 10px 20px;
    order: 5;
    flex-shrink: 0;
  }
}
.social-icons{
    display:flex;
    align-items:center;
    gap:12px;
}

.social-icons > span{
    color:#ffffff;
    font-size:14px;
    font-weight:600;
    margin-right:5px;
}

.social-icons a{
    display:flex;
    align-items:center;
    gap:8px;
    text-decoration:none;
    color:#ffffff;
    font-size:14px;
    font-weight:500;
    padding:6px 12px;
    border:1px solid rgba(255,255,255,.30);
    border-radius:30px;
    transition:.3s ease;
}

.social-icons a i{
    width:28px;
    height:28px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    color:#fff;
    transition:.3s;
}

.social-icons a:hover{
    background:#ffffff;
    color:#0d3b75;
    border-color:#ffffff;
    transform:translateY(-2px);
}

.social-icons a:hover i{
    background:#0d3b75;
    color:#ffffff;
}
/* Mobile Responsive */
@media (max-width:768px){

    .topbar .wrap{
        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:center;
        gap:10px;
        text-align:center;
    }

    .topbar .left{
        width:100%;
        justify-content:center;
        font-size:13px;
    }

    .social-icons{
        width:100%;
        justify-content:center;
        flex-wrap:wrap;
        gap:8px;
    }

    .social-icons > span{
        display:none; /* Follow Us hide on mobile */
    }

    .social-icons a{
        padding:6px 10px;
        font-size:13px;
    }

    .social-icons a span{
        display:none; /* Hide LinkedIn / Instagram text */
    }

    .social-icons a i{
        width:30px;
        height:30px;
        font-size:15px;
    }

}

/*.intro-section .container img{
  max-width:320px;
  width:100%;
  height:auto;
  display:block;
  margin:0 0 28px 0;
  border-radius:8px;
  border:1px solid #e2e8f0;
  box-shadow:0 4px 12px rgba(0,0,0,.05);
}*/
.intro-section h2{ margin-bottom:6px !important; }
.cta-row{ display:flex; flex-wrap:wrap; gap:16px; margin-top:30px; }
.cta-row .btn-pro{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:13px 26px;
  border-radius:6px;
  font-weight:600;
  font-size:15px;
  text-decoration:none;
  transition:transform .2s, box-shadow .2s;
}
.cta-row .btn-pro:first-child{
  background:var(--blue,#1a3a6b);
  color:#fff;
}
.cta-row .btn-pro:last-child{
  background:var(--yellow,#f2b705);
  color:#1a3a6b;
}
.cta-row .btn-pro:hover{ transform:translateY(-3px); box-shadow:0 8px 18px rgba(0,0,0,.15); }
.uge-product-section .container > div[style*="display: flex"]{ margin-bottom:10px; }
