/* =============================================
   SNYPE - Static Site Stylesheet
   Based on Bridge Child Theme + custom styles
   ============================================= */

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

/* === CSS VARIABLES === */
:root {
  --color-navy: #2d3981;
  --color-cyan: #3cbfef;
  --color-pink: #E511A3;
  --color-light-bg: #f7f7f7;
  --color-white: #ffffff;
  --color-text: #333333;
  --color-gray: #787878;
  --font-main: 'Poppins', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
}

a { color: var(--color-cyan); text-decoration: none; }
a:hover { color: var(--color-pink); }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  line-height: 1.2;
}

/* === LAYOUT === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

/* === BRAND CLASSES (from child theme) === */
.permanentmarker {
  font-family: var(--font-main);
  color: var(--color-cyan);
  font-weight: 800;
}

.permanentmarker2 {
  font-family: var(--font-main);
  color: var(--color-pink);
  font-weight: 800;
}

.accent-mycolor { background-color: var(--color-navy) !important; }

.my-separator {
  width: 50%;
  height: 0;
  margin: 13px 0;
  border-top: 2px solid var(--color-cyan);
}

.custom-wtext p { color: #fff !important; font-size: 24px !important; line-height: 34px; margin-bottom: 25px; }
.custom-wtext h2 { color: #fff !important; font-size: 28px !important; line-height: 36px; margin-bottom: 25px; }

/* === NAVIGATION === */
.site-header {
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}
.nav-menu {
  display: flex;
  list-style: none;
  gap: 5px;
  align-items: center;
  position: relative;  /* needed for dropdown positioning */
}

.nav-menu > li > a {
  color: #333333;           /* dark text, not white */
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px;
  border-radius: 3px;
  transition: color 0.2s ease;
}

.nav-menu > li > a:hover,
.nav-menu > li.active > a {
  color: var(--color-pink);   /* active = pink, like HOME in screenshot */
  background: transparent;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown .dropdown-menu {
	display: none;
	position: absolute;
	top: calc(100% + 4px);
	left: 0;
	min-width: 220px;
	z-index: 200;
	list-style: none;
	padding: 6px 0;
	background: #ffffff;
	border: 1px solid rgba(11,23,97,0.1);
	border-radius: 6px;
	box-shadow: 0 8px 24px rgba(11,23,97,0.12);
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li a {
	display: block;
	padding: 9px 18px;
	color: #333333;
	font-family: var(--font-main);
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	white-space: nowrap;
	transition: color 0.15s, background 0.15s;
}

.dropdown-menu li a:hover {
	color: var(--color-cyan);
	background: rgba(60,191,239,0.06);
}

.lang-switcher {
  display: flex;
  gap: 8px;
  margin-left: 20px;
}

.lang-switcher a {
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  font-family: var(--font-main);
  font-weight: 600;
  text-transform: uppercase;
  padding: 4px 8px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 3px;
  transition: all 0.2s;
}

.lang-switcher a:hover,
.lang-switcher a.active {
  color: var(--color-cyan);
  border-color: var(--color-cyan);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--color-navy);
  transition: all 0.3s;
}

/* === PAGE TITLE BANNER === */
.page-hero {
  background-color: var(--color-navy);
  background-size: cover;
  background-position: center;
  padding: 80px 30px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(28px, 5vw, 52px);
  font-family: var(--font-main);
  color: #fff;
  font-weight: 300;
}

/* === HOME HERO (replaces slider) === */
.home-hero {
  background-image:
    linear-gradient(180deg, rgba(204,238,255,0.92) 0%, rgba(255,255,255,0.88) 100%),
    url('../assets/circuit-board.png');
  background-blend-mode: multiply;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.home-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-tagline-bold {
  font-family: var(--font-main);
  font-weight: 800;
  color: var(--color-pink);
  font-size: 45px;
  margin-bottom: 14px;
}

.hero-tagline-sub {
  font-family: var(--font-main);
  font-weight: 400;
  color: var(--color-navy);
  font-size: 20px;
  line-height: 1.7;
  text-align: center;
}

.home-hero-content h2 {
  font-family: var(--font-main);
  font-weight: 800;
  color: var(--color-pink);
  font-size: clamp(20px, 2.5vw, 30px);
  margin-bottom: 30px;
  line-height: 1.3;
}

.home-hero-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.home-hero-bullets li {
  color: rgba(255,255,255,0.9);
  font-size: 16px;
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}

.home-hero-bullets li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-cyan);
}

.home-hero-bullets li .permanentmarker {
  color: var(--color-cyan);
}

/* === SECTIONS === */
.section {
  padding: 80px 30px;
}

.section-navy {
  background-color: var(--color-navy);
  color: #fff;
}

.section-light {
  background-color: var(--color-light-bg);
}

.section-white {
  background-color: #fff;
}

.section-dark-bg {
  background-color: #0a1040;
  color: #fff;
}

/* === SOLUTIONS SECTION === */
.solutions {
  background: var(--color-navy);
  isolation: isolate;
  position: relative;
  padding: 96px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.solutions::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/circuit-board.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.18;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
}
.solutions > * { position: relative; z-index: 1; }

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 1000px;
}

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-cyan);
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-family: var(--font-main);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--color-light-bg);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 48px;
}


.sol-card {
  height: 380px;   /* was 280px */
  perspective: 1000px;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
  border-radius: 0; 
  box-shadow: none;
}

.sol-card:hover { transform: none; box-shadow: none; }

/* chevron hidden on desktop, shown only via mobile media query */
.sol-chevron { display: none; }

.sol-flip-inner {
  width: 100%; height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 1.5s cubic-bezier(0.4,0.2,0.2,1);
}

.sol-card:hover .sol-flip-inner { transform: rotateY(180deg); }

.sol-front, .sol-back {
  position: absolute; inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 8px;
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.sol-front {
  background: #fff;
  border: 1px solid rgba(60,191,239,0.15);
  transition: border-color 0.2s;
}

.sol-back {
  background: #d3f0ff;
  border: 1px solid rgba(60,191,239,0.3);
  transform: rotateY(180deg);
  overflow: hidden;
}

.sol-title {
  font-family: var(--font-main);
  font-size: 22px;
  font-weight: 700;
  color:  var(--color-pink);
  margin-bottom: 16px;
  line-height: 1.3;
}

.sol-front-left {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.sol-desc {
  font-size: 16px;
  color: var(--color-navy);
  line-height: 1.7;
  flex: 1;
}

.sol-hint {
  font-size: 14px;
  color: rgba(60,191,239,1);
  margin-top: auto;
  padding-top: 12px;
  font-family: var(--font-main);
}

.sol-back-title {
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 700;
  color: var(--color-cyan);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
  flex-shrink: 0;
}

.sol-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  flex: 1;
  align-content: flex-start;
  overflow: hidden;
}

.sol-tag {
  font-size: 11px;
  color: var(--color-navy);
  background: rgba(60,191,239,0.1);
  border: 1px solid rgba(60,191,239,0.2);
  padding: 3px 10px;
  border-radius: 20px;
  height: fit-content;
  transition: all 0.2s;
}

.sol-tag:hover {
  background: rgba(60,191,239,0.2); 
	font-weight:bold;
  border-color: rgba(60,191,239,0.4);
}

.sol-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-cyan);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
  padding-top: 12px;
  flex-shrink: 0;
}

.sol-link:hover { color: var(--color-pink); }

@media (min-width: 1400px) {
  .sol-card { height: 420px; }
}

@media (min-width: 1800px) {
  .sol-title { font-size: 30px; }
  .sol-desc { font-size: 25px; }
  .sol-tag { font-size: 19px; }
}

@media (min-width: 2400px) {
  .solutions-grid {
    grid-template-columns: repeat(4, 1fr);
		max-width: 100%;
  }
}

/* === SOLUTIONS — MOBILE ACCORDION (≤768px) === */
@media (max-width: 768px) {
  .solutions { padding: 60px 20px; }

  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(60,191,239,0.2);
  }

  /* hide the desktop flip card entirely */
  .sol-card {
    height: auto;
    perspective: none;
    border-radius: 0;
    border-bottom: 1px solid rgba(60,191,239,0.15);
  }
  .sol-card:last-child { border-bottom: none; }
  .sol-card:hover { transform: none; }

  .sol-flip-inner {
    transform: none !important;
    transform-style: flat;
    transition: none;
    position: static;
    height: auto;
  }

  /* show front as accordion header */
  .sol-front {
    position: static;
    backface-visibility: visible;
    -webkit-backface-visibility: visible;
    border-radius: 0;
    border: none;
    background: #fff;
    padding: 18px 20px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
  }

  .sol-front-left { flex: 1; }

  .sol-title { font-size: 15px; margin-bottom: 4px; }
  .sol-desc { font-size: 12px; display: block; color: var(--color-navy); line-height: 1.5; margin-top: 2px; }
  .sol-hint { display: none; }

  /* chevron shown on mobile */
  .sol-chevron {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(60,191,239,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-cyan);
    font-size: 14px;
    transition: transform 0.25s;
    font-weight: 700;
  }
  .sol-card.open .sol-chevron { transform: rotate(45deg); }

  /* back becomes expandable content */
  .sol-back {
    position: static;
    backface-visibility: visible;
    -webkit-backface-visibility: visible;
    transform: none;
    border-radius: 0;
    border: none;
    border-top: 1px solid rgba(60,191,239,0.15);
    background: #eaf7ff;
    padding: 16px 20px 20px;
    display: none;
  }
  .sol-card.open .sol-back { display: flex; }

  .sol-tags { gap: 5px; }
  .sol-tag { font-size: 11px; }
  .sol-back-title { font-size: 10px; margin-bottom: 10px; }
  .sol-link { font-size: 13px; padding-top: 14px; }
}

/* === WHY SNYPE — 4-COL GRID + DETAIL BELOW === */
.why-snype {
  background-image:
    linear-gradient(rgba(204,238,255,0.88), rgba(255,255,255,0.88)),
    url('../assets/circuit-board.png');
  background-blend-mode: multiply;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
  padding: 80px 48px 100px;
}
.why-snype .section-label,
.why-snype .section-title,
.why-table { position: relative; z-index: 1; }
.why-snype .section-label,
.why-snype .section-title { width: 100%; text-align: center; }
.why-snype .section-title { color: var(--color-navy); }

.why-table {
  max-width: 1400px;
  margin: 0 auto;
}

/* 4-column heading grid */
.why-headings-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(11,23,97,0.1);
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  background: #f8fbff;
}

.why-heading {
  padding: 20px 24px;
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 600;
  color: rgba(11,23,97,0.45);
  cursor: pointer;
  border-right: 1px solid rgba(11,23,97,0.07);
  border-bottom: 1px solid rgba(11,23,97,0.07);
  border-top: 3px solid transparent;
  background: #f8fbff;
  transition: all 0.2s;
  line-height: 1.45;
}

/* remove right border on every 4th item */
.why-heading:nth-child(4n) { border-right: none; }

.why-heading:hover {
  color: var(--color-navy);
  background: #eef6ff;
}

.why-heading.active {
  color: var(--color-navy);
  font-weight: 700;
  background: #fff;
  border-top-color: var(--color-cyan);
}

/* detail panel below the grid */
.why-detail-panel {
  border: 1px solid rgba(11,23,97,0.1);
  border-top: none;
  border-radius: 0 0 12px 12px;
  background: var(--color-light-bg);
  height: 300px;
  overflow-y: auto;
  position: relative;
  margin-top: 50px;
  animation: cyanglow 12s ease-in-out infinite;
}

@keyframes cyanglow {
  0%   { box-shadow: 0 0 16px 2px rgba(60,191,239,0.15), 0 10px 40px rgba(11,23,97,0.4); }
  50%  { box-shadow: 0 0 36px 8px rgba(60,191,239,0.35), 0 10px 48px rgba(60,191,239,0.2); }
  100% { box-shadow: 0 0 16px 2px rgba(60,191,239,0.15), 0 10px 40px rgba(11,23,97,0.4); }
}

.why-desc {
  display: none;
  padding: 32px 40px;
  font-size: 20px;
  color: var(--color-navy);
  line-height: 1.85;
  animation: whyFadeIn 0.18s ease;
}

.why-desc.active { display: block; }

.why-desc-title {
  font-family: var(--font-main);
  font-size: 17px;
  font-weight: 700;
  color: #9e1881;
  margin-bottom: 12px;
}

@keyframes cyanglow {
  0%   { box-shadow: 0 0 10px 1px rgba(60,191,239,0.08), 0 8px 40px rgba(11,23,97,0.3); }
  25%  { box-shadow: 0 0 18px 3px rgba(60,191,239,0.18), 0 8px 40px rgba(60,191,239,0.08); }
  50%  { box-shadow: 0 0 18px 3px rgba(158,24,129,0.18), 0 8px 40px rgba(158,24,129,0.08); }
  75%  { box-shadow: 0 0 18px 3px rgba(60,191,239,0.18), 0 8px 40px rgba(60,191,239,0.08); }
  100% { box-shadow: 0 0 10px 1px rgba(60,191,239,0.08), 0 8px 40px rgba(11,23,97,0.3); }
}

/* wide screen */
@media (min-width: 1400px) {
  .why-snype { padding: 96px 80px; }
  .why-table { max-width: 1600px; }
}
@media (min-width: 1800px) {
  .why-snype { padding: 120px 120px; }
  .why-table { max-width: 1900px; }
  .why-heading { font-size: 20px; padding: 24px 28px; }
  .why-desc { padding: 40px 56px; font-size: 20px; }
  .why-desc-title { font-size: 20px; }
}
@media (min-width: 2400px) {
  .why-snype { padding: 140px 160px; }
}

/* mobile — 2 cols then 1 */
@media (max-width: 1024px) {
  .why-headings-grid { grid-template-columns: repeat(2, 1fr); }
  .why-heading:nth-child(4n) { border-right: 1px solid rgba(11,23,97,0.07); }
  .why-heading:nth-child(2n) { border-right: none; }
}
@media (max-width: 600px) {
  .why-snype { padding: 60px 24px; }
  .why-headings-grid { grid-template-columns: 1fr; }
  .why-heading { border-right: none !important; }
  .why-desc { padding: 24px 20px; }
}

/* === WHY SNYPE — MOBILE ACCORDION (≤768px) === */
@media (max-width: 768px) {
  .why-snype { padding: 60px 20px 80px; }

  /* hide the desktop grid + detail panel */
  .why-headings-grid { display: none; }
  .why-detail-panel { display: none; }

  /* show accordion instead */
  .why-accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid rgba(11,23,97,0.12);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
  }

  .why-acc-item {
    border-bottom: 1px solid rgba(11,23,97,0.08);
  }
  .why-acc-item:last-child { border-bottom: none; }

  .why-acc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    cursor: pointer;
    background: #fff;
    transition: background 0.15s;
    -webkit-tap-highlight-color: transparent;
  }
  .why-acc-header:active { background: #f0f6ff; }
  .why-acc-item.open .why-acc-header { background: #f8fbff; border-bottom: 1px solid rgba(11,23,97,0.08); }

  .why-acc-title {
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-navy);
    line-height: 1.4;
  }

  .why-acc-chevron {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(11,23,97,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-navy);
    font-size: 14px;
    font-weight: 700;
    transition: transform 0.25s, background 0.15s;
  }
  .why-acc-item.open .why-acc-chevron {
    transform: rotate(45deg);
    background: var(--color-cyan);
    color: #fff;
  }

  .why-acc-body {
    display: none;
    padding: 16px 18px 20px;
    font-size: 14px;
    color: var(--color-navy);
    line-height: 1.75;
    background: #f8fbff;
  }
  .why-acc-item.open .why-acc-body { display: block; }

  .why-acc-body-title {
    display: none;
  }
}

/* on desktop, hide the accordion */
@media (min-width: 769px) {
  .why-accordion { display: none; }
}	

/* === TRACK SECTION LAYOUT === */
.track-section {
  background: var(--color-navy);
  isolation: isolate;
  position: relative;
  padding: 96px 48px;
}
.track-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/circuit-board.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.18;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
}
.track-section > * { position: relative; z-index: 1; }

.track-section-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;  /* was center — now top-aligns both sides */
  justify-content: space-between;
  gap: 80px;
}


.track-record {
  flex: 0 0 auto;
}

.track-record .section-label { color: rgba(60,191,239,0.8); }
.track-record .section-title { color: #fff; margin-bottom: 40px; }

/* === AFRICA MAP === */
.track-map {
  flex: 1;
  min-width: 300px;
  max-width: fit-content;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(60,191,239,0.15);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
  align-self: flex-start;
  margin-top: 114px;
  /* 2 rows × 160px + 1 gap × 12px = 332px */
  height: 332px;
}

.track-map img {
  width: 100%;
  height: 100%;
  object-position: center;
  display: block;
}



.ping-marker {
  position: relative;
  width: 12px;
  height: 12px;
}

.ping-marker .dot {
  position: absolute;
  inset: 0;
  background: var(--color-cyan);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(60,191,239,0.9);
}



/* responsive */
@media (max-width: 1024px) {
  .track-section-inner {
    flex-direction: column;
    gap: 32px;
  }
  .track-map {
    max-width: 100%;
    width: 100%;
    margin-top: 0;
    height: auto;
  }
  .track-map img {
    height: auto;
    object-fit: unset;
  }
}

@media (max-width: 600px) {
  .track-section { padding: 60px 20px; }
}

/* wide screen */
@media (min-width: 1100px) and (max-width: 1399px) {
  .track-section-inner { gap: 40px; }
}
@media (min-width: 1400px) {
  .track-section { padding: 96px 80px; }
  .track-section-inner { max-width: 1600px; gap: 40px; }
  .track-map { height: 416px; }
}

@media (min-width: 1800px) {
  .track-section { padding: 120px 120px; }
  .track-section-inner { max-width: 1900px; }
  .track-map {  height: 500px; }
}

@media (min-width: 2400px) {
  .track-section { padding: 140px 160px; }
  .track-section-inner { max-width: 2400px; }
  .track-map {  height: 624px; }
}

.kpis-grid {
  display: grid;
  grid-template-columns: repeat(4, 160px);
  gap: 12px;
  background: var(--color-navy);
  width: fit-content;
  /* margin: 0 auto;  centers the grid */
}

.kpi-item {
  width: 160px;
  height: 160px;
  padding: 20px;
  border-radius: 10px;
  background-color: var(--color-light-bg);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.kpi-value {
  font-family: var(--font-main);
  font-size: 28px;
  font-weight: 800;
  color: var(--color-navy);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}

.kpi-value span { color: var(--color-cyan); }

.kpi-divider {
  width: 28px;
  height: 2px;
  background: var(--color-cyan);
  margin: 6px 0;
  flex-shrink: 0;
}

.kpi-label {
  font-size: 20px;
  color: var(--color-navy);
  line-height: 1.4;
  opacity: 0.7;
}

/* --- Divider --- */
.track-divider {
  width: 1px;
  background: rgba(60, 191, 239, 0.15);
  align-self: stretch;
  margin: 0 60px;
  flex-shrink: 0;
}

/* --- Partners side --- */
.partners-side {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: center;
}

.partners-side .section-label {
  color: rgba(60, 191, 239, 0.8);
  text-align: center;
  margin-bottom: 32px;
}

.partners-strip {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
}

.partners-strip img {
  height: 100px;
  width: auto;
  opacity: 1;
  /* filter: brightness(0) invert(1); */
  transition: opacity 0.2s;
}

.partners-strip img:hover { opacity: 1; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .track-section-inner {
    flex-direction: column;
  }

  .track-divider {
    width: 100%;
    height: 1px;
    margin: 48px 0;
  }

  .partners-side {
    width: 100%;
  }

  .partners-strip {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .track-section { padding: 60px 20px; }

  .kpis-grid {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }

  .kpi-item {
    width: auto;
    height: auto;
    min-height: 0;
    padding: 16px;
  }

  .kpi-value { font-size: 22px; }

  .kpi-label {
    font-size: 11px;
    line-height: 1.35;
  }

  .kpi-divider { width: 20px; margin: 4px 0; }
}

/* === TESTIMONIALS === */
.testimonials-section {
  padding: 96px 48px;
  overflow: hidden;
  position: relative;
  background-image:
    linear-gradient(rgba(204,238,255,0.85), rgba(255,255,255,0.85)),
    url('../assets/circuit-board.png');
  background-blend-mode: multiply;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.testimonials-inner {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.testimonials-content {
  width: 100%;
  max-width: 1100px;
}

.testimonials-content .section-label {
  color: var(--color-cyan);
  text-align: center;
  width: 100%;
  display: block;
}

.testimonials-content .section-title {
  color: var(--color-navy);
  margin-bottom: 64px;
  text-align: center;
}

.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.testi-card {
  background: #fff;
  border: 1px solid rgba(11,23,97,0.08);
  border-radius: 12px;
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(11,23,97,0.06);
  transition: all 0.25s;
}

.testi-card:hover {
  border-color: var(--color-cyan);
  box-shadow: 0 8px 32px rgba(60,191,239,0.12);
  transform: translateY(-2px);
}

/* header row: logo | divider | org + name */
.testi-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.testi-avatar-top {
  width: 180px;
  height: 180px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(11,23,97,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  padding: 6px;
}

.testi-avatar-top img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.testi-header-divider {
  width: 1px;
  height: 48px;
  background: rgba(11,23,97,0.12);
  flex-shrink: 0;
}

.testi-header-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testi-org-top {
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.4;
}

.testi-role-top {
  font-size: 12px;
  color: var(--color-gray);
  font-style: italic;
}

.testi-divider {
  width: 40px;
  height: 2px;
  background: var(--color-cyan);
  margin-bottom: 20px;
  flex-shrink: 0;
}

.testi-text {
  font-size: 14px;
  color: #444;
  line-height: 1.8;
  font-style: italic;
  text-align: left;
}


/* wide screen */
@media (min-width: 1400px) {
  .testimonials-section { padding: 96px 80px; }
  .testimonials-content { max-width: 1300px; }
}

@media (min-width: 1800px) {
   .testi-org-top { font-size: 20px; }
  .testi-role-top { font-size: 16px; }
  .testi-text { font-size: 20px; }
  .testi-avatar-top { width: 180px; height: 180px; }
}

@media (min-width: 2400px) {
  .testimonials-section { padding: 140px 160px; }
  .testimonials-content { max-width: 2000px; }
}

@media (max-width: 768px) {
  .testimonials-section { padding: 60px 20px; }
  .testi-grid { grid-template-columns: 1fr; gap: 32px; }

  .testimonials-inner { width: 100%; }
  .testimonials-content { width: 100%; max-width: 100%; }

  .testi-card { padding: 20px 18px 24px; }

  .testi-header {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
  }

  .testi-avatar-top {
    width: 80px;
    height: 80px;
  }

  .testi-header-divider { display: none; }

  .testi-org-top { font-size: 13px; }
  .testi-role-top { font-size: 11px; }
  .testi-text { font-size: 13px; }
}

/* === TEAM === */
.team-section {
  background: #0a1040;
  isolation: isolate;
  position: relative;
  padding: 96px 48px;
  overflow: hidden;
}
.team-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/circuit-board.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.18;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
}
.team-section > * { position: relative; z-index: 1; }

.team-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0;
  align-items: center;
}

.team-images {
  width: 380px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  margin-right: 20px;
}

.team-img-top,
.team-img-bottom {
  width: 100%;
  height: auto;
  max-width: 400px;
}

.team-content {
  padding-left: 20px;
}

.team-left {
  margin-bottom: 32px;
}

.team-left .section-label { color: rgba(60, 191, 239, 0.8); }

.team-left p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  margin-bottom: 14px;
  font-weight: 300;
}

.team-left p strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.team-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.pillar {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(60, 191, 239, 0.12);
  border-radius: 8px;
  padding: 18px;
  transition: all 0.2s;
}

.pillar:hover {
  background: rgba(60, 191, 239, 0.07);
  border-color: rgba(60, 191, 239, 0.3);
}

.pillar-icon { font-size: 20px; margin-bottom: 8px; }

.pillar-title {
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}

.pillar-desc {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
  .testimonials-inner { grid-template-columns: 1fr; }
  .testimonials-image { display: none; }
  .team-inner { grid-template-columns: 1fr; }
  .team-images { display: none; }
}

@media (max-width: 600px) {
  .testimonials-section,
  .team-section { padding: 60px 20px; }
  .team-pillars { grid-template-columns: 1fr; }
}

/* === CTA === */
.cta-section {
  background: var(--color-navy);
  isolation: isolate;
  padding: 120px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/circuit-board.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.18;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.cta-pre {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.cta-heading {
  font-family: var(--font-main);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 40px;
}

.cta-heading em {
  font-style: normal;
  color: var(--color-cyan);
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-pink);
  color: #fff;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 16px 36px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s;
}

.cta-btn:hover {
  background: #b8006a;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(229, 17, 163, 0.3);
  color: #fff;
}

.cta-btn svg {
  transition: transform 0.2s;
}

.cta-btn:hover svg {
  transform: translateX(4px);
}

.cta-sub {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.25);
}

.cta-sub a {
  color: rgba(60, 191, 239, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.cta-sub a:hover {
  color: var(--color-cyan);
}

@media (max-width: 600px) {
  .cta-section { padding: 80px 24px; }
}


/* === FEATURES GRID === */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-block {
  padding: 30px 0;
}

.feature-block h2 {
  font-family: var(--font-main);
  font-size: 22px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-block h2::before {
  content: '▶';
  color: var(--color-cyan);
  font-size: 18px;
  flex-shrink: 0;
}

.feature-block p,
.feature-block ul {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  line-height: 1.7;
}

.feature-block ul { list-style: none; }
.feature-block ul li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(60,191,239,0.2);
  padding-left: 15px;
  position: relative;
}
.feature-block ul li::before {
  content: '•';
  color: var(--color-cyan);
  position: absolute;
  left: 0;
}

/* === BULLET SECTIONS (full width parallax-style) === */
.content-section {
  padding: 80px 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.content-section-heading {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.content-section-heading::before {
  content: '▶';
  color: var(--color-cyan);
  font-size: 24px;
  flex-shrink: 0;
}

.content-section-heading h2 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-family: var(--font-main);
  font-weight: 300;
}

.bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 900px;
}

.bullet-list li {
  padding: 12px 0 12px 0;
  font-size: 16px;
  line-height: 1.6;
  border-bottom: 2px solid var(--color-cyan);
  width: 50%;
}

/* === PRODUCTS GRID === */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.product-card {
  text-align: center;
}

.product-card-img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 10px;
  background: var(--color-light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.product-card:hover .product-card-img { transform: scale(1.03); }

.product-card-img-placeholder {
  font-size: 48px;
  font-family: var(--font-main);
  font-weight: 800;
  color: var(--color-navy);
  opacity: 0.2;
}

.product-card h6 {
  font-size: 13px;
  font-family: var(--font-main);
  font-weight: 600;
  color: var(--color-text);
  text-align: center;
  line-height: 1.4;
}

.product-card h6 a { color: var(--color-pink); }
.product-card h6 a:hover { color: var(--color-navy); }

/* === TABLE (tg styles from child theme) === */
.tg-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.tg {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

.tg td {
  font-size: 14px;
  padding: 14px 18px;
  border-style: solid;
  border-width: 2px;
  overflow: hidden;
  word-break: normal;
  border-color: var(--color-navy);
  vertical-align: top;
  line-height: 1.5;
}

.tg .tg-d2vu {
  background-color: var(--color-cyan);
  text-align: left;
  vertical-align: top;
  border-right-width: 0;
}

.tg .tg-34fq {
  font-weight: bold;
  color: var(--color-navy);
  text-align: right;
  line-height: 1.5em;
  text-transform: uppercase;
  border-left-width: 0;
  background: #fff;
}

.tg .tg-yw4l {
  vertical-align: top;
  text-align: left;
  border-right-width: 0;
  background: #fff;
}

.tg .tg-w69l {
  font-weight: bold;
  background-color: var(--color-cyan);
  color: var(--color-navy);
  text-align: right;
  line-height: 1.5em;
  text-transform: uppercase;
  border-left-width: 0;
}

.tg .no-top-border { border-top-width: 0; }
.tg .no-bot-border { border-bottom-width: 0; }

/* === SERVICES PAGE === */
.services-section {
  padding: 80px 0;
}

.services-block {
  padding: 60px 30px;
}

.services-block h1 {
  font-family: var(--font-main);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 300;
  color: var(--color-white);
  margin-bottom: 40px;
}

.services-list h3 {
  font-family: var(--font-main);
  font-weight: 800;
  color: var(--color-cyan);
  font-size: 18px;
  margin: 30px 0 8px;
}

.services-list p, .services-list ul {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  list-style: none;
}

.services-list ul li {
  padding: 8px 0;
  position: relative;
  padding-left: 0;
}

/* === ABOUT PAGE === */
.about-split {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
  padding: 80px 0;
}

.about-text h3 {
  font-family: var(--font-main);
  font-size: 28px;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 18px;
  line-height: 1.7;
  font-weight: 600;
  color: var(--color-text);
}

.stats-box {
  border: 2px solid var(--color-navy);
  padding: 20px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.stats-box .label {
  font-size: 40px;
  font-weight: 800;
  font-family: var(--font-main);
  color: var(--color-navy);
  text-transform: uppercase;
  text-align: right;
  line-height: 1;
}

.stats-box .value {
  font-size: 22px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.4;
}

/* === VIDEO EMBED === */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* === CONTACT PAGE === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 80px 0;
}

.contact-address h1 {
  font-family: var(--font-main);
  font-weight: 800;
  color: var(--color-pink);
  font-size: 32px;
  margin-bottom: 20px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 18px;
  color: #fff;
}

.contact-info-item .icon {
  color: var(--color-cyan);
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-form h5 {
  font-family: var(--font-main);
  font-size: 20px;
  color: #fff;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  border-radius: 3px;
  margin-bottom: 15px;
  outline: none;
  transition: border-color 0.2s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.5); }

.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--color-cyan); }

.contact-form textarea { height: 120px; resize: vertical; }

.btn-submit {
  background: var(--color-cyan);
  color: #fff;
  border: none;
  padding: 12px 32px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 3px;
  transition: background 0.2s;
}

.btn-submit:hover { background: var(--color-pink); }

/* === MAP === */
.map-container {
  width: 100%;
  height: 400px;
}

.map-container iframe { width: 100%; height: 100%; border: 0; }

/* === FOOTER === */
/* === FOOTER === */
.site-footer {
  background: #060f1c;
  isolation: isolate;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/circuit-board.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.05;
  filter: invert(1);
  pointer-events: none;
  z-index: 0;
}
.site-footer > * { position: relative; z-index: 1; }

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: start;
  padding-bottom: 48px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8;
  max-width: 420px;
  font-weight: 300;
}

.footer-links-col h5 {
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-cyan);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.footer-links-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.footer-links-col ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links-col ul li a:hover {
  color: #fff;
}

.footer-bottom {
	margin-top:auto;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  max-width: 100%;
}
.site-copyright {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  padding: 12px 24px;
  font-size: 13px;
  color:var(--color-gray);
}

/* scroll to top button */
.scroll-top {
  position: absolute;
  bottom: 28px;
  right: 48px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.scroll-top:hover {
  border-color: var(--color-cyan);
  color: var(--color-cyan);
  background: rgba(60, 191, 239, 0.08);
}

@media (max-width: 768px) {
  .site-footer { padding: 48px 24px 0; }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-links-col ul { align-items: flex-start; }
  .scroll-top { right: 24px; }
}

/* === PACK PAGE === */
.pack-intro {
  font-family: var(--font-main);
  font-size: 22px;
  font-weight: 400;
  color: var(--color-text);
  margin: 30px 0;
  line-height: 1.5;
}

.pack-intro .permanentmarker2 { font-size: inherit; }

/* === UTILITY === */
.text-center { text-align: center; }
.text-white { color: #fff; }
.mt-60 { margin-top: 60px; }
.mb-40 { margin-bottom: 40px; }

.separator-cyan {
  height: 3px;
  background: var(--color-cyan);
  width: 80px;
  margin: 15px 0;
}

.separator-cyan.center { margin: 15px auto; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .about-split { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 837px) {
  .home-hero-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .custom-wtext p { font-size: 18px !important; line-height: 28px; margin-bottom: 15px; }
  .breakmobile { display: block !important; }
}

@media (max-width: 768px) {

  /* ── Mobile menu panel ── */
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--color-navy);
    padding: 12px 0 20px;
    gap: 0;
    z-index: 999;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  }
  .nav-menu.open { display: flex; }

  /* White text for all nav links on mobile */
  .nav-menu > li > a {
    color: #fff;
    padding: 12px 24px;
    border-radius: 0;
    display: block;
    font-size: 13px;
  }
  .nav-menu > li > a:hover,
  .nav-menu > li.active > a {
    color: var(--color-cyan);
    background: rgba(255,255,255,0.06);
  }

  /* Hamburger visible — navy spans on white header */
  .hamburger { display: flex; }
  .hamburger span { background: var(--color-navy); }

  /* ── Mobile dropdown — always open, no tap logic needed ── */
  .nav-dropdown .dropdown-menu {
    display: block;
    position: static;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: rgba(255,255,255,0.04);
    padding: 4px 0 8px;
    min-width: 0;
    width: 100%;
  }
  .nav-dropdown:hover .dropdown-menu { display: block; }

  /* Parent "Our Products" link — same style as others, centered */
  .nav-dropdown > a {
    color: var(--color-cyan);
    font-size: 11px;
    padding: 10px 24px 4px;
    opacity: 1;
    pointer-events: auto;
		text-align: center;
  }
  .nav-dropdown > a::after { display: none; }

  /* Sub-items indented but clearly clickable */
  .dropdown-menu li a {
    color: rgba(255,255,255,0.8);
    padding: 10px 24px 10px 32px;
    font-size: 12px;
    white-space: normal;
    border-left: 2px solid rgba(60,191,239,0.2);
    margin-left: 24px;
    display: block;
  }
  .dropdown-menu li a:hover {
    color: var(--color-cyan);
    background: rgba(255,255,255,0.04);
    border-left-color: var(--color-cyan);
  }

  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .tg { width: auto !important; }
  .tg col { width: auto !important; }
  .bullet-list li { width: 100%; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .breakmobile { display: block !important; }
}

/* === WIDE SCREEN SCALING — INDEX === */
@media (min-width: 1400px) {
  /* hero */
  .home-hero { padding: 100px 80px 120px; }
  .home-hero-inner { max-width: 1000px; }

  /* solutions */
  .solutions { padding: 96px 80px; }


  /* track record */
  .track-section { padding: 96px 80px; }
  .track-section-inner { max-width: 1600px; }
	 .kpis-grid { grid-template-columns: repeat(4, 200px); gap: 16px; }
  .kpi-item { width: 200px; height: 200px; }
  .kpi-value { font-size: 34px; }
  .kpi-label { font-size: 12px; }


  /* team */
  .team-section { padding: 96px 80px; }

  /* cta */
  .cta-section { padding: 140px 80px; }
  .cta-inner { max-width: 900px; }

  /* footer */
  .site-footer { padding: 80px 80px 0; }
  .footer-inner { max-width: 1600px; }
}

@media (min-width: 1800px) {
  /* hero */
  .home-hero { padding: 120px 120px 140px; }
  .home-hero-inner { max-width: 1200px; }
  .hero-tagline-bold { font-size: clamp(50px, 4vw, 72px); }
  .hero-tagline-sub { font-size: 20px; }

  /* solutions */
  .solutions { padding: 120px 120px; }
	
  /* track record */
  .track-section { padding: 120px 120px; }
  .track-section-inner { max-width: 1900px; }
   .kpis-grid { grid-template-columns: repeat(4, 240px); gap: 20px; }
  .kpi-item { width: 240px; height: 240px; padding: 28px; }
  .kpi-value { font-size: 42px; }
  .kpi-label { font-size: 13px; }
  .kpi-divider { width: 36px; margin: 8px 0; }
	
  /* team */
  .team-section { padding: 120px 120px; }
  .team-inner { max-width: 1900px; }
  .team-left p { font-size: 16px; }
  .pillar-title { font-size: 15px; }
  .pillar-desc { font-size: 13px; }

  /* cta */
  .cta-section { padding: 160px 120px; }
  .cta-inner { max-width: 1100px; }
  .cta-heading { font-size: clamp(36px, 4vw, 60px); }

  /* footer */
  .footer-inner { max-width: 1900px; gap: 120px; }
  .footer-brand p { font-size: 16px; max-width: 600px; }

  /* section titles */
  .section-title { font-size: clamp(36px, 3vw, 52px); }
  .section-label { font-size: 13px; }
}

@media (min-width: 2400px) {
  .home-hero { padding: 140px 160px 160px; }
  .solutions { padding: 140px 160px; }
  .track-section { padding: 140px 160px; }
  .track-section-inner { max-width: 2400px; }
  .kpis-grid { grid-template-columns: repeat(4, 300px); gap: 24px; }
  .kpi-item { width: 300px; height: 300px; padding: 36px; }
  .kpi-value { font-size: 54px; }
  .kpi-label { font-size: 20px; }
  .kpi-divider { width: 44px; margin: 10px 0; }
  .team-section { padding: 140px 160px; }
  .team-inner { max-width: 2400px; }
  .cta-section { padding: 180px 160px; }
  .footer-inner { max-width: 2400px; }
}
/* === PARALLAX — disable fixed attachment on mobile (iOS bug) === */
@media (max-width: 768px) {
  .home-hero,
  .solutions,
  .why-snype,
  .track-section,
  .testimonials-section,
  .team-section,
  .cta-section,
  .site-footer {
    background-attachment: scroll;
  }
}