

/* Google Fonts Import for high-end typography */
@import url('fonts/google-fonts.css');

@font-face{font-family:Montserrat;src:url('fonts/42311303c805.woff2') format('woff2');font-weight:400;font-display:swap}
@font-face{font-family:Montserrat;src:url('fonts/6e97cb334784.woff2') format('woff2');font-weight:500;font-display:swap}
@font-face{font-family:Montserrat;src:url('fonts/cc82b6cdd12d.woff2') format('woff2');font-weight:600;font-display:swap}
@font-face{font-family:Montserrat;src:url('fonts/72b46fc4fbd1.woff2') format('woff2');font-weight:700;font-display:swap}
@font-face{font-family:Cinzel;src:url('fonts/68c5170b37b2.woff2') format('woff2');font-weight:600;font-display:swap}

:root {
  --font-sans: 'Plus Jakarta Sans', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Outfit', 'Montserrat', sans-serif;

  /* Official Brand Main Color: #067a7d */
  --teal-primary: #067a7d;
  --teal-bright: #0ea5a9;
  --teal-glow: #14b8a6;
  --teal-light: #44cfc7;
  --teal-dark: #065759;
  --teal-deep: #032b2c;
  --teal-tint: rgba(6, 122, 125, 0.15);
  --teal-border: rgba(6, 122, 125, 0.32);
  --teal-border-hover: rgba(14, 165, 169, 0.7);

  --bg-main: #040809;
  --bg-elevated: #081113;
  --bg-surface: #0b1719;
  --bg-card: rgba(11, 23, 26, 0.8);
  --bg-card-hover: rgba(14, 32, 36, 0.94);
  --bg-glass: rgba(4, 10, 11, 0.92);

  --ink: #f0fdfa;
  --text-primary: #f0fdfa;
  --text-secondary: #9cb5b2;
  --text-muted: #5e7e7b;
  --text-accent: #0ea5a9;

  --line: rgba(6, 122, 125, 0.2);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
  --glow-shadow: 0 0 36px rgba(6, 122, 125, 0.35);
  --glow-pill: 0 0 18px rgba(6, 122, 125, 0.5);

  --radius-sm: 6px;
  --radius: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;
  --shell: 1240px;

  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  background-color: var(--bg-main);
  color-scheme: dark;
}

body {
  margin: 0;
  background-color: var(--bg-main);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(20, 184, 166, 0.18), transparent 70%),
    radial-gradient(ellipse 60% 40% at 100% 40%, rgba(13, 148, 136, 0.1), transparent 60%),
    radial-gradient(ellipse 50% 50% at 0% 70%, rgba(45, 212, 191, 0.08), transparent 60%);
  background-attachment: fixed;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s var(--ease-smooth);
}

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

button {
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

button, a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--teal-glow);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: -80px;
  z-index: 200;
  background: var(--teal-bright);
  color: #030809;
  padding: 10px 18px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: top 0.25s var(--ease-smooth);
  box-shadow: var(--shadow);
}
.skip-link:focus {
  top: 16px;
}

.shell {
  width: min(var(--shell), calc(100% - 48px));
  margin-inline: auto;
}

/* Offset content on desktop so section rail doesn't overlap */
@media (min-width: 992px) {
  .site-header, main, .site-footer {
    margin-right: 0;
  }
}

/* ==========================================================================
   REVIEW BAR (Compact & Integrated)
   ========================================================================== */
.review-bar {
  position: relative;
  z-index: 90;
  background: rgba(8, 18, 20, 0.95);
  border-bottom: 1px solid var(--line);
  color: var(--text-secondary);
  font-size: 0.75rem;
  line-height: 1.3;
}

.review-bar__inner {
  min-height: 32px;
  padding: 4px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.review-bar__inner > span:first-child {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal-glow);
  white-space: nowrap;
}

.review-bar i, .status-dot:before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal-glow);
  box-shadow: 0 0 8px var(--teal-glow);
  content: "";
  display: inline-block;
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.review-bar button {
  border: 0;
  background: none;
  padding: 2px 0;
  font-size: inherit;
  font-weight: 600;
  color: var(--teal-glow);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.review-bar button:hover {
  color: #fff;
}

/* ==========================================================================
   SITE HEADER & PROMINENT BIGGER LOGO
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.45);
}

.header-main {
  min-height: 76px;
  padding: 8px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* BIGGER & PROMINENT LOGO */
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 280px;
}

.brand-mark {
  position: relative;
  width: 76px;
  height: 62px;
  overflow: hidden;
  flex: 0 0 auto;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(45, 212, 191, 0.35);
  padding: 3px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s var(--ease-spring), border-color 0.3s, box-shadow 0.3s;
}
.brand:hover .brand-mark {
  transform: scale(1.06);
  border-color: var(--teal-glow);
  box-shadow: 0 0 20px rgba(45, 212, 191, 0.4);
}

.brand-mark img {
  position: absolute;
  inset: 0;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.15;
  color: #ffffff;
  display: flex;
  flex-direction: column;
}

.brand-name span {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--teal-glow);
  letter-spacing: 0.12em;
}

/* Navigation Links */
.primary-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.primary-nav a {
  padding: 8px 16px;
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 0.25s var(--ease-smooth);
}

.primary-nav a:hover {
  color: #ffffff;
  background: var(--teal-tint);
}

.primary-nav a.is-active {
  color: #ffffff;
  background: var(--teal-tint);
  border: 1px solid var(--teal-border);
  box-shadow: 0 0 14px rgba(45, 212, 191, 0.2);
}

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

.header-contact {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color 0.2s;
}
.header-contact:hover {
  color: var(--teal-glow);
}

.header-demo {
  padding: 9px 20px !important;
  font-size: 0.86rem !important;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--teal-border);
  border-radius: var(--radius-sm);
  background: rgba(12, 25, 28, 0.7);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--teal-glow);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-spring), opacity 0.3s;
}

.scroll-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: rgba(45, 212, 191, 0.1);
  overflow: hidden;
}

#scroll-progress-bar {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #0d9488, #2dd4bf, #5eead4);
  box-shadow: 0 0 12px rgba(45, 212, 191, 0.7);
  transition: width 0.1s linear;
}

/* ==========================================================================
   BUTTONS & LINKS (Unified Main Color #067a7d for ALL Buttons)
   ========================================================================== */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s var(--ease-spring);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

/* Primary Solid & Cream Buttons (Exact #067a7d Main Brand Color) */
.button--solid,
.button--cream {
  background: #067a7d !important;
  color: #ffffff !important;
  font-weight: 800 !important;
  border: 1.5px solid #0ea5a9 !important;
  box-shadow: 0 6px 22px rgba(6, 122, 125, 0.45) !important;
}

.button--solid:hover,
.button--cream:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 30px rgba(6, 122, 125, 0.7) !important;
  background: #0ea5a9 !important;
  color: #ffffff !important;
  border-color: #2dd4bf !important;
}

.button--solid:active,
.button--cream:active {
  transform: translateY(0) !important;
}

.button--outline {
  background: rgba(12, 25, 28, 0.6);
  color: #ffffff;
  border: 1.5px solid var(--teal-border);
  backdrop-filter: blur(10px);
}

.button--outline:hover {
  border-color: #0ea5a9;
  background: #067a7d;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(6, 122, 125, 0.45);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0ea5a9;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 0;
  transition: gap 0.25s var(--ease-spring), color 0.2s;
}
.text-link:hover {
  color: #2dd4bf;
  gap: 12px;
}

/* ==========================================================================
   RIGHT-SIDE SECTION RAIL (HOVER & ACTIVE SECTION COLOR FILL)
   ========================================================================== */
.section-rail {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 60;
  width: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 80px 20px 28px;
  background: rgba(4, 9, 10, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-left: 1px solid var(--line);
  box-shadow: -16px 0 42px rgba(0, 0, 0, 0.6);
}

.section-rail a {
  position: relative;
  width: 100%;
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  border-radius: 14px;
  border: 1.5px solid transparent;
  background: transparent;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.3;
  transition: all 0.3s var(--ease-spring);
  text-decoration: none;
  cursor: pointer;
}

.section-rail a span {
  flex: 0 0 24px;
  color: var(--teal-glow);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 800;
  transition: all 0.3s var(--ease-spring);
}

/* HOVER ON ANY TAB OR ACTIVE ON SCROLLED SECTION: BOTH GET FILLED COLOR BOX */
.section-rail a:hover,
.section-rail a.is-active {
  background: #067a7d !important;
  border: 1.5px solid #0ea5a9 !important;
  color: #ffffff !important;
  box-shadow: 0 0 28px rgba(6, 122, 125, 0.6), 0 4px 16px rgba(0, 0, 0, 0.4) !important;
  transform: translateX(-5px) !important;
}

.section-rail a:hover span,
.section-rail a.is-active span {
  color: #ffffff !important;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.6) !important;
}

/* ==========================================================================
   ACTIVE SECTION COLOR ANIMATION & SUBDUED INACTIVE
   ========================================================================== */
.section, .hero, .contact-section {
  position: relative;
  transition: opacity 0.7s var(--ease-spring),
              filter 0.7s var(--ease-spring),
              transform 0.7s var(--ease-spring);
}

/* Inactive sections have subdued / subtle styling */
.section:not(.is-active-section),
.contact-section:not(.is-active-section) {
  filter: grayscale(0.5) opacity(0.7);
  transform: scale(0.99);
}

/* Active sections illuminate in full vibrant color */
.section.is-active-section,
.hero.is-active-section,
.contact-section.is-active-section {
  filter: grayscale(0) opacity(1);
  transform: scale(1);
}

/* Section Headings */
.section-heading {
  margin-bottom: 42px;
}

.section-heading--split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 60px;
}

.section-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4vw, 3.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.section-heading > p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 1.02rem;
  line-height: 1.7;
}

.eyebrow {
  margin: 0 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-glow);
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ==========================================================================
   HERO SECTION (Tight Spacing, No Dead Void)
   ========================================================================== */
.hero {
  position: relative;
  padding: 24px 0 0;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 30%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 510px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding-bottom: 38px;
}

.hero-copy {
  max-width: 580px;
}

.hero h1 {
  margin: 8px 0 0;
  font-family: var(--font-display);
  color: #ffffff;
  font-size: clamp(2.75rem, 4.5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.hero h1 span {
  background: linear-gradient(135deg, #2dd4bf 0%, #5eead4 60%, #a7f3d0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-lead {
  max-width: 520px;
  margin: 18px 0 0;
  color: var(--text-secondary);
  font-size: 1.02rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.hero-proof div {
  display: flex;
  flex-direction: column;
}

.hero-proof strong {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1;
  color: var(--teal-glow);
  letter-spacing: -0.02em;
}

.hero-proof span {
  margin-top: 6px;
  color: var(--text-secondary);
  font-size: 0.74rem;
  font-weight: 600;
}

.data-note {
  margin: 12px 0 0;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-style: italic;
}
.data-note--light {
  color: var(--text-muted);
}

/* Hero Media Gallery */
.hero-media {
  position: relative;
  height: 480px;
}

.hero-image {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--teal-border);
  box-shadow: var(--shadow);
  transition: transform 0.4s var(--ease-spring), border-color 0.4s;
}
.hero-image:hover {
  transform: translateY(-4px);
  border-color: var(--teal-glow);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}
.hero-image:hover img {
  transform: scale(1.04);
}

.hero-image figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 20px;
  background: linear-gradient(transparent, rgba(3, 10, 11, 0.95));
  color: #ffffff;
  backdrop-filter: blur(6px);
}

.hero-image figcaption span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-glow);
  display: block;
}

.hero-image figcaption strong {
  margin-top: 2px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  display: block;
}

.hero-image--main {
  left: 0;
  top: 0;
  width: 82%;
  height: 390px;
}

.hero-image--product {
  right: 0;
  bottom: 0;
  width: 48%;
  height: 220px;
  border: 4px solid var(--bg-surface);
  background: #0d1e21;
}

.hero-image--product img {
  object-fit: contain;
  background: #0d1e21;
  padding: 12px;
}

.hero-statement {
  position: absolute;
  right: -10px;
  top: 24px;
  z-index: 2;
  padding: 14px 18px;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.95), rgba(20, 184, 166, 0.95));
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  animation: floatStatement 4s ease-in-out infinite;
}

@keyframes floatStatement {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Quick Links Bar */
.quick-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  overflow: hidden;
}

.quick-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: var(--bg-elevated);
  transition: all 0.3s var(--ease-spring);
}

.quick-links a span {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--teal-glow);
  margin-right: 12px;
}

.quick-links a strong {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
  transition: color 0.2s;
}

.quick-links a i {
  font-style: normal;
  color: var(--text-muted);
  transition: transform 0.2s, color 0.2s;
}

.quick-links a:hover {
  background: rgba(20, 184, 166, 0.12);
}
.quick-links a:hover strong {
  color: var(--teal-glow);
}
.quick-links a:hover i {
  color: var(--teal-glow);
  transform: translate(3px, -3px);
}

/* ==========================================================================
   PRODUCTS SECTION (Unified Luxury Dark Panels)
   ========================================================================== */
.products-section {
  padding: 70px 0;
  border-bottom: 1px solid var(--line);
}

.feature-product {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 40px;
  background: linear-gradient(135deg, rgba(14, 32, 36, 0.85) 0%, rgba(9, 20, 22, 0.95) 100%);
  border: 1px solid var(--teal-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  margin-bottom: 60px;
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}

.feature-product::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.feature-product__media {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--teal-border);
  min-height: 340px;
  box-shadow: var(--shadow);
}

.feature-product__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-smooth);
}
.feature-product:hover .feature-product__media img {
  transform: scale(1.03);
}

.image-label {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: rgba(4, 10, 11, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--teal-border);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--teal-glow);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.feature-product__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-product__copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--teal-glow);
  line-height: 1;
}

.feature-product__copy h4 {
  margin: 8px 0 16px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #ffffff;
}

.feature-product__copy p {
  margin: 0 0 20px;
  color: var(--text-secondary);
  font-size: 0.96rem;
  line-height: 1.65;
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.benefit-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(20, 184, 166, 0.08);
  border: 1px solid rgba(45, 212, 191, 0.2);
  border-radius: var(--radius-sm);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-primary);
}

.benefit-list li span {
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--teal-glow);
}

/* Rails & Carousels */
.rail-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.rail-heading h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.rail-heading--compact {
  margin-top: 50px;
}

.rail-controls {
  display: flex;
  gap: 8px;
}

.rail-controls button {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--teal-border);
  background: var(--bg-surface);
  color: var(--teal-glow);
  font-size: 1.1rem;
  font-weight: 700;
  transition: all 0.25s var(--ease-spring);
}

.rail-controls button:hover {
  background: #067a7d;
  color: #ffffff;
  border-color: #0ea5a9;
  transform: scale(1.08);
  box-shadow: 0 0 18px rgba(6, 122, 125, 0.5);
}

.rail-wrap {
  position: relative;
  overflow: hidden;
  margin: 0 -24px;
  padding: 10px 24px 20px;
}

.rail {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 8px;
}
.rail::-webkit-scrollbar {
  display: none;
}

/* Product Cards */
.product-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: var(--bg-card);
  border: 1px solid var(--teal-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  transition: all 0.35s var(--ease-spring);
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--teal-glow);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7), 0 0 20px rgba(45, 212, 191, 0.25);
}

.product-card__image {
  position: relative;
  height: 200px;
  background: rgba(10, 22, 25, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-smooth);
}
.product-card:hover .product-card__image img {
  transform: scale(1.06);
}

.product-card__image--teal img {
  object-fit: contain;
  padding: 14px;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: repeating-linear-gradient(-45deg, #0d1e21, #0d1e21 14px, #132a2e 14px, #132a2e 28px);
  color: var(--text-muted);
  font-size: 0.75rem;
  text-align: center;
  padding: 16px;
}

.image-placeholder b {
  font-family: var(--font-display);
  color: var(--teal-glow);
  font-size: 0.95rem;
}

.product-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
}

.product-card__body p {
  margin: 0 0 6px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal-glow);
}

.product-card__body h3 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 700;
  color: #ffffff;
}

.product-card__body span {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-bottom: 12px;
}

.product-card__body button {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--teal-tint);
  border: 1px solid var(--teal-border);
  color: var(--teal-glow);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s var(--ease-spring);
}

.product-card:hover .product-card__body button {
  background: #067a7d;
  color: #ffffff;
  border-color: #0ea5a9;
  transform: scale(1.1);
  box-shadow: 0 0 16px rgba(6, 122, 125, 0.6);
}

/* Simulation Gallery */
.gallery-rail figure {
  flex: 0 0 240px;
  scroll-snap-align: start;
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--teal-border);
  position: relative;
  height: 190px;
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease-spring), border-color 0.3s;
}
.gallery-rail figure:hover {
  transform: translateY(-4px);
  border-color: var(--teal-glow);
}

.gallery-rail figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-smooth);
}
.gallery-rail figure:hover img {
  transform: scale(1.08);
}

.gallery-rail figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 14px;
  background: linear-gradient(transparent, rgba(5, 10, 11, 0.95));
  font-size: 0.78rem;
  font-weight: 600;
  color: #ffffff;
  backdrop-filter: blur(4px);
}

/* ==========================================================================
   TRAINING SECTION & DASHBOARD (Exact Match to Screenshot media_1788870854316)
   ========================================================================== */
.training-section {
  padding: 80px 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(13, 148, 136, 0.14), transparent 70%), var(--bg-elevated);
  border-bottom: 1px solid var(--line);
}

.training-dashboard {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 36px;
  background: var(--bg-surface);
  border: 1px solid var(--teal-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(20px);
  margin-bottom: 60px;
  align-items: stretch;
}

/* LEFT CARD: SOLID VIBRANT TEAL (Matches Screenshot 2) */
.next-session {
  background: #067a7d;
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 12px 36px rgba(6, 122, 125, 0.45);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.next-session::after {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.next-session__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.next-session__top .status-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #ffffff;
}

.next-session__top .status-dot:before {
  background: #ffffff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.9);
}

.next-session__top .content-needed {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  background: transparent;
  border: 1.5px solid #ffffff;
  border-radius: var(--radius-full);
  color: #ffffff;
}

.next-session__date {
  padding: 24px 0 20px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.next-session__date span {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.85);
  padding-top: 6px;
  min-width: 44px;
}

.next-session__date strong {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.2vw, 3rem);
  font-weight: 900;
  line-height: 1.05;
  color: #ffffff;
  letter-spacing: -0.03em;
}

.next-session__copy {
  margin-top: auto;
}

.next-session__copy p {
  margin: 0 0 8px;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.85);
}

.next-session__copy h3 {
  margin: 0 0 22px;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.next-session__copy dl {
  margin: 0 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.next-session__copy dl div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.next-session__copy dt {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.85);
}

.next-session__copy dd {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.4;
}

.next-session .button--cream {
  background: #050e10 !important;
  color: #ffffff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.35) !important;
  border-radius: var(--radius-full) !important;
  padding: 13px 26px !important;
  font-weight: 800 !important;
  font-size: 0.9rem !important;
  align-self: flex-start !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4) !important;
}
.next-session .button--cream:hover {
  background: #000000 !important;
  border-color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.6) !important;
}

/* RIGHT PANEL: CLEAN HORIZONTAL PROGRAMME ROWS (Matches Screenshot 2) */
.programme-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.programme-panel__header {
  margin-bottom: 12px;
}

.programme-panel__header .eyebrow {
  margin-bottom: 6px;
  color: var(--teal-glow);
  font-weight: 800;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
}

.programme-panel__header h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
}

.programme-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.programme-list button {
  width: 100%;
  display: grid;
  grid-template-columns: 44px 1fr 32px;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 16px;
  row-gap: 4px;
  padding: 20px 8px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  text-align: left;
  transition: all 0.25s var(--ease-spring);
  cursor: pointer;
}

.programme-list button:last-child {
  border-bottom: none;
}

.programme-list button span {
  grid-column: 1;
  grid-row: 1 / span 2;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--teal-glow);
}

.programme-list button strong {
  grid-column: 2;
  grid-row: 1;
  font-family: var(--font-display);
  font-size: 1.16rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  transition: color 0.2s;
}

.programme-list button i {
  grid-column: 2;
  grid-row: 2;
  font-style: normal;
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

.programme-list button b {
  grid-column: 3;
  grid-row: 1 / span 2;
  font-size: 1.25rem;
  color: var(--text-muted);
  text-align: right;
  transition: transform 0.25s var(--ease-spring), color 0.2s;
}

.programme-list button:hover {
  background: rgba(45, 212, 191, 0.08);
  padding-left: 14px;
  padding-right: 14px;
  border-radius: var(--radius-sm);
  border-bottom-color: transparent;
}

.programme-list button:hover strong {
  color: var(--teal-glow);
}

.programme-list button:hover b {
  color: var(--teal-glow);
  transform: translate(3px, -3px);
}

.training-history-heading {
  margin-bottom: 24px;
}
.training-history-heading h3 {
  margin: 4px 0 0;
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 800;
  color: #ffffff;
}
.training-history-heading p {
  color: var(--text-secondary);
  margin: 6px 0 0;
  font-size: 0.92rem;
}

.history-rail article {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: var(--bg-card);
  border: 1px solid var(--teal-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease-spring), border-color 0.35s;
}
.history-rail article:hover {
  transform: translateY(-4px);
  border-color: var(--teal-glow);
}

.history-rail article img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.history-rail article > div {
  padding: 16px;
  display: flex;
  flex-direction: column;
}

.history-rail article span {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--teal-glow);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.history-rail article h3 {
  margin: 4px 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
}

.history-rail article p {
  margin: 0 0 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.history-rail article button {
  align-self: flex-start;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--teal-glow);
  padding: 0;
  transition: color 0.2s;
}
.history-rail article button:hover {
  color: #ffffff;
}

.rail-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
  color: var(--text-muted);
  font-size: 0.76rem;
}

/* ==========================================================================
   DEPLOYMENTS SECTION
   ========================================================================== */
.deployments-section {
  padding: 70px 0;
  border-bottom: 1px solid var(--line);
}

.deployment-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px 24px;
  background: linear-gradient(135deg, rgba(14, 34, 38, 0.9), rgba(8, 20, 22, 0.9));
  border: 1px solid var(--teal-border);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}

.deployment-summary__intro span {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal-glow);
}

.deployment-summary__intro strong {
  font-size: 0.98rem;
  color: #ffffff;
}

.deployment-summary__fields {
  display: flex;
  gap: 16px;
}

.deployment-summary__fields span {
  padding: 4px 10px;
  background: rgba(45, 212, 191, 0.1);
  border: 1px solid rgba(45, 212, 191, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--teal-glow);
}

.deployment-rail article {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: var(--bg-card);
  border: 1px solid var(--teal-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease-spring), border-color 0.35s;
}
.deployment-rail article:hover {
  transform: translateY(-4px);
  border-color: var(--teal-glow);
}

.deployment-image-slot {
  height: 140px;
  background: repeating-linear-gradient(-45deg, #0a181a, #0a181a 12px, #102428 12px, #102428 24px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--line);
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 12px;
  text-align: center;
}

.deployment-card__body {
  padding: 16px;
}

.deployment-card__body > p {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--teal-glow);
  text-transform: uppercase;
}

.deployment-card__body h3 {
  margin: 4px 0 12px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
}

.deployment-card__body dl {
  margin: 0 0 14px;
  display: grid;
  gap: 6px;
}

.deployment-card__body dl div {
  display: flex;
  justify-content: space-between;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(45, 212, 191, 0.1);
  font-size: 0.78rem;
}

.deployment-card__body dt {
  color: var(--text-muted);
}

.deployment-card__body dd {
  margin: 0;
  color: var(--text-secondary);
  font-weight: 600;
}

.deployment-card__body button {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--teal-glow);
  padding: 0;
  transition: color 0.2s;
}
.deployment-card__body button:hover {
  color: #ffffff;
}

/* ==========================================================================
   IMPACT & LEGACY SECTION
   ========================================================================== */
.impact-section {
  padding: 70px 0;
  border-bottom: 1px solid var(--line);
  background: radial-gradient(ellipse 60% 40% at 20% 50%, rgba(20, 184, 166, 0.1), transparent 60%), var(--bg-surface);
}

.legacy-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--teal-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  margin-bottom: 36px;
}

.legacy-copy h2 {
  margin: 8px 0 16px;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.legacy-copy p {
  color: var(--text-secondary);
  font-size: 1.02rem;
  line-height: 1.65;
  margin: 0 0 28px;
}

.impact-numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.impact-numbers div {
  display: flex;
  flex-direction: column;
}

.impact-numbers strong {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--teal-glow);
  line-height: 1;
}

.impact-numbers span {
  margin-top: 6px;
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.legacy-profile {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--teal-border);
  box-shadow: var(--shadow);
  position: relative;
}

.legacy-profile img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.5s var(--ease-smooth);
}
.legacy-profile:hover img {
  transform: scale(1.03);
}

.legacy-profile figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 20px;
  background: linear-gradient(transparent, rgba(3, 10, 11, 0.95));
  backdrop-filter: blur(6px);
  color: #ffffff;
}

.legacy-profile figcaption p {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--teal-glow);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.legacy-profile figcaption strong {
  margin-top: 2px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  display: block;
}

.testimonial-row {
  background: linear-gradient(135deg, rgba(14, 32, 36, 0.8), rgba(8, 20, 22, 0.9));
  border: 1px solid var(--teal-border);
  border-radius: var(--radius-md);
  padding: 32px 40px;
  box-shadow: var(--shadow);
}

.testimonial-row blockquote {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  font-style: italic;
  line-height: 1.5;
  color: #f0fdfa;
}

.testimonial-row cite {
  font-style: normal;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--teal-glow);
  display: block;
}

.testimonial-row cite span {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  display: block;
  margin-top: 2px;
}

.content-warning {
  margin: 14px 0 0;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ==========================================================================
   ABOUT SECTION (Values Grid & Mission)
   ========================================================================== */
.about-section {
  padding: 70px 0;
  border-bottom: 1px solid var(--line);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.values-grid article {
  background: var(--bg-card);
  border: 1px solid var(--teal-border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  transition: all 0.35s var(--ease-spring);
  display: flex;
  flex-direction: column;
}

.values-grid article:hover {
  transform: translateY(-6px);
  border-color: var(--teal-glow);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), 0 0 20px rgba(45, 212, 191, 0.2);
}

.values-grid article span {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--teal-glow);
  line-height: 1;
  margin-bottom: 12px;
}

.values-grid article h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
}

.values-grid article p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.mission-panel {
  background: linear-gradient(135deg, rgba(14, 35, 39, 0.9) 0%, rgba(7, 18, 20, 0.95) 100%);
  border: 1px solid var(--teal-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.mission-panel h3 {
  margin: 8px 0 24px;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.35;
  color: #ffffff;
}

.mission-panel > div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mission-panel > div span {
  padding: 8px 18px;
  background: rgba(45, 212, 191, 0.12);
  border: 1px solid rgba(45, 212, 191, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal-glow);
  letter-spacing: 0.04em;
}

/* ==========================================================================
   CONTACT SECTION & FORM
   ========================================================================== */
.contact-section {
  padding: 80px 0;
  background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(20, 184, 166, 0.16), transparent 70%), var(--bg-elevated);
  border-bottom: 1px solid var(--line);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: start;
}

.contact-copy h2 {
  margin: 8px 0 16px;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 3.8vw, 3.4rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.contact-copy p {
  color: var(--text-secondary);
  font-size: 1.02rem;
  line-height: 1.65;
  margin: 0 0 28px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-details a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--teal-glow);
  font-size: 1.05rem;
  font-weight: 600;
  transition: color 0.2s;
}
.contact-details a:hover {
  color: #ffffff;
}

.contact-details address {
  font-style: normal;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--teal-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.contact-form label span {
  color: var(--teal-glow);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  background: rgba(6, 14, 16, 0.85);
  border: 1px solid var(--teal-border);
  border-radius: var(--radius);
  color: #ffffff;
  font-size: 0.92rem;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--teal-glow);
  box-shadow: 0 0 14px rgba(45, 212, 191, 0.3);
  outline: none;
}

.contact-form select {
  cursor: pointer;
}

.form-wide {
  grid-column: 1 / -1;
}

.form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 8px;
}

.form-submit p {
  margin: 0;
  font-size: 0.74rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FOOTER & PROMINENT FOOTER BRAND
   ========================================================================== */
.site-footer {
  background: #030607;
  padding: 60px 0 30px;
  border-top: 1px solid var(--line);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.brand--footer {
  margin-bottom: 20px;
}
.brand--footer .brand-mark {
  width: 70px;
  height: 56px;
}

.footer-main h3 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal-glow);
}

.footer-main a {
  display: block;
  font-size: 0.86rem;
  color: var(--text-secondary);
  margin-bottom: 10px;
  transition: color 0.2s, transform 0.2s;
}
.footer-main a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(45, 212, 191, 0.1);
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.78rem;
}

.back-to-top {
  position: fixed;
  right: 224px;
  bottom: 24px;
  z-index: 70;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #067a7d;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(6, 122, 125, 0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s var(--ease-spring);
  border: 1px solid #0ea5a9;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: #0ea5a9;
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(6, 122, 125, 0.7);
}

/* ==========================================================================
   DETAIL DIALOG MODAL
   ========================================================================== */
.detail-dialog {
  border: 1px solid var(--teal-border);
  border-radius: var(--radius-lg);
  background: rgba(8, 18, 20, 0.96);
  color: var(--text-primary);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.8), 0 0 40px rgba(45, 212, 191, 0.2);
  padding: 36px;
  max-width: 680px;
  width: min(92vw, 680px);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  margin: auto;
}

.detail-dialog::backdrop {
  background: rgba(2, 6, 7, 0.8);
  backdrop-filter: blur(8px);
}

.dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(16, 35, 39, 0.8);
  border: 1px solid var(--teal-border);
  color: #ffffff;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.dialog-close:hover {
  background: var(--teal-bright);
  color: #030809;
}

.dialog-copy h2 {
  margin: 4px 0 8px;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
}

.dialog-copy h3 {
  margin: 0 0 16px;
  font-size: 1.05rem;
  color: var(--teal-glow);
}

.dialog-copy p {
  color: var(--text-secondary);
  font-size: 0.94rem;
  line-height: 1.65;
}

.dialog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 20px 0;
}

.dialog-grid > div {
  background: rgba(12, 28, 31, 0.8);
  border: 1px solid var(--teal-border);
  border-radius: var(--radius-sm);
  padding: 14px;
}

.dialog-grid strong {
  display: block;
  font-size: 0.88rem;
  color: var(--teal-glow);
  margin-bottom: 4px;
}

.dialog-grid p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.dialog-note {
  padding: 12px 16px;
  background: rgba(16, 35, 39, 0.8);
  border: 1px solid rgba(45, 212, 191, 0.2);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  color: var(--text-muted);
}

.record-template {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}

.record-template span {
  padding: 10px 14px;
  background: rgba(12, 28, 31, 0.8);
  border: 1px solid var(--teal-border);
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
  color: var(--teal-glow);
  font-weight: 600;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (FULL MOBILE RESPONSIVENESS)
   ========================================================================== */
@media (max-width: 1100px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .quick-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .site-header, main, .site-footer {
    margin-right: 0;
  }
  .section-rail {
    display: none;
  }
  .back-to-top {
    right: 20px;
  }
  .menu-toggle {
    display: flex;
  }
  .primary-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 24px;
    gap: 12px;
    transform: translateY(-120%);
    transition: transform 0.35s var(--ease-spring);
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }
  .primary-nav.is-open {
    transform: translateY(0);
  }
  .primary-nav a {
    width: 100%;
    text-align: center;
    padding: 14px;
    font-size: 1rem;
    border-radius: var(--radius-sm);
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    min-height: auto;
  }
  .hero-media {
    height: 420px;
  }
  .feature-product {
    grid-template-columns: 1fr;
    padding: 28px;
  }
  .training-dashboard {
    grid-template-columns: 1fr;
  }
  .legacy-grid {
    grid-template-columns: 1fr;
    padding: 28px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .shell {
    width: calc(100% - 32px);
  }
  .header-main {
    min-height: 64px;
  }
  .brand {
    min-width: auto;
    gap: 10px;
  }
  .brand-mark {
    width: 58px;
    height: 48px;
  }
  .brand-name {
    font-size: 0.9rem;
  }
  .brand-name span {
    font-size: 0.76rem;
  }
  .header-demo {
    display: none;
  }
  .hero {
    padding-top: 16px;
  }
  .hero h1 {
    font-size: clamp(2.3rem, 10vw, 3.2rem);
  }
  .hero-media {
    height: 340px;
  }
  .hero-image--main {
    width: 92%;
    height: 280px;
  }
  .hero-image--product {
    width: 50%;
    height: 160px;
  }
  .quick-links {
    grid-template-columns: 1fr;
  }
  .benefit-list {
    grid-template-columns: 1fr;
  }
  .contact-form {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .footer-main {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .dialog-grid, .record-template {
    grid-template-columns: 1fr;
  }
}

  

/* ==========================================================================
   GSI V5: INLINE FORM STARS, EVEN DEPLOYMENT WIDTH, FONT WEIGHT 700, TYPOGRAPHY
   ========================================================================== */

/* Full Width & Centering */
.site-header, main, .site-footer {
  margin-right: 0 !important;
  width: 100% !important;
}

.shell {
  width: min(1360px, calc(100% - 64px)) !important;
  margin-inline: auto !important;
  padding-inline: 16px !important;
  box-sizing: border-box !important;
}

body.dots-on .shell {
  width: min(1280px, calc(100% - 96px)) !important;
  margin-inline: auto !important;
}

body.dots-off .shell {
  width: min(1360px, calc(100% - 48px)) !important;
  margin-inline: auto !important;
}

body.dots-off .section-rail--dots {
  display: none !important;
}

/* 2-Tier Sticky Header */
.site-header--v3 {
  position: sticky;
  top: 0;
  z-index: 95;
  background: rgba(7, 18, 22, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(45, 212, 191, 0.18);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.header-tier-brand {
  padding-block: 12px 10px;
}

.header-brand-shell {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.brand--v3 {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
}

.brand-mark--v3 {
  position: relative;
  width: var(--gsi-logo-width, 130px);
  height: var(--gsi-logo-height, 90px);
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 auto;
  overflow: hidden;
}

.brand-mark--v3 img {
  position: relative !important;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: left center;
}

.brand-name--v3 {
  font-family: var(--font-display);
  font-size: var(--gsi-logo-text-size, 2.2rem) !important;
  font-weight: var(--gsi-heading-weight, 700) !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  color: #ffffff !important;
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 10px !important;
  white-space: nowrap !important;
  line-height: 1 !important;
}

.brand-name-sub {
  color: #ffffff !important;
  font-weight: var(--gsi-heading-weight, 700) !important;
  font-size: inherit !important;
  letter-spacing: inherit !important;
  display: inline !important;
}

.header-tier-nav {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-block: 8px 10px;
}

.header-nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.primary-nav--v3 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.primary-nav--v3 a {
  padding: 7px 16px;
  font-size: 0.94rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.2s ease;
}

.primary-nav--v3 a:hover {
  color: #ffffff;
  background: rgba(45, 212, 191, 0.15);
}

/* GLOBAL TYPOGRAPHY & FONT WEIGHT 700 */
h1, h2, h3, h4,
.hero h1,
.section-heading h2,
.contact-headline,
.rail-heading h3,
.programme-panel h3 {
  font-weight: var(--gsi-heading-weight, 700) !important;
}

.hero h1 {
  font-size: var(--gsi-h1-size, clamp(2rem, 3.2vw, 2.75rem)) !important;
}

.section-heading--split h2 {
  font-size: var(--gsi-h2-size, clamp(1.85rem, 3.2vw, 2.4rem)) !important;
  font-weight: var(--gsi-heading-weight, 700) !important;
  line-height: 1.18 !important;
  letter-spacing: -0.015em !important;
  color: #ffffff !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  word-break: break-word !important;
}

.section-heading--split p,
.section-lead,
.contact-lead-text,
.hero-lead {
  font-size: var(--gsi-p-size, 1.15rem) !important;
  line-height: 1.65 !important;
  color: rgba(220, 235, 238, 0.9) !important;
}

.eyebrow {
  font-size: var(--gsi-eyebrow-size, 0.85rem) !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  color: var(--teal-glow) !important;
  text-transform: uppercase !important;
  margin: 0 0 10px !important;
}

.product-card__body h3,
.values-grid article h3,
.deployment-card__body h3 {
  font-size: var(--gsi-h3-size, 1.25rem) !important;
  font-weight: var(--gsi-heading-weight, 700) !important;
}

/* FIX 1: INLINE FORM STARS */
.contact-form label {
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
  font-size: 0.84rem !important;
  font-weight: 600 !important;
  color: var(--text-secondary) !important;
}

.contact-form .label-text {
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  font-size: 0.86rem !important;
  font-weight: 600 !important;
  color: var(--text-secondary) !important;
}

.contact-form .required-star {
  color: var(--teal-glow) !important;
  font-weight: 700 !important;
  display: inline !important;
}

/* FIX 2: EVEN DEPLOYMENT REGISTER BANNER & 4 CARDS WIDTH */
.deployments-section .shell {
  display: flex;
  flex-direction: column;
}

.deployment-summary {
  width: 100% !important;
  box-sizing: border-box !important;
  margin-bottom: 24px !important;
}

.rail-wrap--beige {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
}
.deployment-rail {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 20px !important;
}

.deployment-rail article {
  width: 100% !important;
  min-width: 0 !important;
  flex: none !important;
  box-sizing: border-box !important;
}

/* Values Grid 4 Columns */
.values-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 18px !important;
  width: 100% !important;
  margin-bottom: 40px !important;
}

.values-grid article {
  min-width: 0 !important;
  word-break: break-word !important;
}

/* Minimal Round Floating 5-Dots */
.section-rail--dots {
  position: fixed !important;
  right: 14px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 90 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  width: auto !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.dots-container {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.rail-dot-item {
  position: relative !important;
  width: 14px !important;
  height: 14px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  padding: 0 !important;
}

.dot-circle {
  width: 7px !important;
  height: 7px !important;
  aspect-ratio: 1 / 1 !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.35) !important;
  border: none !important;
  transition: all 0.25s ease !important;
  display: block !important;
}

.rail-dot-item:hover .dot-circle,
.rail-dot-item.is-active .dot-circle {
  background: var(--teal-glow, #2dd4bf) !important;
  width: 9px !important;
  height: 9px !important;
  border-radius: 50% !important;
  box-shadow: 0 0 10px var(--teal-glow, #2dd4bf), 0 0 3px #ffffff !important;
  transform: scale(1.25) !important;
}

/* Balanced Contact Section Grid */
.contact-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  gap: 48px !important;
  align-items: start !important;
}

.contact-copy {
  padding-right: 12px;
}

/* Footer Brand Single Line */
.brand--footer-v3 {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-mark--footer-v3 {
  position: relative;
  width: var(--gsi-footer-logo-width, 120px);
  height: var(--gsi-footer-logo-height, 80px);
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.brand-mark--footer-v3 img {
  position: relative !important;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.brand-name--footer-v3 {
  font-family: var(--font-display);
  font-size: var(--gsi-footer-logo-text-size, 1.2rem) !important;
  font-weight: var(--gsi-heading-weight, 700) !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  color: #ffffff !important;
  display: inline-flex !important;
  flex-direction: row !important;
  white-space: nowrap !important;
  gap: 6px !important;
}

@media (max-width: 1100px) {
  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .deployment-rail {
    grid-template-columns: minmax(0, 1fr) !important;
  }
}

@media (max-width: 991px) {
  .section-rail--dots {
    display: none !important;
  }
  .contact-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 32px !important;
  }
  .section-heading--split {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 16px !important;
  }
  .brand--v3 {
    max-width: calc(100% - 70px) !important;
    overflow: hidden !important;
  }
  .brand-name--v3 {
    font-size: 0.95rem !important;
    white-space: nowrap !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 2px !important;
  }
}

@media (max-width: 640px) {
  .values-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }
}


/* ==========================================================
   DEPLOYMENTS SECTION EXACT SIDE-BY-SIDE SPLIT & BANNER FIX
   ========================================================== */
.deployments-section .section-heading--split {
  display: grid !important;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) !important;
  gap: 40px !important;
  align-items: end !important;
  width: 100% !important;
  margin-bottom: 32px !important;
}

.deployments-section .section-heading--split > div {
  min-width: 0 !important;
}

.deployments-section .section-heading--split h2 {
  font-size: clamp(2rem, 3.2vw, 2.75rem) !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
  color: #ffffff !important;
  margin: 0 !important;
}

.deployments-section .section-heading--split p {
  font-size: 1.15rem !important;
  line-height: 1.6 !important;
  color: rgba(220, 235, 238, 0.9) !important;
  margin: 0 !important;
  max-width: 580px !important;
}

.deployment-summary {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 20px !important;
  padding: 16px 24px !important;
  background: rgba(10, 26, 30, 0.75) !important;
  border: 1px solid rgba(45, 212, 191, 0.25) !important;
  border-radius: var(--radius-md) !important;
  margin-bottom: 24px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  box-shadow: var(--shadow) !important;
}

.deployment-summary__intro span {
  display: block !important;
  font-size: 0.75rem !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  color: var(--teal-glow) !important;
  margin-bottom: 4px !important;
}

.deployment-summary__intro strong {
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
}

.deployment-summary__fields {
  display: flex !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
}

.deployment-summary__fields span {
  padding: 6px 14px !important;
  background: rgba(6, 122, 125, 0.25) !important;
  border: 1px solid rgba(45, 212, 191, 0.35) !important;
  border-radius: var(--radius-full) !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  color: var(--teal-glow) !important;
}

.rail-wrap--beige {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
}
/* deployment-rail grid removed to restore slider */


/* FORCE INLINE DEPLOYMENT SUMMARY BANNER */
.deployment-summary {
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 20px !important;
  padding: 16px 28px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.deployment-summary__intro {
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
  text-align: left !important;
  flex: 1 1 auto !important;
}

.deployment-summary__intro span {
  font-size: 0.75rem !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  color: #2dd4bf !important;
}

.deployment-summary__intro strong {
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
}

.deployment-summary__fields {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 12px !important;
  flex-wrap: nowrap !important;
  flex-shrink: 0 !important;
}

.deployment-summary__fields span {
  padding: 6px 16px !important;
  background: rgba(6, 122, 125, 0.25) !important;
  border: 1px solid rgba(45, 212, 191, 0.35) !important;
  border-radius: 9999px !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  color: #2dd4bf !important;
  white-space: nowrap !important;
}


/* =========================================================
   SLIM RIGHT-SIDE SCROLL DOT NAVIGATION (USER EXACT CSS)
========================================================= */
html {
    scroll-behavior: smooth;
}

.side-dot-nav {
    position: fixed !important;
    top: 50% !important;
    right: 4px !important;
    transform: translateY(-50%) !important;

    width: 28px !important;
    height: 330px !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: space-between !important;

    z-index: 9999 !important;
    pointer-events: none !important;
}

/* Thin vertical line */
.side-dot-nav::before {
    content: "" !important;
    position: absolute !important;
    top: 14px !important;
    bottom: 14px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;

    width: 1px !important;
    background: linear-gradient(
        to bottom,
        rgba(17, 224, 214, 0.45),
        rgba(120, 140, 145, 0.18)
    ) !important;

    border-radius: 10px !important;
}

/* Dot button */
.side-dot-nav .dot-item {
    position: relative !important;
    z-index: 2 !important;

    width: 10px !important;
    height: 10px !important;

    padding: 0 !important;
    margin: 0 !important;

    border: 0 !important;
    outline: none !important;
    border-radius: 50% !important;

    background: #8b989b !important;
    opacity: 0.82 !important;

    cursor: pointer !important;
    pointer-events: auto !important;

    transition:
        transform .25s ease,
        background .25s ease,
        opacity .25s ease,
        box-shadow .25s ease !important;
}

/* Hover */
.side-dot-nav .dot-item:hover {
    background: #19ddd4 !important;
    opacity: 1 !important;
    transform: scale(1.18) !important;
}

/* Active dot */
.side-dot-nav .dot-item.active {
    width: 14px !important;
    height: 14px !important;

    background: #dce8e8 !important;
    opacity: 1 !important;

    border: 2px solid #14ddd4 !important;

    box-shadow:
        0 0 0 4px rgba(20, 221, 212, 0.08),
        0 0 10px rgba(20, 221, 212, 0.55) !important;
}

/* Fine outer ring */
.side-dot-nav .dot-item.active::after {
    content: "" !important;
    position: absolute !important;

    top: 50% !important;
    left: 50% !important;

    width: 22px !important;
    height: 22px !important;

    transform: translate(-50%, -50%) !important;

    border: 1px solid rgba(20, 221, 212, 0.35) !important;
    border-radius: 50% !important;

    pointer-events: none !important;
}

/* Sticky header offset */
#products,
#training,
#deployments,
#impact,
#about {
    scroll-margin-top: 90px !important;
}

/* Dots off toggle */
body.dots-off .side-dot-nav {
    display: none !important;
}

/* Tablet */
@media (max-width: 1024px) {
    .side-dot-nav {
        width: 24px !important;
        height: 280px !important;
    }

    .side-dot-nav .dot-item {
        width: 9px !important;
        height: 9px !important;
    }

    .side-dot-nav .dot-item.active {
        width: 13px !important;
        height: 13px !important;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .side-dot-nav {
        width: 20px !important;
        height: 220px !important;
    }

    .side-dot-nav .dot-item {
        width: 7px !important;
        height: 7px !important;
    }

    .side-dot-nav .dot-item.active {
        width: 11px !important;
        height: 11px !important;
        border-width: 2px !important;
    }

    .side-dot-nav .dot-item.active::after {
        width: 18px !important;
        height: 18px !important;
    }
}


/* ==========================================================================
   NEW SECTIONS: INDIGIVU PLATFORM, CRAFTSMANSHIP & SIMULATION LAB SETUP
   (Exact Theme Consistency with Black & Teal Design Language)
   ========================================================================== */

/* 1. INDIGIVU PLATFORM SECTION */
.indigivu-section {
  padding: 50px 0;
  border-bottom: 1px solid var(--line);
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(6, 122, 125, 0.14) 0%, transparent 70%), var(--bg-surface);
}

.indigivu-header {
  text-align: center;
  max-width: 860px;
  margin-inline: auto !important;
  margin-bottom: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: rgba(6, 122, 125, 0.25);
  border: 1px solid var(--teal-border);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--teal-glow);
  margin-bottom: 12px;
  letter-spacing: 0.06em;
}

.indigivu-main-title {
  font-size: clamp(2rem, 3.4vw, 2.75rem) !important;
  font-weight: var(--gsi-heading-weight, 700) !important;
  line-height: 1.2;
  color: #ffffff;
  margin: 0 0 10px !important;
}

.gradient-text {
  color: var(--teal-glow);
  display: inline-block;
}

.indigivu-lead-desc {
  font-size: 1.05rem !important;
  line-height: 1.55;
  color: var(--text-secondary);
  max-width: 780px;
  margin-inline: auto;
  margin-bottom: 0;
}

/* 4 Features Grid */
.indigivu-features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.indigivu-feat-card {
  background: var(--bg-card);
  border: 1px solid var(--teal-border);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.indigivu-feat-card:hover {
  transform: translateY(-3px);
  border-color: var(--teal-glow);
  background: var(--bg-card-hover);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.indigivu-feat-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(6, 122, 125, 0.25);
  border: 1px solid var(--teal-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-glow);
  margin-bottom: 2px;
}

.indigivu-feat-card h3 {
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  color: #ffffff;
  margin: 0;
}

.indigivu-feat-card p {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.45;
  margin: 0;
}

/* Dual Product Showcase */
.indigivu-dual-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

.dual-prod-card {
  background: var(--bg-card);
  border: 1px solid var(--teal-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}

.dual-prod-media {
  height: 190px;
  background: #030a0c;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.dual-prod-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
}

.dual-prod-media--placeholder {
  background: repeating-linear-gradient(-45deg, #071518, #071518 12px, #0c2024 12px, #0c2024 24px);
  color: var(--text-muted);
}

.placeholder-product-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.dual-prod-body {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sub-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--teal-glow);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(6, 122, 125, 0.2);
  border: 1px solid var(--teal-border);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  align-self: flex-start;
}

.dual-prod-body h3 {
  font-size: 1.3rem !important;
  font-weight: 700 !important;
  color: #ffffff;
  margin: 0;
}

.dual-prod-body p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

.dual-prod-bullets {
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 14px;
}

.dual-prod-bullets li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.bullet-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal-glow);
  flex-shrink: 0;
}

/* Bottom CTA Banner */
.indigivu-cta-banner {
  background: linear-gradient(135deg, rgba(6, 122, 125, 0.95), rgba(8, 42, 48, 0.95));
  border: 1px solid rgba(45, 212, 191, 0.4);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.indigivu-cta-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.indigivu-cta-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}

.indigivu-cta-left h3 {
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  color: #ffffff;
  margin: 0 0 2px;
}

.indigivu-cta-left p {
  font-size: 0.88rem;
  color: rgba(240, 253, 250, 0.9);
  margin: 0;
}

.button--white {
  background: #ffffff !important;
  color: #067a7d !important;
  font-weight: 800 !important;
  font-size: 0.88rem !important;
  padding: 10px 22px !important;
  border-radius: var(--radius-full) !important;
  border: none !important;
  white-space: nowrap !important;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.button--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* 2. SURGERY SIMULATION CRAFTSMANSHIP SECTION */
.craftsmanship-section {
  padding: 50px 0;
  border-bottom: 1px solid var(--line);
  background: var(--bg-main);
}

.craft-header {
  text-align: center;
  max-width: 860px;
  margin-inline: auto !important;
  margin-bottom: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.craft-main-title {
  font-size: clamp(2rem, 3.4vw, 2.75rem) !important;
  font-weight: var(--gsi-heading-weight, 700) !important;
  line-height: 1.2;
  color: #ffffff;
  margin: 0 0 10px !important;
}

.teal-title-text {
  color: var(--teal-glow);
  display: inline-block;
}

.craft-lead-desc {
  font-size: 1.05rem !important;
  line-height: 1.55;
  color: var(--text-secondary);
  max-width: 780px;
  margin-inline: auto;
  margin-bottom: 0;
}

.craft-container-box {
  background: linear-gradient(135deg, rgba(14, 34, 38, 0.85), rgba(8, 20, 22, 0.9));
  border: 1px solid var(--teal-border);
  border-radius: var(--radius-lg);
  padding: 28px 28px;
  box-shadow: var(--shadow);
}

.craft-box-heading {
  text-align: center;
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: #ffffff;
  margin: 0 0 20px;
}

.craft-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.craft-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.craft-icon-circle {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(6, 122, 125, 0.3);
  border: 1px solid var(--teal-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-glow);
  margin-bottom: 2px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.craft-column h4 {
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: #ffffff;
  margin: 0;
}

.craft-column p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.45;
  margin: 0;
}

.craft-materials-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.mat-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal-glow);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-right: 4px;
}

.mat-badge {
  padding: 5px 14px;
  background: rgba(6, 122, 125, 0.18);
  border: 1px solid var(--teal-border);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* 3. SIMULATION LAB SETUP SECTION */
.lab-setup-section {
  padding: 50px 0;
  border-bottom: 1px solid var(--line);
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(6, 122, 125, 0.12) 0%, transparent 70%), var(--bg-surface);
}

.forest-lab-card {
  background: linear-gradient(135deg, rgba(9, 46, 52, 0.95) 0%, rgba(5, 20, 24, 0.95) 100%);
  border: 1px solid rgba(45, 212, 191, 0.35);
  border-radius: var(--radius-lg);
  padding: 30px 32px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.forest-lab-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
  gap: 32px;
  align-items: center;
}

.forest-lab-copy {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.forest-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(6, 122, 125, 0.3);
  border: 1px solid var(--teal-border);
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--teal-glow);
  align-self: flex-start;
  letter-spacing: 0.06em;
}

.forest-lab-copy h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.3rem) !important;
  font-weight: var(--gsi-heading-weight, 700) !important;
  line-height: 1.2;
  color: #ffffff;
  margin: 0;
}

.forest-desc {
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0;
}

.forest-bullets {
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}

.forest-bullets li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #ffffff;
}

.f-dot {
  color: var(--teal-glow);
  font-size: 1.1rem;
  line-height: 1;
}

.forest-lab-media {
  height: 240px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--teal-border);
}

.forest-lab-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.forest-lab-action {
  display: flex;
  justify-content: center;
}

.button--white-consult {
  background: #067a7d !important;
  color: #ffffff !important;
  font-size: 0.92rem !important;
  font-weight: 800 !important;
  padding: 12px 28px !important;
  border-radius: var(--radius-full) !important;
  border: 1.5px solid rgba(45, 212, 191, 0.4) !important;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.button--white-consult:hover {
  background: #0ea5a9 !important;
  border-color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(6, 122, 125, 0.6);
}

/* Responsiveness for New Sections */
@media (max-width: 991px) {
  .indigivu-features-grid,
  .craft-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .indigivu-dual-showcase,
  .forest-lab-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }
  .indigivu-cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  .forest-lab-card {
    padding: 24px;
  }
}

@media (max-width: 640px) {
  .indigivu-features-grid,
  .craft-grid-4 {
    grid-template-columns: minmax(0, 1fr) !important;
  }
  .dual-prod-bullets,
  .forest-bullets {
    grid-template-columns: minmax(0, 1fr) !important;
  }
}

/* --- Mobile Responsiveness Fixes --- */
@media (max-width: 991px) {
  .header-actions {
    position: relative !important;
    z-index: 100 !important;
  }
}

@media (max-width: 767px) {
  /* Fix dots nav shrinking page width */
  body.dots-on .shell {
    width: calc(100% - 32px) !important;
  }
  .side-dot-nav {
    background: transparent !important;
    z-index: 100 !important;
  }

  /* Fix rail slider causing page to slide horizontally */
  .rail-wrap {
    margin: 0 -16px !important;
    padding: 10px 16px 20px !important;
  }
  .rail {
    overscroll-behavior-x: contain !important;
  }

  /* Fix footprint summary squished */
  .deployment-summary {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
    padding: 16px 20px !important;
  }
  .deployment-summary__fields {
    flex-wrap: wrap !important;
  }
}

/* --- Equal Gap Between Sections --- */
.section, .contact-section {
  padding-block: 80px !important;
}

@media (max-width: 991px) {
  .section, .contact-section {
    padding-block: 60px !important;
  }
}

@media (max-width: 767px) {
  .section, .contact-section {
    padding-block: 40px !important;
  }
}

/* --- Mobile Header, Sliding Menu, & Footprint Rail Fixes --- */
@media (max-width: 991px) {
  /* Smaller Logo */
  .brand-mark--v3 {
    width: 60px !important;
    height: 44px !important;
  }
  .brand-name--v3 {
    font-size: 1.2rem !important;
  }
  
  /* Hide Contact Outside Hamburger */
  .header-contact {
    display: none !important;
  }
  
  /* Slide Menu from Right */
  .primary-nav {
    position: fixed !important;
    top: 0 !important;
    left: auto !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 280px !important;
    height: 100vh !important;
    transform: translateX(100%) !important;
    transition: transform 0.4s var(--ease-spring) !important;
    background: rgba(8, 18, 20, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    z-index: 99 !important;
    padding-top: 80px !important;
    border-left: 1px solid rgba(20, 221, 212, 0.15) !important;
  }
  .primary-nav.is-open {
    transform: translateX(0) !important;
  }
  
  /* Hamburger / Cross Icon on Top Right */
  .header-actions {
    position: fixed !important;
    top: 15px !important;
    right: 20px !important;
    z-index: 101 !important;
  }
}

/* Mobile Footprint Slider (Deployment Rail) Fix */
@media (max-width: 991px) {
  .deployment-rail {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    gap: 16px !important;
    padding-bottom: 20px !important;
    overscroll-behavior-x: contain !important;
  }
  .deployment-rail article {
    flex: 0 0 100% !important;
    width: 100% !important;
    scroll-snap-align: center !important;
  }
}
