/* ==========================================================================
   SURIYAN GLOBAL — Premium International B2B Design System
   Identity: Singapore Maritime & Global Commodity Trading House
   Colors: Navy (#073B4C, #062F3D), Sea-Green (#0A5C46, #0F766E), Gold (#C6A15B), Off-White (#F8FAFC)
   Typography: Cormorant Garamond (Display) & Manrope (Body/Data)
   ========================================================================== */

:root {
  /* Color Palette */
  --navy-950: #031B24;
  --navy-900: #04232E;
  --navy-800: #062F3D;
  --navy-700: #073B4C;
  --navy-600: #0B5263;
  --navy-500: #12687D;
  
  --sea-green-900: #06261E;
  --sea-green-800: #0A3D2E;
  --sea-green-700: #0A5C46;
  --sea-green-600: #0D7358;
  --teal-600: #0F766E;
  --teal-500: #14B8A6;
  --teal-100: #CCFBF1;
  --teal-50: #F0FDFA;

  --gold-800: #8E7032;
  --gold-700: #A8863D;
  --gold-600: #C6A15B;
  --gold-500: #D8B26E;
  --gold-400: #E6C88D;
  --gold-100: #FDF6E7;
  --gold-50: #FFFDF8;

  --bg-main: #F8FAFC;
  --bg-surface: #FFFFFF;
  --bg-alt: #F1F5F9;
  --bg-soft-navy: #093444;

  --text-main: #0F172A;
  --text-muted: #475569;
  --text-light: #64748B;
  --text-white: #FFFFFF;

  --border-light: #E2E8F0;
  --border-medium: #CBD5E1;
  --border-gold: rgba(198, 161, 91, 0.35);
  --border-navy: rgba(7, 59, 76, 0.12);

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(6, 47, 61, 0.04);
  --shadow-sm: 0 4px 12px rgba(6, 47, 61, 0.05);
  --shadow-md: 0 10px 28px rgba(6, 47, 61, 0.08);
  --shadow-lg: 0 20px 48px rgba(6, 47, 61, 0.12);
  --shadow-xl: 0 28px 64px rgba(6, 47, 61, 0.18);
  --shadow-gold: 0 8px 24px rgba(198, 161, 91, 0.28);

  /* Dimensions & Spacing */
  --nav-height: 88px;
  --nav-height-scrolled: 70px;
  --container-max: 1320px;
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;

  /* Typography */
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s var(--ease-smooth);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 16px);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-main);
  background-color: var(--bg-main);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden !important;
  touch-action: none;
}

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

img {
  height: auto;
  object-fit: cover;
  image-rendering: auto;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

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

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
  outline: none;
}

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

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.2rem, 3vw, 2.5rem);
  padding-right: clamp(1.2rem, 3vw, 2.5rem);
}

/* ==========================================================================
   Typography & Eyebrows
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--navy-800);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.85rem, 3.8vw, 3rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.85rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.35rem); }

p {
  color: var(--text-muted);
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 0.75rem;
}

.section-eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--gold-600);
  border-radius: 2px;
}

.section-eyebrow.light {
  color: var(--gold-400);
}
.section-eyebrow.light::before {
  background: var(--gold-400);
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-header.center {
  text-align: center;
}

.section-header.center .section-eyebrow {
  justify-content: center;
}
.section-header.center .section-eyebrow::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--gold-600);
  border-radius: 2px;
}

.section-lead {
  max-width: 680px;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-top: 0.85rem;
}

.section-header.center .section-lead {
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   Buttons & Interactive Elements
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.82rem 1.65rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
  white-space: nowrap;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-700) 100%);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 16px rgba(6, 47, 61, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--navy-700) 0%, var(--sea-green-700) 100%);
  box-shadow: 0 8px 24px rgba(6, 47, 61, 0.28);
  color: #FFFFFF;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-600) 0%, var(--gold-700) 100%);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 16px rgba(198, 161, 91, 0.3);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-600) 100%);
  box-shadow: var(--shadow-gold);
  color: #FFFFFF;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: #FFFFFF;
  color: var(--navy-800);
  border-color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-outline {
  background: transparent;
  color: var(--navy-700);
  border-color: var(--navy-700);
}

.btn-outline:hover {
  background: var(--navy-700);
  color: #FFFFFF;
  box-shadow: 0 6px 18px rgba(7, 59, 76, 0.15);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-400);
  border-color: var(--gold-600);
}

.btn-outline-gold:hover {
  background: var(--gold-600);
  color: #FFFFFF;
  box-shadow: var(--shadow-gold);
}

.btn-pill {
  border-radius: var(--radius-pill);
}

.btn-sm {
  padding: 0.55rem 1.15rem;
  font-size: 0.84rem;
}

.btn-lg {
  padding: 1rem 2.2rem;
  font-size: 1rem;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

/* ==========================================================================
   Header & Sticky Navigation Bar
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  min-height: var(--nav-height);
  padding: 0.85rem 0;
  background: transparent;
  transition: padding var(--transition-base), background-color var(--transition-base), box-shadow var(--transition-base), backdrop-filter var(--transition-base);
}

.site-header .container {
  max-width: 1440px;
  padding-left: clamp(0.75rem, 1.8vw, 1.5rem);
  padding-right: clamp(0.75rem, 1.8vw, 1.5rem);
}

.site-header.scrolled {
  padding: 0.45rem 0;
  min-height: var(--nav-height-scrolled);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.3rem, 0.6vw, 0.75rem);
  padding: 0.38rem 0.55rem 0.38rem 0.85rem;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(203, 213, 225, 0.85);
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 28px rgba(6, 47, 61, 0.08);
  transition: all var(--transition-base);
  width: 100%;
  box-sizing: border-box;
}

.site-header.scrolled .nav-shell {
  padding: 0.3rem 0.48rem 0.3rem 0.75rem;
  background: rgba(255, 255, 255, 0.99);
  border-color: rgba(198, 161, 91, 0.4);
  box-shadow: 0 10px 32px rgba(6, 47, 61, 0.12);
}

/* Brand Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition-fast);
}

.logo:hover .logo-mark-img {
  transform: scale(1.04);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
}

.logo-name {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.25vw, 1.25rem);
  font-weight: 700;
  color: var(--navy-800);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
}

.logo-tag {
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-top: 1px;
  white-space: nowrap;
}

/* Nav Links Container */
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 0;
  gap: clamp(0.08rem, 0.22vw, 0.35rem);
}

.nav-links > a:not(.mobile-cta),
.nav-mega-trigger,
.nav-drop-trigger {
  padding: 0.4rem clamp(0.32rem, 0.42vw, 0.48rem);
  font-size: clamp(0.79rem, 0.84vw, 0.86rem);
  font-weight: 700;
  color: var(--navy-800);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  transition: color var(--transition-fast), background var(--transition-fast);
  white-space: nowrap;
  border-radius: var(--radius-xs);
  letter-spacing: -0.01em;
}

.nav-links > a:not(.mobile-cta):hover,
.nav-links > a:not(.mobile-cta).active,
.nav-mega-trigger:hover,
.nav-mega-trigger.active,
.nav-drop-trigger:hover,
.nav-drop-trigger.active {
  color: var(--sea-green-700);
  background: rgba(10, 92, 70, 0.04);
}

.nav-links > a:not(.mobile-cta)::after,
.nav-mega-trigger::after,
.nav-drop-trigger::after {
  content: "";
  position: absolute;
  bottom: 0.15rem;
  left: 0.42rem;
  right: 0.42rem;
  height: 2px;
  background: var(--gold-600);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition-fast);
}

.nav-links > a:not(.mobile-cta):hover::after,
.nav-links > a:not(.mobile-cta).active::after,
.nav-mega-trigger:hover::after,
.nav-mega-trigger.active::after,
.nav-drop-trigger:hover::after,
.nav-drop-trigger.active::after {
  transform: scaleX(1);
}

.nav-caret {
  width: 0;
  height: 0;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 4.5px solid currentColor;
  opacity: 0.75;
  transition: transform var(--transition-fast);
}

.nav-drop:hover .nav-caret,
.nav-mega:hover .nav-caret,
.nav-drop.is-open .nav-caret,
.nav-mega.is-open .nav-caret {
  transform: rotate(180deg);
}

/* Nav Dropdown Menus (Flicker-Free, Seamless Hover Bridge) */
.nav-drop {
  position: relative;
}

.nav-drop-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 250px;
  padding-top: 10px; /* Seamless invisible bridge to prevent mouse leaving hover target */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s cubic-bezier(0.16, 1, 0.3, 1), transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1150;
}

.nav-drop-inner {
  background: #FFFFFF;
  border: 1px solid rgba(203, 213, 225, 0.9);
  border-radius: 14px;
  box-shadow: 0 16px 45px rgba(6, 47, 61, 0.14), 0 4px 12px rgba(6, 47, 61, 0.05);
  padding: 0.5rem 0;
  overflow: hidden;
}

.nav-drop:hover .nav-drop-panel,
.nav-drop.is-open .nav-drop-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-drop-panel a {
  display: block;
  padding: 0.65rem 1.25rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy-800);
  border-left: 3px solid transparent;
  transition: all 0.18s ease;
  white-space: nowrap;
  text-decoration: none;
}

.nav-drop-panel a:hover,
.nav-drop-panel a.active {
  background: rgba(10, 92, 70, 0.06);
  color: var(--sea-green-700);
  border-left-color: var(--gold-600);
  padding-left: 1.5rem;
}

/* Mega Menu (Products - 4-Column Enterprise Grid) */
.nav-mega {
  position: relative;
}

.nav-mega-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-35%) translateY(6px);
  width: 900px;
  max-width: 94vw;
  padding-top: 10px; /* Seamless hover bridge */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s cubic-bezier(0.16, 1, 0.3, 1), transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1250;
}

.nav-mega:hover .nav-mega-panel,
.nav-mega.is-open .nav-mega-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-35%) translateY(0);
}

.nav-mega-inner {
  background: #062F3D;
  border: 1px solid rgba(216, 167, 74, 0.35);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.nav-mega-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  padding: 1.5rem 1.75rem 1.25rem 1.75rem;
  background: linear-gradient(180deg, #073B4C 0%, #062F3D 100%);
}

.nav-mega-col {
  display: flex;
  flex-direction: column;
}

.nav-mega-col-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #D8A74A !important;
  text-decoration: none;
  margin-bottom: 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(216, 167, 74, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s ease;
}

.nav-mega-col-title:hover {
  color: #FFFFFF !important;
  border-bottom-color: #D8A74A;
}

.nav-mega-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.nav-mega-links li a {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: #E2E8F0 !important;
  text-decoration: none;
  padding: 0.38rem 0.65rem;
  border-radius: 6px;
  transition: all 0.18s ease;
  white-space: nowrap;
}

.nav-mega-links li a:hover {
  background: rgba(216, 167, 74, 0.15);
  color: #D8A74A !important;
  padding-left: 0.95rem;
}

.nav-mega-footer {
  padding: 0.75rem 1.75rem;
  background: rgba(3, 29, 38, 0.85);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-mega-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #D8A74A !important;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.nav-mega-all-btn:hover {
  color: #FFFFFF !important;
  transform: translateX(4px);
}

/* Nav Actions (CTA + Search + Hamburger) */
.nav-actions {
  display: flex;
  align-items: center;
  gap: clamp(0.2rem, 0.4vw, 0.4rem);
  flex-shrink: 0;
  margin-left: auto;
}

.nav-icon-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-800);
  background: rgba(7, 59, 76, 0.05);
  transition: all var(--transition-fast);
  cursor: pointer;
  flex-shrink: 0;
}

.nav-icon-btn:hover {
  background: rgba(7, 59, 76, 0.12);
  color: var(--sea-green-700);
  transform: scale(1.05);
}

.nav-icon-btn svg {
  width: 16px;
  height: 16px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem clamp(0.65rem, 0.8vw, 0.95rem);
  border-radius: var(--radius-pill);
  background: #073B4C;
  color: #FFFFFF;
  border: 1.5px solid #C6A15B;
  font-size: clamp(0.76rem, 0.8vw, 0.83rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 14px rgba(7, 59, 76, 0.2);
  transition: all var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-cta:hover {
  background: #0A5C46;
  border-color: #D8A74A;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(10, 92, 70, 0.28);
  color: #FFFFFF;
}

.nav-cta-arrow {
  font-size: 0.9rem;
  transition: transform var(--transition-fast);
}

.nav-cta:hover .nav-cta-arrow {
  transform: translateX(3px);
}

@media (max-width: 1280px) and (min-width: 992px) {
  .logo-name {
    font-size: 1.05rem;
  }
  .logo-mark-img {
    height: 32px;
  }
  .nav-links > a:not(.mobile-cta),
  .nav-mega-trigger,
  .nav-drop-trigger {
    padding: 0.36rem 0.28rem;
    font-size: 0.77rem;
    gap: 0.15rem;
  }
  .nav-cta {
    padding: 0.4rem 0.65rem;
    font-size: 0.75rem;
  }
  .nav-icon-btn {
    width: 30px;
    height: 30px;
  }
}

.nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(7, 59, 76, 0.08);
  border: 1px solid rgba(198, 161, 91, 0.4);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.nav-toggle:hover {
  background: #073B4C;
}

.nav-toggle:hover span {
  background: #FFFFFF;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy-800);
  border-radius: 2px;
  transition: transform var(--transition-fast), opacity var(--transition-fast), background-color var(--transition-fast);
}

.nav-toggle.open {
  background: #073B4C;
}

.nav-toggle.open span {
  background: #FFFFFF;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ==========================================================================
   Mobile Navigation Drawer (Full-Viewport Detached Architecture)
   ========================================================================== */
.mobile-nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 99999;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0.3s ease;
}

.mobile-nav-drawer.open {
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 27, 36, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav-drawer.open .mobile-nav-backdrop {
  opacity: 1;
}

.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(88vw, 360px);
  height: 100%;
  background: #FFFFFF;
  box-shadow: -10px 0 40px rgba(6, 47, 61, 0.25);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.mobile-nav-drawer.open .mobile-nav-panel {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid var(--border-light);
  background: #F8FAFC;
  flex-shrink: 0;
}

.mobile-drawer-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(7, 59, 76, 0.08);
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--navy-800);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.mobile-drawer-close:hover {
  background: #073B4C;
  color: #FFFFFF;
}

.mobile-drawer-body {
  flex: 1 1 auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0.75rem 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.mobile-nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-800);
  border-radius: var(--radius-xs);
  border-bottom: 1px solid #F1F5F9;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
  background: var(--teal-50);
  color: var(--sea-green-700);
  padding-left: 1.25rem;
}

/* Mobile Accordion */
.mobile-accordion {
  border-radius: var(--radius-xs);
  border-bottom: 1px solid #F1F5F9;
  overflow: hidden;
}

.mobile-accordion-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  background: transparent;
  border: none;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-800);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.mobile-accordion.is-open .mobile-accordion-toggle {
  background: rgba(10, 92, 70, 0.06);
  color: var(--sea-green-700);
}

.mobile-accordion-toggle .accordion-arrow {
  transition: transform 0.3s ease;
}

.mobile-accordion.is-open .mobile-accordion-toggle .accordion-arrow {
  transform: rotate(180deg);
}

.mobile-accordion-content {
  display: none;
  padding: 0.5rem 0.75rem 0.75rem 1.25rem;
  background: #F8FAFC;
  border-radius: 0 0 var(--radius-xs) var(--radius-xs);
}

.mobile-accordion.is-open .mobile-accordion-content {
  display: block;
}

.mobile-sub-link.highlight {
  display: block;
  font-weight: 800;
  color: var(--gold-600);
  padding: 0.45rem 0;
  margin-bottom: 0.5rem;
  border-bottom: 1px dashed var(--border-light);
  font-size: 0.88rem;
}

.mobile-sub-section {
  margin-bottom: 0.75rem;
}

.mobile-sub-title {
  display: block;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sea-green-700);
  margin-bottom: 0.25rem;
  margin-top: 0.5rem;
}

.mobile-sub-section a {
  display: block;
  font-size: 0.86rem;
  color: var(--text-muted);
  padding: 0.35rem 0.5rem;
  text-decoration: none;
  border-radius: 4px;
  transition: all var(--transition-fast);
}

.mobile-sub-section a:hover {
  color: var(--navy-800);
  background: rgba(198, 161, 91, 0.15);
  padding-left: 0.75rem;
}

.mobile-drawer-footer {
  padding: 1.1rem 1.25rem;
  border-top: 1px solid var(--border-light);
  background: #F8FAFC;
  flex-shrink: 0;
}

@media (max-width: 1080px) {
  .nav-links.desktop-nav {
    display: none !important;
  }
  .nav-toggle {
    display: flex !important;
  }
  .nav-actions .nav-cta {
    display: none !important;
  }
  .logo-tag {
    display: none;
  }
}

/* ==========================================================================
   Hero Section (Homepage & Inner Page Banners)
   ========================================================================== */
.hero-b2b {
  position: relative;
  padding-top: calc(var(--nav-height) + 1.5rem);
  padding-bottom: 4.5rem;
  background: linear-gradient(135deg, #04232E 0%, #062F3D 45%, #0A3D2E 100%);
  color: #FFFFFF;
  overflow: hidden;
}

.hero-b2b::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(198, 161, 91, 0.12) 0%, transparent 50%),
              radial-gradient(circle at 15% 80%, rgba(20, 184, 166, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  text-align: left;
}

.hero-badge-strip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(198, 161, 91, 0.4);
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 1.25rem;
  backdrop-filter: blur(8px);
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--gold-500);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gold-500);
}

.hero-b2b h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-b2b h1 span.gold-text {
  color: var(--gold-400);
  font-style: italic;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
  max-width: 620px;
  margin-bottom: 2rem;
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.hero-stat-label {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
}

/* Hero Media Card */
.hero-media-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-media-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

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

.hero-floating-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(6, 47, 61, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(198, 161, 91, 0.35);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-600);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-badge-text h4 {
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.hero-badge-text p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
  line-height: 1.3;
}

/* Inner Page Hero */
.page-hero {
  position: relative;
  padding-top: calc(var(--nav-height) + 3.5rem);
  padding-bottom: 4.5rem;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 50%, var(--sea-green-800) 100%);
  color: #FFFFFF;
  overflow: hidden;
}

.page-hero .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  mix-blend-mode: overlay;
}

.page-hero h1 {
  color: #FFFFFF;
  margin-bottom: 0.85rem;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.25rem;
}

.breadcrumb a {
  color: var(--gold-400);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   Section: Strengths & Why Choose Us
   ========================================================================== */
.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-alt {
  background-color: #FFFFFF;
}

.strengths-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.strength-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 2.4rem 2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  position: relative;
  overflow: hidden;
}

.strength-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-600) 0%, var(--teal-600) 100%);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.strength-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(198, 161, 91, 0.4);
}

.strength-card:hover::before {
  opacity: 1;
}

.strength-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--teal-50);
  border: 2px solid var(--teal-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sea-green-700);
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(10, 92, 70, 0.08);
  transition: transform var(--transition-fast), background-color var(--transition-fast);
}

.strength-card:hover .strength-icon {
  transform: scale(1.08);
  background: var(--navy-800);
  color: var(--gold-400);
  border-color: var(--navy-700);
}

.strength-card h3 {
  font-size: 1.35rem;
  color: var(--navy-800);
  margin-bottom: 0.6rem;
}

.strength-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.strength-bar {
  width: 36px;
  height: 2.5px;
  background: var(--gold-600);
  border-radius: 2px;
  margin-top: auto;
}

/* ==========================================================================
   Section: Split Layout (About / Logistics / Sourcing)
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split-content h2 {
  margin-bottom: 1rem;
}

.split-content p {
  margin-bottom: 1.25rem;
}

.focus-line {
  padding: 1rem 1.25rem;
  background: var(--teal-50);
  border-left: 3px solid var(--sea-green-700);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--sea-green-800);
  margin: 1.5rem 0;
}

.split-media {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.split-media img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.split-media:hover img {
  transform: scale(1.035);
}

/* ==========================================================================
   Section: Product Categories Carousel
   ========================================================================== */
.categories-section {
  padding: 5.5rem 0;
  background: linear-gradient(180deg, var(--bg-main) 0%, #FFFFFF 100%);
}

.sg-cat-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 2rem;
  user-select: none;
}

.sg-cat-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.45s var(--ease-smooth);
  will-change: transform;
}

.sg-cat-block {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 280px;
}

.sg-cat-inner {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.sg-cat-inner:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(198, 161, 91, 0.45);
}

.sg-cat-image-box {
  position: relative;
  height: 230px;
  overflow: hidden;
  background: var(--navy-900);
}

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

.sg-cat-inner:hover .sg-cat-image img {
  transform: scale(1.06);
}

.sg-cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6, 47, 61, 0.75) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 1rem;
}

.sg-cat-caption {
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.sg-cat-caption h3 {
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.sg-cat-caption h3 a {
  color: var(--navy-800);
}

.sg-cat-caption h3 a:hover {
  color: var(--sea-green-700);
}

.sg-cat-caption p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.sg-float-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--sea-green-700);
  transition: gap var(--transition-fast), color var(--transition-fast);
}

.sg-float-btn:hover {
  color: var(--gold-600);
  gap: 0.65rem;
}

.sg-cat-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2.2rem;
}

.sg-cat-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border-medium);
  transition: all var(--transition-fast);
}

.sg-cat-dots button.is-active {
  width: 32px;
  border-radius: var(--radius-pill);
  background: var(--navy-800);
}

/* ==========================================================================
   Section: Featured Product Cards Grid
   ========================================================================== */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
}

.seaweed-card,
.gjm-product-card,
.listing-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.seaweed-card:hover,
.gjm-product-card:hover,
.listing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(198, 161, 91, 0.4);
}

.seaweed-card-img,
.gjm-product-media,
.listing-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--navy-900);
}

.seaweed-card-img img,
.gjm-product-media img,
.listing-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.seaweed-card:hover .seaweed-card-img img,
.gjm-product-card:hover .gjm-product-media img,
.listing-card:hover .listing-card-img img {
  transform: scale(1.05);
}

.seaweed-card-body {
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.seaweed-card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.seaweed-card-body h3 a {
  color: var(--navy-800);
}

.seaweed-card-body h3 a:hover {
  color: var(--sea-green-700);
}

.seaweed-card-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.4rem;
  flex-grow: 1;
}

/* ==========================================================================
   Applications & Industries Served (Ultra-HD Vector & High-Res System)
   ========================================================================== */
.exact-app-ind-section {
  padding: 4.5rem 0 0;
  background: #FDFEFE;
  position: relative;
  overflow: hidden;
}

.exact-top-banner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3.5rem;
}

.exact-kicker {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0A5C46;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.exact-kicker .gold-line {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: #C6A15B;
}

.exact-main-heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  color: var(--navy-800);
  line-height: 1.15;
  margin-bottom: 1.1rem;
  letter-spacing: -0.01em;
}

.exact-subtitle {
  font-size: 1.05rem;
  color: #475569;
  max-width: 540px;
  line-height: 1.65;
  margin-bottom: 1.85rem;
}

.exact-trust-bar {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.75rem 1.4rem;
  background: #FFFFFF;
  border-radius: var(--radius-pill);
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 20px rgba(6, 47, 61, 0.05);
}

.exact-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--navy-800);
}

.exact-trust-item svg {
  width: 18px;
  height: 18px;
  color: #0A5C46;
}

.exact-divider {
  color: #CBD5E1;
  font-weight: 300;
}

.exact-hero-image-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(7, 59, 76, 0.08);
  height: 340px;
  background: #F8FAFC;
}

.exact-hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.exact-ocean-script {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 600;
  color: #073B4C;
  line-height: 1.2;
  text-align: right;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

/* 12 Application Cards Showcase */
.exact-app-showcase {
  margin-bottom: 4.5rem;
}

.exact-app-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  align-items: start;
}

.exact-step-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #C6A15B;
  display: block;
  margin-bottom: 0.35rem;
}

.exact-app-heading {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--navy-800);
  line-height: 1.2;
  margin-bottom: 0.85rem;
}

.exact-app-desc {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.exact-btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.35rem;
  background: #073B4C;
  color: #FFFFFF;
  border-radius: var(--radius-pill);
  font-size: 0.86rem;
  font-weight: 700;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.exact-btn-dark:hover {
  background: #0A5C46;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(7, 59, 76, 0.25);
  color: #FFFFFF;
}

.exact-app-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.exact-tile-card {
  background: #FFFFFF;
  border: 1.2px solid #E2E8F0;
  border-radius: 16px;
  padding: 0.85rem 1rem;
  box-shadow: 0 4px 16px rgba(6, 47, 61, 0.03);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  transition: all var(--transition-fast);
  cursor: pointer;
  text-decoration: none;
}

.exact-tile-card:hover {
  transform: translateY(-3px);
  border-color: #C6A15B;
  box-shadow: 0 10px 25px rgba(6, 47, 61, 0.08);
}

.exact-tile-left {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.exact-tile-icon-badge {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.exact-tile-title {
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--navy-800);
  line-height: 1.25;
  margin: 0;
}

.exact-tile-arrow {
  font-size: 0.82rem;
  font-weight: 700;
  color: #0A5C46;
  transition: transform var(--transition-fast);
}

.exact-tile-card:hover .exact-tile-arrow {
  transform: translateX(3px);
}

.exact-tile-thumb {
  width: 68px;
  height: 68px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  box-shadow: 0 2px 8px rgba(6, 47, 61, 0.04);
}

.exact-tile-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
  transition: transform var(--transition-fast);
}

.exact-tile-card:hover .exact-tile-thumb img {
  transform: scale(1.08);
}

/* Bottom Deep Navy Band: Industries Served */
.exact-ind-navy-band {
  background: #042530;
  color: #FFFFFF;
  padding: 4.5rem 0 5.5rem;
  position: relative;
  border-top-left-radius: 36px;
  border-top-right-radius: 36px;
}

.exact-navy-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}

.exact-ocean-photo-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  border: 1.5px solid rgba(198, 161, 91, 0.4);
  height: 400px;
  background: #042530;
}

.exact-ocean-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
  filter: brightness(0.98);
}

.exact-hex-row {
  position: absolute;
  bottom: 1.25rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  justify-content: center;
  gap: 0.6rem;
}

.exact-hex {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #C6A15B;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
  background: #000;
  transition: transform var(--transition-fast);
}

.exact-hex:hover {
  transform: scale(1.15);
}

.exact-hex-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exact-navy-head {
  margin-bottom: 2rem;
}

.exact-step-num-gold {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #C6A15B;
  display: block;
  margin-bottom: 0.25rem;
}

.exact-navy-title {
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.exact-navy-sub {
  font-size: 0.95rem;
  color: #94A3B8;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 520px;
}

.exact-btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border: 1px solid #C6A15B;
  border-radius: var(--radius-pill);
  color: #C6A15B;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.exact-btn-outline-gold:hover {
  background: #C6A15B;
  color: #073B4C;
}

.exact-nodes-matrix-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.exact-nodes-row-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem 0.85rem;
}

.exact-nodes-row-bottom {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem 0.65rem;
}

.exact-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}

.exact-node-gold-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(198, 161, 91, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C6A15B;
  background: rgba(198, 161, 91, 0.08);
  transition: all var(--transition-fast);
}

.exact-node:hover .exact-node-gold-circle {
  background: #C6A15B;
  color: #073B4C;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(198, 161, 91, 0.35);
}

.exact-node span {
  font-size: 0.76rem;
  color: #CBD5E1;
  line-height: 1.28;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .exact-top-banner,
  .exact-app-layout,
  .exact-navy-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .exact-app-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .exact-nodes-row-top {
    grid-template-columns: repeat(2, 1fr);
  }
  .exact-nodes-row-bottom {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .exact-app-grid {
    grid-template-columns: 1fr;
  }
  .exact-nodes-matrix {
    grid-template-columns: repeat(2, 1fr);
  }
}

.exact-navy-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: #FFFFFF;
  margin-bottom: 0.75rem;
}

.exact-navy-sub {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.exact-btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--gold-500);
  color: var(--gold-400);
  font-weight: 700;
  font-size: 0.88rem;
  transition: all var(--transition-fast);
}

.exact-btn-outline-gold:hover {
  background: var(--gold-500);
  color: #FFFFFF;
  box-shadow: var(--shadow-gold);
}

.exact-nodes-matrix {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

.exact-node {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  transition: all var(--transition-fast);
}

.exact-node:hover {
  background: rgba(198, 161, 91, 0.15);
  border-color: var(--gold-500);
  transform: translateX(4px);
}

.exact-node-gold-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(198, 161, 91, 0.2);
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.exact-node span {
  font-size: 0.88rem;
  font-weight: 600;
  color: #FFFFFF;
}

/* ==========================================================================
   Section: Sourcing & Global Trade Flow
   ========================================================================== */
.trade-banner {
  position: relative;
  padding: 6rem 0;
  color: #FFFFFF;
  background: var(--navy-900);
  overflow: hidden;
}

.trade-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

.trade-banner-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(6, 47, 61, 0.6) 0%, rgba(4, 35, 46, 0.95) 100%);
}

.trade-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}

.trade-banner-content h2 {
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.trade-banner-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
}

.flow-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin: 3rem 0;
}

.flow-node {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(198, 161, 91, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1.5rem 1.8rem;
  border-radius: var(--radius-md);
  min-width: 210px;
}

.flow-node.center {
  background: rgba(198, 161, 91, 0.15);
  border-color: var(--gold-500);
  transform: scale(1.05);
}

.flow-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 0.35rem;
}

.flow-node h3 {
  color: #FFFFFF;
  font-size: 1.25rem;
}

.flow-arrow {
  font-size: 1.8rem;
  color: var(--gold-500);
}

/* ==========================================================================
   Section: Documentation & Quality Matrix
   ========================================================================== */
.doc-grid, .why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.doc-card, .why-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2.2rem 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.doc-card:hover, .why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-500);
}

.doc-icon, .why-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-600);
  margin-bottom: 0.85rem;
}

.doc-card h3, .why-card h3 {
  font-size: 1.25rem;
  color: var(--navy-800);
  margin-bottom: 0.5rem;
}

.doc-card p, .why-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.note-box {
  margin-top: 2.5rem;
  padding: 1rem 1.5rem;
  background: var(--teal-50);
  border-radius: var(--radius-sm);
  border: 1px solid var(--teal-100);
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--sea-green-800);
}

/* ==========================================================================
   Section: CTA Band
   ========================================================================== */
.cta-band {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--sea-green-800) 100%);
  color: #FFFFFF;
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band h2 {
  color: #FFFFFF;
  margin-bottom: 0.75rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* ==========================================================================
   Product Detail Page Standard Layout
   ========================================================================== */
.exact-product-card-wrap {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.75rem);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

.exact-product-grid {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 3.5rem;
  align-items: start;
}

.exact-gallery-main {
  width: 100%;
  height: 380px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
}

.exact-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease, opacity 0.2s ease;
}

.exact-thumbs-row {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.exact-thumb {
  flex: 1;
  height: 78px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid #E2E8F0;
  cursor: pointer;
  display: block;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.exact-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.exact-thumb:hover {
  border-color: #0A5C46;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(10, 92, 70, 0.15);
}

.exact-thumb:hover img {
  transform: scale(1.05);
}

.exact-thumb.active {
  border: 2px solid #C6A15B !important;
  box-shadow: 0 0 0 2px rgba(198, 161, 91, 0.25);
  transform: none;
}

.exact-product-title {
  font-family: var(--font-display) !important;
  font-size: clamp(2rem, 3.2vw, 2.6rem) !important;
  font-weight: 700 !important;
  color: var(--navy-800) !important;
  margin-bottom: 0.85rem !important;
  line-height: 1.2 !important;
}

.exact-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.exact-badge-pill {
  background: var(--gold-50) !important;
  border: 1px solid var(--gold-400) !important;
  border-radius: var(--radius-pill) !important;
  padding: 0.35rem 0.95rem !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  color: var(--gold-800) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.4rem !important;
}

.exact-spec-table {
  width: 100%;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  margin: 1.5rem 0;
}

.exact-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border-light);
}

.exact-spec-row:last-child {
  border-bottom: none;
}

.exact-spec-label {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy-800);
}

.exact-spec-val {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: right;
}

.exact-actions-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.btn-exact-quote {
  background: var(--gold-600) !important;
  color: #FFFFFF !important;
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  border-radius: var(--radius-sm) !important;
  padding: 0.85rem 0.6rem !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.45rem !important;
  transition: all var(--transition-fast) !important;
}

.btn-exact-quote:hover {
  background: var(--gold-700) !important;
  transform: translateY(-2px) !important;
  box-shadow: var(--shadow-gold) !important;
}

.btn-exact-whatsapp {
  background: #10B981 !important;
  color: #FFFFFF !important;
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  border-radius: var(--radius-sm) !important;
  padding: 0.85rem 0.6rem !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.45rem !important;
  transition: all var(--transition-fast) !important;
}

.btn-exact-whatsapp:hover {
  background: #059669 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3) !important;
}

.btn-exact-download {
  background: var(--navy-800) !important;
  color: #FFFFFF !important;
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  border-radius: var(--radius-sm) !important;
  padding: 0.85rem 0.6rem !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.45rem !important;
  transition: all var(--transition-fast) !important;
}

.btn-exact-download:hover {
  background: var(--navy-700) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 14px rgba(6, 47, 61, 0.3) !important;
}

.exact-product-desc-box {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px dashed var(--border-medium);
}

.exact-desc-title {
  font-size: 1.25rem;
  color: var(--navy-800);
  margin-bottom: 0.5rem;
}

.exact-desc-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Floating Quick Actions */
.exact-floating-actions {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 999;
}

.floating-circle-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: transform var(--transition-fast), background-color var(--transition-fast);
}

.floating-wa-btn {
  background: #25D366;
}
.floating-wa-btn:hover {
  transform: scale(1.1);
  background: #1EBE5D;
}

.floating-dl-btn {
  background: var(--gold-600);
}
.floating-dl-btn:hover {
  transform: scale(1.1);
  background: var(--gold-700);
}

/* ==========================================================================
   Global Search Modal & Product Inquiry Modal
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 35, 46, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-fast), visibility var(--transition-fast);
  z-index: 2000;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-dialog {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 680px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  transform: scale(0.95) translateY(10px);
  transition: transform var(--transition-base);
  position: relative;
}

.modal-overlay.open .modal-dialog {
  transform: scale(1) translateY(0);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid var(--border-light);
}

.modal-header h3 {
  font-size: 1.35rem;
  color: var(--navy-800);
}

.modal-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1.35rem;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background: var(--bg-alt);
  color: var(--navy-800);
}

.modal-body {
  padding: 1.75rem;
  max-height: 75vh;
  overflow-y: auto;
}

/* Search Modal Specifics */
.search-input-wrap {
  position: relative;
  margin-bottom: 1.5rem;
}

.search-input-wrap input {
  width: 100%;
  padding: 1rem 1.25rem 1rem 3.2rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-medium);
  font-size: 1.05rem;
  transition: border-color var(--transition-fast);
}

.search-input-wrap input:focus {
  border-color: var(--navy-700);
}

.search-input-icon {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  pointer-events: none;
}

.search-results-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  transition: all var(--transition-fast);
}

.search-result-item:hover {
  background: var(--teal-50);
  border-color: var(--gold-500);
  transform: translateX(4px);
}

.search-result-thumb {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-xs);
  overflow: hidden;
  flex-shrink: 0;
}

.search-result-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.search-result-info h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: 2px;
}

.search-result-info p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Contact Page & Form Layout
   ========================================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-info-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 2.5rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.contact-info-card h2 {
  font-size: 1.85rem;
  margin-bottom: 0.75rem;
}

.contact-info-card > p {
  margin-bottom: 2rem;
}

.info-item-row {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.info-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal-50);
  color: var(--sea-green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-item-text strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 2px;
}

.info-item-text span,
.info-item-text a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy-800);
}

.contact-form-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 2.5rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group.full {
  grid-column: span 2;
}

.form-group label {
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-xs);
  border: 1.5px solid var(--border-light);
  font-size: 0.92rem;
  background: var(--bg-main);
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  background: #FFFFFF;
  border-color: var(--navy-700);
  box-shadow: 0 0 0 3px rgba(7, 59, 76, 0.08);
}

.form-message {
  padding: 1rem;
  border-radius: var(--radius-xs);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 1rem;
  display: none;
}

.form-message.success {
  display: block;
  background: #ECFDF5;
  color: #065F46;
  border: 1px solid #A7F3D0;
}

.form-message.error {
  display: block;
  background: #FEF2F2;
  color: #991B1B;
  border: 1px solid #FECACA;
}

/* ==========================================================================
   Product Category Filter Tabs
   ========================================================================== */
.product-filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 2.75rem;
}

.product-filter-btn {
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-pill);
  font-size: 0.86rem;
  font-weight: 700;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  color: var(--navy-800);
  transition: all var(--transition-fast);
}

.product-filter-btn:hover,
.product-filter-btn.active,
.product-filter-btn.is-active {
  background: var(--navy-800);
  color: #FFFFFF;
  border-color: var(--navy-800);
  box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   Footer Component
   ========================================================================== */
.site-footer {
  background: var(--navy-950);
  color: #FFFFFF;
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--border-gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-tagline {
  color: var(--gold-400) !important;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--gold-500);
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  margin-bottom: 0.6rem;
  transition: all var(--transition-fast);
}

.footer-col a:hover {
  color: var(--gold-400);
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Screen-reader only (SEO h1) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* FAQ Section (AEO) */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #D2E0E3;
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(6, 47, 61, 0.04);
}

.faq-item summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #073B4C;
  padding: 1.25rem 1.5rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--gold-500, #C6A15B);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  content: "\2212";
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: #5F7378;
  line-height: 1.65;
  font-size: 0.95rem;
  margin: 0;
}

.faq-answer a {
  color: #073B4C;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1080px) {
  .hero-grid,
  .exact-top-banner,
  .exact-navy-grid,
  .split,
  .contact-layout,
  .exact-product-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .exact-app-layout {
    grid-template-columns: 1fr;
  }

  .exact-app-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .exact-app-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .exact-nodes-matrix {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-group.full {
    grid-column: span 1;
  }

  .exact-actions-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .flow-track {
    flex-direction: column;
  }
  .flow-arrow {
    transform: rotate(90deg);
  }
}

@media (max-width: 480px) {
  .exact-app-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Product Detail Extended Sections (Technical Specs, Storage & Traceability)
   ========================================================================== */
.exact-tech-specs-card,
.exact-storage-bar,
.exact-trace-section {
  width: 100%;
  max-width: 1120px;
  margin: 2.2rem auto;
}

.exact-storage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.exact-storage-col {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.exact-storage-col + .exact-storage-col {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding-left: 1.5rem;
}

.exact-trace-step-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.85rem;
}

@media (max-width: 992px) {
  .exact-storage-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .exact-storage-col + .exact-storage-col {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-left: 0;
    padding-top: 1.25rem;
  }
  .exact-trace-step-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 580px) {
  .exact-trace-step-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================================================
   APPLICATIONS & INDUSTRIES SERVED SECTION (Ultra Crisp Native Component)
   ========================================================================== */
.sg-app-ind-card {
  width: 100%;
  background: #FFFFFF;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 45px rgba(6, 47, 61, 0.06);
  border: 1px solid #E5EBEF;
  font-family: 'Manrope', sans-serif;
}

.sg-app-top-hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 2rem;
  padding: clamp(1.8rem, 3.5vw, 3rem) clamp(1.5rem, 3.5vw, 3rem);
  background: linear-gradient(180deg, #F8FAFB 0%, #FFFFFF 100%);
  position: relative;
}

.sg-app-hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.1rem, 3.4vw, 3rem);
  font-weight: 700;
  color: #073B4C;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.sg-app-hero-sub {
  font-size: clamp(0.92rem, 1.15vw, 1.05rem);
  color: #4B5563;
  line-height: 1.55;
  max-width: 540px;
  margin-bottom: 1.5rem;
}

.sg-app-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
}

.sg-app-pill-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: #073B4C;
}

.sg-app-pill-item svg {
  color: #0A5C46;
}

.sg-app-hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.sg-app-hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 380px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(6, 47, 61, 0.1);
}

.sg-app-hero-img-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.sg-app-floating-script {
  position: absolute;
  top: -15px;
  right: 15px;
  font-family: 'Cormorant Garamond', Georgia, cursive, serif;
  font-style: italic;
  font-weight: 600;
  font-size: 1.35rem;
  color: #0A5C46;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  padding: 0.35rem 1rem;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(6, 47, 61, 0.08);
  border: 1px solid rgba(10, 92, 70, 0.15);
  pointer-events: none;
  z-index: 2;
}

/* SECTION 01: APPLICATIONS */
.sg-app-section-body {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2.2rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid #EEF2F5;
  background: #FFFFFF;
}

.sg-app-sidebar-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.sg-app-sec-num {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #C6A15B;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.4rem;
}

.sg-app-sec-num::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 2px;
  background: #C6A15B;
}

.sg-app-sec-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: #073B4C;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.sg-app-sec-desc {
  font-size: 0.88rem;
  color: #4B5563;
  line-height: 1.55;
  margin-bottom: 1.5rem;
}

.sg-app-btn-explore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background: #062F3D;
  color: #FFFFFF !important;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 0.65rem 1.25rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all var(--transition-fast);
  width: fit-content;
}

.sg-app-btn-explore:hover {
  background: #0A5C46;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(10, 92, 70, 0.25);
}

.sg-app-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.sg-app-item-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FFFFFF;
  border: 1px solid #E7EDF0;
  border-radius: 12px;
  padding: 0.55rem 0.65rem 0.55rem 0.75rem;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(6, 47, 61, 0.02);
  gap: 0.4rem;
}

.sg-app-item-card:hover {
  border-color: #0A5C46;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(6, 47, 61, 0.08);
}

.sg-app-item-card:hover .sg-app-arrow {
  transform: translateX(3px);
  color: #0A5C46;
}

.sg-app-item-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.sg-app-icon-wrap {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #F1F6F7;
  color: #0A5C46;
}

.sg-app-name-row {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.sg-app-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1F2937;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sg-app-arrow {
  font-size: 0.8rem;
  color: #9CA3AF;
  transition: transform 0.2s ease, color 0.2s ease;
  line-height: 1;
}

.sg-app-item-img {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #EAEFF2;
}

.sg-app-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* SECTION 02: INDUSTRIES SERVED (Dark Teal Bottom Banner) */
.sg-ind-bottom-banner {
  background: linear-gradient(135deg, #062F3D 0%, #031D26 100%);
  padding: clamp(1.5rem, 2.5vw, 2.2rem) clamp(1.5rem, 3vw, 2.5rem);
  display: grid;
  grid-template-columns: 240px 1.1fr 1.35fr;
  align-items: center;
  gap: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.sg-ind-underwater-wrap {
  position: relative;
  width: 100%;
  height: 115px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.sg-ind-underwater-wrap .underwater-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sg-ind-hex-row {
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 5px;
  z-index: 2;
}

.sg-ind-hex-bubble {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
  background: #062F3D;
  transition: transform 0.25s ease;
}

.sg-ind-hex-bubble:hover {
  transform: scale(1.15);
}

.sg-ind-hex-bubble img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sg-ind-left-info {
  display: flex;
  flex-direction: column;
}

.sg-ind-sec-num {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #D8A74A;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.4rem;
}

.sg-ind-sec-num::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 2px;
  background: #D8A74A;
}

.sg-ind-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.85rem, 2.5vw, 2.4rem);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 0.6rem;
}

.sg-ind-sub {
  font-size: 0.88rem;
  color: #CBD5E1;
  line-height: 1.55;
  max-width: 440px;
}

.sg-ind-grid-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.sg-ind-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.65rem;
  text-decoration: none;
  padding: 0.75rem 0.4rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.25s ease;
}

.sg-ind-item:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(216, 167, 74, 0.4);
  transform: translateY(-2px);
}

.sg-ind-icon-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(216, 167, 74, 0.12);
  border: 1px solid rgba(216, 167, 74, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D8A74A;
  transition: all 0.25s ease;
}

.sg-ind-item:hover .sg-ind-icon-circle {
  background: #D8A74A;
  color: #062F3D;
  transform: scale(1.06);
}

.sg-ind-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.3;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1200px) {
  .sg-ind-bottom-banner {
    grid-template-columns: 1fr 1fr;
  }
  .sg-ind-underwater-wrap {
    display: none;
  }
  .sg-app-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .sg-app-top-hero {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .sg-app-hero-visual {
    justify-content: flex-start;
  }
  .sg-app-section-body {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .sg-app-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .sg-ind-bottom-banner {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .sg-ind-grid-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .sg-app-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sg-ind-grid-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .sg-app-cards-grid {
    grid-template-columns: 1fr;
  }
  .sg-app-pills-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
  }
}


