/* ============================================================
   components.css — mineralslanka.com
   Shared UI components
   Max Minerals Pvt. Ltd. | IAMUVIN
   ============================================================ */

/* === NAVIGATION === */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow 300ms cubic-bezier(0.16, 1, 0.3, 1),
              background 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Blur applied to container, not nav root — prevents stacking context trapping mobile-menu */
.nav.scrolled {
  box-shadow: 0 1px 24px rgba(26, 82, 118, 0.1),
              0 0 0 1px rgba(26, 82, 118, 0.04);
  border-bottom-color: transparent;
}

.nav-accent-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 50%, var(--color-accent) 100%);
  background-size: 200% 100%;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--container-px);
}

/* Blur on nav root via pseudo-element — avoids stacking context trapping mobile-menu */
.nav::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(245, 248, 252, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  z-index: -1;
  transition: background 300ms ease;
}

.nav.scrolled::after {
  background: rgba(245, 248, 252, 0.97);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 1.5rem;
  position: relative;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.025em;
  text-decoration: none;
}

@media (min-width: 1280px) {
  .nav-logo-text {
    font-size: 1.625rem;
  }
}

.nav-logo-text span {
  color: var(--color-accent);
}

.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  list-style: none;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
  z-index: 1;
}

.nav-link {
  display: block;
  padding: 0.5rem 0.875rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-body);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: color 180ms ease, background 180ms ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.875rem;
  right: 0.875rem;
  height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 200ms cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

/* Language Switcher */

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.lang-btn {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  background: none;
  border: none;
  padding: 0.25rem 0.375rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease;
}

.lang-btn:hover {
  color: var(--color-primary);
  background: var(--color-primary-50);
}

.lang-btn.lang-active {
  color: var(--color-primary);
  font-weight: 700;
}

.lang-sep {
  color: var(--border-default);
  font-size: 0.75rem;
  user-select: none;
}

/* Nav CTA */

.nav-cta {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  min-height: 40px;
}

/* Mobile Hamburger */

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  z-index: 2;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 250ms ease;
}

.nav-hamburger:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* Mobile Menu Drawer */

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  visibility: hidden;
}

.mobile-menu.is-open {
  pointer-events: auto;
  visibility: visible;
}

.mobile-menu-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 33, 55, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 300ms ease;
}

.mobile-menu.is-open .mobile-menu-overlay {
  opacity: 1;
}

.mobile-menu-drawer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 340px;
  max-width: 88vw;
  background: var(--bg-card);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: -16px 0 48px rgba(13, 33, 55, 0.2);
}

.mobile-menu.is-open .mobile-menu-drawer {
  transform: translateX(0);
}

/* Close button */
.mobile-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  align-self: flex-end;
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  font-size: 1.125rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
  transition: background 180ms ease, color 180ms ease;
  -webkit-tap-highlight-color: transparent;
  margin-bottom: var(--space-6);
}

.mobile-menu-close:hover {
  background: var(--color-primary-50);
  color: var(--text-primary);
}

/* Navigation links */
.mobile-menu-drawer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  margin-bottom: var(--space-6);
}

.mobile-menu-drawer ul a {
  display: flex;
  align-items: center;
  padding: var(--space-4) var(--space-4);
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.mobile-menu-drawer ul a:hover {
  background: var(--bg-surface);
  color: var(--color-primary);
  transform: translateX(4px);
}

.mobile-menu-drawer ul a.active {
  background: var(--color-primary-50);
  color: var(--color-primary);
}

/* Language switcher */
.mobile-menu-lang {
  display: flex;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.mobile-menu-lang a {
  flex: 1;
  text-align: center;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  padding: var(--space-3);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-default);
  background: var(--bg-surface);
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.mobile-menu-lang a:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
  background: var(--color-primary-50);
}

/* CTA button at bottom */
.mobile-menu-drawer .btn {
  margin-top: auto;
}

.w-full {
  width: 100%;
}

/* Nav Mobile Breakpoint */

@media (max-width: 1023px) {
  .nav-links,
  .nav-actions {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-inner {
    height: 64px;
  }

  .nav-logo-text {
    font-size: 1.375rem;
  }

}


/* === BUTTONS === */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 200ms cubic-bezier(0.16, 1, 0.3, 1);
  min-height: 48px;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  line-height: 1;
}

.btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: var(--color-white);
  box-shadow: 0 2px 8px rgba(26, 82, 118, 0.25),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  transition: left 0ms;
}

.btn-primary:hover::before {
  left: 120%;
  transition: left 500ms ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-primary-hover) 0%, var(--color-primary) 100%);
  color: var(--color-white);
}

.btn-primary:active {
  background: var(--color-primary-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
  background: var(--color-primary-50);
  border-color: var(--color-primary-hover);
  color: var(--color-primary-hover);
}

.btn-secondary:active {
  background: var(--color-primary-100);
}

.btn-on-dark {
  background: var(--color-white) !important;
  color: var(--color-primary) !important;
  box-shadow: 0 2px 12px rgba(255, 255, 255, 0.15);
  font-weight: 700;
}

.btn-on-dark::before {
  display: none !important;
}

.btn-on-dark:hover {
  background: var(--color-white) !important;
  color: var(--color-primary-hover) !important;
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.2);
}

.btn-on-dark:active {
  background: var(--color-primary-50) !important;
  color: var(--color-primary) !important;
}

.btn-on-dark:active {
  background: var(--color-primary-100);
}

.btn-accent {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 1px 3px rgba(26, 188, 156, 0.25);
}

.btn-accent:hover {
  background: var(--color-accent-hover);
  color: var(--color-white);
}

.btn-accent:active {
  background: var(--color-accent);
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  transition: gap 180ms ease, color 180ms ease;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.btn-text:hover {
  gap: 0.625rem;
  color: var(--color-primary-hover);
}

.btn-text:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* Button sizes */

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  min-height: 36px;
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
  min-height: 56px;
}


/* === HERO === */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: 84px;
  padding-bottom: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 33, 55, 0.82) 0%, rgba(26, 82, 118, 0.65) 100%);
}

/* Premium gradient mesh — visible when hero image is absent */
.hero-mesh {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--bg-dark);
}

.hero-mesh::before,
.hero-mesh::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
  animation: mesh-drift 25s ease-in-out infinite;
}

.hero-mesh::before {
  width: 50vw;
  height: 50vw;
  top: -15%;
  left: -10%;
  background: radial-gradient(circle, var(--color-primary-light) 0%, transparent 70%);
}

.hero-mesh::after {
  width: 45vw;
  height: 45vw;
  bottom: -10%;
  right: -5%;
  background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
  animation-delay: -12s;
  animation-direction: reverse;
}

@keyframes mesh-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(4%, -3%) scale(1.05); }
  66%      { transform: translate(-3%, 4%) scale(0.96); }
}

/* Subtle grid pattern overlay */
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  z-index: var(--z-base);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 0%, transparent 100%);
  pointer-events: none;
}

/* Bottom fade for smooth section transition */
.hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--bg-dark));
  pointer-events: none;
  z-index: var(--z-base);
}

@media (prefers-reduced-motion: reduce) {
  .hero-mesh::before,
  .hero-mesh::after {
    animation: none;
  }
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: var(--z-base);
  pointer-events: none;
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: var(--z-content);
  flex: 1;
  display: flex;
  align-items: center;
  padding: var(--space-12) 0;
}

.hero-content .container {
  width: 100%;
}

/* Hero split layout — content left, media right */
.hero-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hero-media {
    margin-left: calc(-0.5 * var(--container-px));
    margin-right: calc(-0.5 * var(--container-px));
  }

  .hero-video-card {
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
}

@media (min-width: 1024px) {
  .hero-split {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
  }

  .hero-media {
    margin: 0;
  }
}

@media (min-width: 1280px) {
  .hero-split {
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-20);
  }
}

.hero-inner {
  max-width: 640px;
}

/* === HERO VIDEO CARD === */

.hero-media {
  position: relative;
}

.hero-video-card {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.3),
    0 8px 24px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 400ms ease;
}

.hero-video-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.35),
    0 12px 32px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-video-frame {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-dark-alt);
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Fallback when video file is absent */
.hero-video-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(26, 82, 118, 0.4) 0%, rgba(10, 28, 46, 0.8) 100%);
  overflow: hidden;
}

.hvf-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.hvf-orb-1 {
  width: 200px;
  height: 200px;
  top: -20%;
  left: -10%;
  background: radial-gradient(circle, var(--color-primary-light) 0%, transparent 70%);
  opacity: 0.4;
  animation: mesh-drift 18s ease-in-out infinite;
}

.hvf-orb-2 {
  width: 160px;
  height: 160px;
  bottom: -15%;
  right: -5%;
  background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
  opacity: 0.3;
  animation: mesh-drift 22s ease-in-out infinite reverse;
}

/* When video loads, hide fallback */
.hero-video:not([src=""]) + .hero-video-fallback {
  display: none;
}

/* Hide native video controls */
.hero-video::-webkit-media-controls {
  display: none !important;
}

.hero-video::-webkit-media-controls-enclosure {
  display: none !important;
}

/* Video caption bar */
.hero-video-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-3) var(--space-5);
  background: rgba(10, 28, 46, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-video-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(232, 244, 253, 0.8);
  letter-spacing: 0.02em;
}

.hv-pulse {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 0 rgba(26, 188, 156, 0.4);
  animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(26, 188, 156, 0.4); }
  70%  { box-shadow: 0 0 0 8px rgba(26, 188, 156, 0); }
  100% { box-shadow: 0 0 0 0 rgba(26, 188, 156, 0); }
}

.hero-video-duration {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(232, 244, 253, 0.5);
  font-variant-numeric: tabular-nums;
}

/* Floating stat cards around video */
.hero-float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-5);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  display: none;
}

@media (min-width: 1024px) {
  .hero-float-card {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
  }
}

.hfc-value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-white);
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
}

.hfc-label {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  color: rgba(232, 244, 253, 0.5);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hfc-purity {
  top: -12px;
  right: -16px;
}

.hfc-purity .hfc-value {
  color: var(--color-accent);
}

.hfc-capacity {
  bottom: 48px;
  left: -20px;
}

@media (min-width: 1280px) {
  .hfc-purity {
    top: -16px;
    right: -24px;
  }

  .hfc-capacity {
    bottom: 56px;
    left: -28px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hv-pulse {
    animation: none;
  }

  .hvf-orb {
    animation: none;
  }

  .hero-video-card:hover {
    transform: none;
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-6);
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--color-accent);
  opacity: 0.6;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-6);
}

.hero-title .word {
  display: inline-block;
}

.hero-accent {
  color: var(--color-accent);
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(1.0625rem, 1.8vw, 1.25rem);
  color: rgba(232, 244, 253, 0.75);
  margin-bottom: var(--space-10);
  max-width: 540px;
  letter-spacing: 0.01em;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: 0;
}

.btn-hero-ghost {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.35);
  transition: background 200ms cubic-bezier(0.16, 1, 0.3, 1),
              border-color 200ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 150ms cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 200ms ease;
}

.btn-hero-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.1);
}

.btn-hero-ghost:active {
  transform: translateY(0) scale(0.98);
  transition-duration: 80ms;
}

/* Trust bar — anchored to hero bottom */
.hero-trust-wrap {
  position: relative;
  z-index: var(--z-content);
  padding: 0 0 var(--space-8);
}

.hero-trust {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  padding: var(--space-5) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(232, 244, 253, 0.6);
  padding: var(--space-2) 0;
  padding-right: var(--space-8);
  margin-right: var(--space-8);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-trust-item:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}

.hero-trust-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--color-accent);
  opacity: 0.5;
}

@media (max-width: 767px) {
  .hero {
    padding-top: 68px;
    min-height: auto;
  }

  .hero-content {
    text-align: center;
    padding: var(--space-16) 0 var(--space-6);
  }

  .hero-inner {
    max-width: none;
  }

  .hero-eyebrow::before {
    display: none;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-actions .btn-hero-ghost {
    display: none;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-split {
    gap: var(--space-10);
  }

  .hero-media {
    margin-left: calc(-1 * var(--container-px));
    margin-right: calc(-1 * var(--container-px));
  }

  .hero-video-card {
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  .hero-trust-wrap {
    padding-bottom: var(--space-6);
  }

  .hero-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3) var(--space-4);
    border-top: none;
    padding-top: 0;
  }

  .hero-trust-item {
    padding-right: 0;
    margin-right: 0;
    border-right: none;
    font-size: var(--text-xs);
    white-space: nowrap;
  }
}


/* Page Hero (inner pages — shorter than homepage) */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 84px;
  background: var(--bg-dark);
}

.page-hero .hero-bg,
.page-hero.hero-bg {
  position: absolute;
  inset: 0;
}

/* Mesh fallback for page heroes — visible when no hero image */
.page-hero .hero-mesh {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--bg-dark);
}

.page-hero .hero-mesh::before {
  content: '';
  position: absolute;
  width: 50vw;
  height: 50vw;
  top: -30%;
  right: -10%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
  filter: blur(100px);
  opacity: 0.2;
}

.page-hero .hero-mesh::after {
  content: '';
  position: absolute;
  width: 40vw;
  height: 40vw;
  bottom: -20%;
  left: -5%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
  filter: blur(80px);
  opacity: 0.25;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 33, 55, 0.82) 0%, rgba(26, 82, 118, 0.65) 100%);
}

.page-hero .hero-content {
  position: relative;
  z-index: var(--z-base);
  padding: var(--space-16) 0;
}

@media (max-width: 767px) {
  .page-hero {
    min-height: 40vh;
    padding-top: 68px;
  }

  .page-hero .hero-content {
    padding: var(--space-10) 0;
    text-align: center;
  }
}


/* === PRODUCT DETAIL === */

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: start;
}

.product-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: auto;
  display: block;
}

.product-specs {
  display: flex;
  flex-direction: column;
  gap: 0;
}

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

.product-spec-row:first-child {
  border-top: 1px solid var(--border-light);
}

.product-spec-label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-body);
}

.product-spec-value {
  font-family: var(--font-body);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: var(--color-primary);
}

.product-apps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: var(--space-4) 0 var(--space-6);
}

.product-section-label {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text-primary);
  margin-top: var(--space-6);
  margin-bottom: var(--space-3);
}

.product-desc {
  color: var(--text-body);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  margin-bottom: var(--space-6);
  max-width: none;
}

.product-actions {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
}


/* === COMPOSITION TABLE === */

/* Composition card — compact data display */
.comp-card {
  max-width: 520px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(26, 82, 118, 0.06);
}

.comp-highlight {
  background: var(--bg-dark);
  padding: var(--space-8) var(--space-6);
  text-align: center;
}

.comp-highlight-label {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-2);
}

.comp-highlight-value {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.03em;
  line-height: 1;
}

.comp-rows {
  padding: var(--space-2) 0;
}

.comp-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-3) var(--space-6);
  transition: background 150ms ease;
}

.comp-row:hover {
  background: var(--color-primary-50);
}

.comp-param {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-body);
}

.comp-val {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-primary);
  font-variant-numeric: tabular-nums;
}

.comp-footer {
  padding: var(--space-4) var(--space-6);
  border-top: 1px solid var(--border-light);
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-align: center;
}

@media (max-width: 480px) {
  .comp-row {
    padding: var(--space-3) var(--space-4);
  }

  .comp-highlight {
    padding: var(--space-6) var(--space-4);
  }
}


/* === PACKAGING CARDS === */

.pack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.pack-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-align: center;
}

.pack-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}

.pack-card p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  max-width: none;
}

@media (max-width: 767px) {
  .pack-grid {
    grid-template-columns: 1fr;
  }
}


/* === CARDS === */

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.card-image {
  overflow: hidden;
  background: var(--bg-surface);
  aspect-ratio: 3/2;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body {
  padding: var(--space-6) var(--space-6) var(--space-8);
}

.card-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold);
  background: var(--color-gold-50);
  border: 1px solid rgba(183, 149, 11, 0.25);
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-3);
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-1);
}

.card-subtitle {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-4);
  max-width: none;
}

.card-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  padding: var(--space-4) 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  margin-bottom: var(--space-4);
}

.spec-value {
  display: block;
  font-family: var(--font-body);
  font-variant-numeric: tabular-nums;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.125rem;
}

.spec-label {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.card-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: var(--space-5);
}

.pill {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--color-primary);
  background: var(--color-primary-50);
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-full);
}

.card-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}


/* === STATS === */

.stats-section {
  background: var(--bg-dark);
  padding: var(--space-16) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.stat-item {
  text-align: center;
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-dark);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-white);
  font-variant-numeric: tabular-nums;
  margin-bottom: var(--space-2);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.06em;
  margin-bottom: var(--space-2);
}

.stat-desc {
  font-size: 0.8125rem;
  color: var(--text-inverse-muted);
  line-height: 1.4;
}

@media (max-width: 767px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .stats-section {
    padding: var(--space-12) 0;
  }
}

/* 3-column stats variant (process page capacity) */
.process-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .process-stats-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
    max-width: 360px;
  }
}


/* === WHY SRI LANKA === */

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: start;
}

.why-content p {
  margin-bottom: var(--space-4);
}

.data-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.data-card-header {
  padding: var(--space-6) var(--space-6) var(--space-4);
}

.data-card-header h3 {
  font-size: var(--text-xl);
  margin-top: var(--space-1);
}

.data-card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-3) var(--space-6);
  border-top: 1px solid var(--border-light);
}

.data-card-row--hero {
  background: var(--color-primary-50);
}

.data-card-row--hero .data-card-value {
  font-size: 1.5rem;
  color: var(--color-primary);
}

.data-card-label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-body);
}

.data-card-value {
  font-family: var(--font-body);
  font-variant-numeric: tabular-nums;
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--text-primary);
}

.data-card-footer {
  padding: var(--space-4) var(--space-6);
  border-top: 1px solid var(--border-light);
}

@media (max-width: 767px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
}


/* === INDUSTRIES === */

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.industry-cell {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}

.industry-icon {
  width: 40px;
  height: 40px;
  margin-bottom: var(--space-3);
}

.industry-icon svg {
  width: 40px;
  height: 40px;
}

.industry-name {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-1);
}

.industry-desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.5;
  max-width: none;
}

@media (max-width: 1023px) {
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }

  .industry-cell {
    padding: var(--space-4);
  }
}


/* === PROCESS TIMELINE === */

.process-timeline {
  position: relative;
  padding-left: var(--space-12);
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-default);
}

.process-step {
  position: relative;
  padding-bottom: var(--space-6);
  display: flex;
  gap: var(--space-4);
}

.process-step:last-child {
  padding-bottom: 0;
}

.process-num {
  position: absolute;
  left: calc(-1 * var(--space-12) + 8px);
  width: 26px;
  height: 26px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  z-index: var(--z-base);
}

.process-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-1);
}

.process-body p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  max-width: 50ch;
}

@media (max-width: 767px) {
  .process-timeline {
    padding-left: var(--space-10);
  }

  .process-num {
    left: calc(-1 * var(--space-10) + 6px);
    width: 22px;
    height: 22px;
    font-size: 0.625rem;
  }

  .process-timeline::before {
    left: 16px;
  }
}


/* === PROCESS CARDS (homepage — 3-col grid) === */

.process-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.process-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6) var(--space-6);
  display: flex;
  flex-direction: column;
  transition: border-color 300ms ease, box-shadow 300ms ease;
}

.process-card:hover {
  border-color: var(--border-medium);
  box-shadow: 0 8px 24px rgba(26, 82, 118, 0.08);
}

.process-card-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary-50);
  line-height: 1;
  margin-bottom: var(--space-4);
  letter-spacing: -0.03em;
}

.process-card:hover .process-card-num {
  color: var(--color-accent);
  transition: color 300ms ease;
}

.process-card-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.process-card-desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: none;
  flex: 1;
}

.process-card-arrow {
  display: block;
  margin-top: var(--space-4);
  font-size: 1.25rem;
  color: var(--border-medium);
  transition: color 200ms ease, transform 200ms ease;
}

.process-card:hover .process-card-arrow {
  color: var(--color-accent);
  transform: translateX(4px);
}

/* Final card — same style, no dark override */

.process-card-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-4);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.02em;
}

/* Responsive */
@media (max-width: 1023px) {
  .process-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .process-cards {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .process-card {
    padding: var(--space-6) var(--space-5) var(--space-5);
  }

  .process-card-num {
    font-size: 2rem;
    margin-bottom: var(--space-3);
  }
}


/* === STAGE DETAIL (process.html) === */

.stage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.stage-grid.stage-reverse {
  direction: rtl;
}

.stage-grid.stage-reverse > * {
  direction: ltr;
}

.stage-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--color-primary-100);
  line-height: 1;
  margin-bottom: var(--space-2);
  letter-spacing: -0.03em;
}

.stage-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-surface) 0%, var(--color-primary-50) 100%);
  min-height: 240px;
}

.stage-image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 767px) {
  .stage-grid,
  .stage-grid.stage-reverse {
    grid-template-columns: 1fr;
    gap: var(--space-6);
    direction: ltr;
  }

  .stage-number {
    font-size: 3rem;
  }
}

/* === SUPPLY CHAIN GRID === */

.sc-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
  max-width: 1000px;
  margin: 0 auto;
}

.sc-card {
  width: calc(25% - var(--space-4));
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  position: relative;
  transition: border-color 250ms ease, box-shadow 250ms ease;
}

.sc-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 8px 24px rgba(26, 82, 118, 0.08);
}

.sc-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-4);
}

.sc-card-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary-50);
  line-height: 1;
  letter-spacing: -0.03em;
}

.sc-card:hover .sc-card-num {
  color: var(--color-accent);
  transition: color 250ms ease;
}

.sc-card-icon {
  width: 28px;
  height: 28px;
  color: var(--color-primary);
  opacity: 0.4;
}

.sc-card-name {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.sc-card-detail {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.5;
  max-width: none;
}

/* Final card — same style, no dark override */

@media (max-width: 1023px) {
  .sc-card {
    width: calc(50% - var(--space-4));
  }
}

@media (max-width: 480px) {
  .sc-card {
    width: 100%;
    padding: var(--space-5);
  }

  .sc-grid {
    gap: var(--space-3);
  }
}


/* === PHOTO GALLERY (Bento Grid) === */

.gallery-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: var(--space-3);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-surface);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

/* Wide items span 2 columns */
.gallery-item--wide {
  grid-column: span 2;
}

/* Tall items span 2 rows */
.gallery-item--tall {
  grid-row: span 2;
}

/* Caption overlay */
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-4) var(--space-5);
  background: linear-gradient(to top, rgba(13, 33, 55, 0.85) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 300ms ease, transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

.gallery-tag {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.gallery-label {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-white);
}

@media (max-width: 1023px) {
  .gallery-bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
    gap: var(--space-3);
  }
}

@media (max-width: 640px) {
  .gallery-bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }

  .gallery-item--wide {
    grid-column: span 2;
  }

  .gallery-item--tall {
    grid-row: span 1;
  }

  .gallery-caption {
    opacity: 1;
    transform: none;
    padding: var(--space-3);
  }

  .gallery-item {
    border-radius: var(--radius-md);
  }
}


/* === QUALITY SNAPSHOT === */

.quality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.quality-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.quality-image img {
  width: 100%;
  height: auto;
  display: block;
}

.quality-points {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  margin-top: var(--space-6);
}

.quality-point {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
}

.quality-point-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  margin-top: 2px;
}

.quality-point-icon svg {
  width: 32px;
  height: 32px;
}

.quality-point h4 {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.125rem;
}

.quality-point p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  max-width: none;
}

@media (max-width: 767px) {
  .quality-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
}


/* === EXPORT DESTINATIONS (Dark Section) === */

.export-section {
  overflow: hidden;
}

/* Top row: header left + origin card right */
.export-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
  align-items: start;
}

@media (min-width: 768px) {
  .export-top {
    grid-template-columns: 1fr auto;
    gap: var(--space-12);
  }
}

.export-header {
  max-width: 520px;
}

/* Origin port card */
.export-origin-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-5);
  padding: var(--space-6);
  background: linear-gradient(135deg, rgba(26, 188, 156, 0.08) 0%, rgba(26, 82, 118, 0.08) 100%);
  border: 1px solid rgba(26, 188, 156, 0.15);
  border-radius: var(--radius-xl);
  min-width: 320px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.eoc-flag {
  flex-shrink: 0;
  width: 52px;
  height: 26px;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2px;
}

.eoc-label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-2);
}

.eoc-value {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-inverse);
  margin-bottom: var(--space-3);
}

.eoc-details {
  display: flex;
  gap: var(--space-4);
}

.eoc-detail {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: var(--text-xs);
  color: var(--text-inverse-muted);
}

.eoc-detail svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--color-accent);
  opacity: 0.6;
}

/* Destination cards grid */
.export-destinations {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-12);
}

.export-dest-card {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-5);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  transition: border-color 250ms ease, background 250ms ease, transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.export-dest-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(26, 188, 156, 0.25);
  transform: translateY(-2px);
}

.edc-flag {
  width: 44px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.edc-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.edc-country {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--text-inverse);
}

.edc-port {
  font-size: var(--text-xs);
  color: var(--text-inverse-muted);
}

/* Shipping info bar */
.export-shipping-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  padding: var(--space-5) var(--space-6);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  flex-wrap: wrap;
}

.esb-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(232, 244, 253, 0.6);
}

.esb-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--color-accent);
  opacity: 0.6;
}

.esb-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.08);
}

/* Responsive */
@media (max-width: 1023px) {
  .export-destinations {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .export-destinations {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
  }

  .export-header {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .export-origin-card {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .eoc-details {
    justify-content: center;
  }

  .export-dest-card {
    padding: var(--space-4);
    justify-content: center;
  }

  .edc-flag {
    font-size: 1.5rem;
  }

  .export-shipping-bar {
    justify-content: center;
  }

  .export-shipping-bar {
    gap: var(--space-4);
  }

  .esb-divider {
    display: none;
  }

  .esb-item {
    font-size: var(--text-xs);
  }
}

@media (max-width: 480px) {
  .export-destinations {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .export-origin-card {
    min-width: auto;
  }
}


/* === CTA BAND === */

.cta-band {
  padding: var(--space-20) 0;
}

.cta-band-light {
  background: var(--bg-surface);
  padding: var(--space-20) 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}


/* === FAQ ACCORDION === */

/* Split layout: sidebar left, accordion right */
.faq-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
}

@media (min-width: 1024px) {
  .faq-split {
    grid-template-columns: 300px 1fr;
    gap: var(--space-16);
    align-items: start;
  }
}

@media (min-width: 1280px) {
  .faq-split {
    grid-template-columns: 340px 1fr;
  }
}

.faq-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}

@media (min-width: 1024px) {
  .faq-side {
    position: sticky;
    top: 120px;
    align-items: flex-start;
    text-align: left;
  }
}

.faq-side .section-title {
  margin-bottom: var(--space-4);
}

.faq-side-desc {
  font-size: var(--text-base);
  color: var(--text-muted);
  margin-bottom: var(--space-6);
  max-width: 280px;
}

.faq-main {
  min-width: 0;
}

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

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-3);
  transition: border-color 250ms ease;
}

.faq-item:hover {
  border-color: var(--border-medium);
}

.faq-item.is-open {
  border-color: var(--color-primary);
}

.faq-item:first-child {
  border-top: 1px solid var(--border-default);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-5);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text-primary);
  transition: color 180ms ease;
  -webkit-tap-highlight-color: transparent;
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-question:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.is-open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms cubic-bezier(0.16, 1, 0.3, 1), padding 300ms ease;
  padding: 0 var(--space-5);
}

.faq-item.is-open .faq-answer {
  padding-bottom: var(--space-5);
}

.faq-answer p {
  font-size: var(--text-base);
  color: var(--text-body);
  line-height: 1.7;
  max-width: 65ch;
}

@media (max-width: 767px) {
  .faq-question {
    font-size: var(--text-base);
    padding: var(--space-4);
  }

  .faq-answer {
    padding: 0 var(--space-4);
  }

  .faq-item.is-open .faq-answer {
    padding-bottom: var(--space-4);
  }
}


/* === SECTION HELPERS === */

.section-white {
  background: var(--bg-card);
}


/* === FORM === */

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: var(--space-4);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-body);
}

.required {
  color: var(--color-error);
  margin-left: 2px;
}

.form-input {
  height: 48px;
  padding: 0 1rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-primary);
  background: var(--bg-card);
  border: 1.5px solid var(--border-default);
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color 180ms cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 180ms cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.form-input::placeholder {
  color: var(--text-disabled);
}

.form-input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(26, 82, 118, 0.12);
}

.form-input.error {
  border-color: var(--color-error);
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.10);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236B8BA4' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-textarea {
  height: auto;
  padding: 0.875rem 1rem;
  resize: vertical;
  min-height: 120px;
}

.form-error {
  display: none;
  font-size: var(--text-xs);
  color: var(--color-error);
  font-weight: 500;
}

.form-success {
  text-align: center;
  padding: var(--space-12) var(--space-6);
}

.form-success-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-4);
  color: var(--color-success);
}

.form-success-icon svg {
  width: 48px;
  height: 48px;
}

.form-success h3 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-3);
}

.form-success p {
  color: var(--text-muted);
  max-width: 40ch;
  margin: 0 auto;
}

.form-submit-error {
  margin-top: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: var(--color-error-bg);
  color: var(--color-error);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
}

/* Contact Layout */

.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-12);
  align-items: start;
}

.contact-panel {
  position: sticky;
  top: 100px;
}

.contact-panel-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.contact-panel-sub {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-6);
  max-width: none;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--border-light);
}

.contact-method:first-child {
  border-top: 1px solid var(--border-light);
}

.contact-method-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-accent);
}

.contact-method-label {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.125rem;
}

.contact-method-value {
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--text-primary);
}

.contact-method a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 180ms ease;
}

.contact-method a:hover {
  color: var(--color-primary);
}

@media (max-width: 767px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .contact-panel {
    position: static;
  }
}


/* === FOOTER === */

/* Footer CTA strip */
.footer-cta {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  padding: var(--space-12) 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-cta + .container {
  padding-top: var(--space-12);
}

.footer-cta::before {
  content: '';
  position: absolute;
  width: 40vw;
  height: 40vw;
  top: -50%;
  right: -10%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
  filter: blur(80px);
  opacity: 0.15;
  pointer-events: none;
}

.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  position: relative;
}

.footer-cta-text h3 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-2);
}

.footer-cta-text p {
  font-size: var(--text-sm);
  color: rgba(232, 244, 253, 0.7);
  max-width: 400px;
}

.footer-cta-actions {
  display: flex;
  gap: var(--space-3);
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .footer-cta {
    padding: var(--space-8) 0;
  }

  .footer-cta-inner {
    flex-direction: column;
    text-align: center;
    gap: var(--space-6);
  }

  .footer-cta-text p {
    margin: 0 auto;
  }

  .footer-cta-actions {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    flex-direction: column;
    gap: var(--space-3);
  }

  .footer-cta-actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 52px;
    font-size: var(--text-base);
  }

  .footer-cta-actions .btn-hero-ghost {
    border-color: rgba(255, 255, 255, 0.25);
    color: rgba(232, 244, 253, 0.8);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .footer-cta-inner {
    flex-direction: column;
    text-align: center;
    gap: var(--space-5);
  }

  .footer-cta-text p {
    margin: 0 auto;
  }

  .footer-cta-actions {
    justify-content: center;
  }
}

.footer {
  background: var(--bg-dark-alt);
  color: var(--text-inverse);
  padding: 0;
}

.footer a {
  color: var(--text-inverse-muted);
  text-decoration: none;
  transition: color 180ms ease;
}

.footer a:hover {
  color: var(--color-white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: var(--space-6) var(--space-8);
  padding-bottom: var(--space-8);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

/* Footer — Brand Column */

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: var(--space-2);
  text-decoration: none;
}

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.02em;
}

.footer-logo-text span {
  color: var(--color-accent);
}

.footer-brand-desc {
  font-size: var(--text-sm);
  color: var(--text-inverse-muted);
  line-height: 1.7;
  max-width: 280px;
}

.footer-certifications {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: var(--space-2);
}

.footer-cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  border: 1px solid rgba(212, 172, 13, 0.3);
  padding: 0.375rem 0.625rem;
  border-radius: var(--radius-full);
}

.footer-cert-badge svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* Footer — Navigation Columns */

.footer-col-title {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}

.footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-nav li a {
  font-size: var(--text-sm);
  line-height: 1.5;
  display: inline-block;
  padding: 0.125rem 0;
}

/* Footer — Contact Column */

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: var(--text-sm);
  color: var(--text-inverse-muted);
  line-height: 1.5;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-accent);
}

.footer-contact-item a {
  color: var(--text-inverse-muted);
}

.footer-contact-item a:hover {
  color: var(--color-white);
}

/* Footer — Bottom Bar */

.footer-bottom {
  display: flex;
  align-items: center;
  padding: var(--space-5) 0;
  font-size: var(--text-xs);
  color: var(--text-inverse-muted);
  border-top: 1px solid var(--border-dark);
  gap: var(--space-3);
}

.footer-credit {
  color: var(--text-inverse-muted);
  font-size: var(--text-xs);
}

.footer-credit::before {
  content: '·';
  margin-right: var(--space-2);
  opacity: 0.3;
}

.footer-credit a {
  color: var(--color-accent);
  font-weight: 600;
}

.footer-credit a:hover {
  color: var(--color-accent-light);
}

.footer-back-top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transition: background 200ms ease, border-color 200ms ease, transform 200ms cubic-bezier(0.16, 1, 0.3, 1);
  margin-left: auto;
  flex-shrink: 0;
}

.footer-back-top:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(26, 188, 156, 0.3);
  transform: translateY(-2px);
}

.footer-back-top svg {
  width: 16px;
  height: 16px;
  color: var(--text-inverse-muted);
}

/* Footer Responsive */

@media (max-width: 767px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
    text-align: center;
  }

  .footer-col {
    align-items: center;
  }

  .footer-col:first-child {
    grid-column: 1 / -1;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-brand-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-certifications {
    justify-content: center;
  }

  .footer-nav {
    align-items: center;
  }

  .footer-contact {
    align-items: center;
  }

  .footer-contact-item {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-3);
    text-align: center;
  }

  .footer-credit::before {
    display: none;
  }

  .footer-back-top {
    margin-left: 0;
  }
}


/* === MOBILE CTA === */

.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border-default);
  padding: 0.625rem 1rem;
  padding-bottom: calc(0.625rem + env(safe-area-inset-bottom));
  z-index: var(--z-sticky);
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 -4px 24px rgba(26, 82, 118, 0.12);
  transform: translateY(100%);
  transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-cta-bar.is-visible {
  transform: translateY(0);
}

.mobile-cta-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.6875rem;
  font-weight: 500;
  padding: 0.375rem 0.5rem;
  min-width: 48px;
  min-height: 48px;
  justify-content: center;
  transition: color 180ms ease;
  -webkit-tap-highlight-color: transparent;
}

.mobile-cta-action:hover {
  color: var(--color-primary);
}

.mobile-cta-action svg {
  width: 20px;
  height: 20px;
}

.mobile-cta-primary {
  flex: 1;
  background: var(--color-primary);
  color: var(--color-white);
  text-align: center;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 180ms ease;
  -webkit-tap-highlight-color: transparent;
}

.mobile-cta-primary:hover {
  background: var(--color-primary-hover);
  color: var(--color-white);
}

@media (max-width: 767px) {
  .mobile-cta-bar {
    display: flex;
  }

  /* Add bottom padding to body to prevent content from being hidden behind CTA */
  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }
}

@media (min-width: 768px) {
  .mobile-cta-bar {
    display: none !important;
  }
}

/* === TEAM CARDS === */

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.team-photo {
  aspect-ratio: 1;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-surface) 0%, var(--color-primary-50) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Placeholder icon when team photo is absent */
.team-photo::before {
  content: '';
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary-100);
  opacity: 0.5;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-info {
  padding: var(--space-5);
}

.team-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-1);
}

.team-title {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

.team-bio {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: none;
}

@media (max-width: 1023px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .team-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

/* === USP GRID === */

.usp-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-5);
}

.usp-item {
  width: calc(33.333% - var(--space-5));
  padding: var(--space-6);
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
}

.usp-icon {
  width: 40px;
  height: 40px;
  margin-bottom: var(--space-3);
  color: var(--color-primary);
}

.usp-icon svg {
  width: 40px;
  height: 40px;
}

.usp-item h3 {
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: var(--space-1);
}

.usp-item p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  max-width: none;
}

@media (max-width: 1023px) {
  .usp-item { width: calc(50% - var(--space-5)); }
}

@media (max-width: 640px) {
  .usp-item { width: 100%; }
}

/* === RESERVE CARDS === */

.reserve-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.reserve-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
}

.reserve-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.reserve-label {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.reserve-desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  max-width: 30ch;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .reserve-grid { grid-template-columns: 1fr; }
}

/* === LOCATION CARDS === */

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.location-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}

.location-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: var(--color-accent-50);
  border: 1px solid rgba(26, 188, 156, 0.2);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-3);
}

.location-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}

.location-card p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  max-width: none;
}

@media (max-width: 767px) {
  .location-grid { grid-template-columns: 1fr; }
}

/* === LOCATION SPLIT (contact page) === */

.location-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: stretch;
}

.location-map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 400px;
  background: rgba(255, 255, 255, 0.03);
}

.location-map-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
  min-height: 400px;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.loc-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  transition: border-color 250ms ease, background 250ms ease;
}

.loc-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(26, 188, 156, 0.25);
}

.loc-card-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: rgba(26, 188, 156, 0.1);
  color: var(--color-accent);
}

.loc-card-icon svg {
  width: 20px;
  height: 20px;
}

.loc-card-title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--text-inverse);
  margin-bottom: var(--space-1);
}

.loc-card-desc {
  font-size: var(--text-sm);
  color: var(--text-inverse-muted);
  line-height: 1.5;
  max-width: none;
}

@media (max-width: 767px) {
  .location-split {
    grid-template-columns: 1fr;
  }

  .location-map-wrap {
    min-height: 280px;
  }

  .location-map-wrap iframe {
    min-height: 280px;
  }
}


/* === MARKET COUNTRIES === */

.market-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
}

.market-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--text-body);
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
}

.market-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 20px;
  border-radius: 3px;
  background: var(--color-primary-50);
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.04em;
}

/* About page — market cards on dark bg */
.about-markets {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  max-width: 900px;
  margin: 0 auto;
}

.about-market-card {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  transition: border-color 250ms ease, background 250ms ease;
  width: calc(20% - var(--space-3));
  min-width: 140px;
}

.about-market-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(26, 188, 156, 0.3);
}

.amc-code {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  background: rgba(26, 188, 156, 0.12);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.04em;
}

.amc-name {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-inverse);
}

@media (max-width: 767px) {
  .about-market-card {
    width: calc(50% - var(--space-3));
    min-width: 0;
  }
}

@media (max-width: 480px) {
  .about-market-card {
    width: calc(50% - var(--space-3));
  }
}


/* === QUALITY PAGE — Lab Grid, COA Card, Cert Grid, Env Grid === */

/* Quality prose — philosophy section */
.quality-prose {
  max-width: 780px;
  margin: 0 auto;
}

.quality-prose p {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--text-body);
  max-width: none;
}

.quality-prose p + p {
  margin-top: var(--space-6);
}

/* Lab grid — 1 col mobile, 2 col desktop */
.lab-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}

.lab-grid-photo {
  grid-row: 2;
}

.lab-grid-params {
  grid-row: 1;
}

@media (min-width: 1024px) {
  .lab-grid {
    grid-template-columns: 1fr 1fr;
  }

  .lab-grid-photo {
    grid-row: auto;
  }

  .lab-grid-params {
    grid-row: auto;
  }
}

/* Lab image container */
.lab-image-wrap {
  background: var(--bg-surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.lab-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Lab parameter list */
.lab-param-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

/* Quality point icon container (lab + env) */
.qp-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(26, 82, 118, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.qp-icon--lg {
  width: 48px;
  height: 48px;
  background: rgba(26, 188, 156, 0.1);
}

.qp-icon--accent {
  background: rgba(26, 188, 156, 0.08);
}

.qp-icon--secondary {
  background: rgba(41, 128, 185, 0.08);
}

/* COA Card */
.coa-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(13, 33, 55, 0.06);
  max-width: 640px;
  margin: 0 auto;
}

.coa-header {
  background: var(--gradient-hero);
  padding: var(--space-6) var(--space-8);
  color: var(--text-inverse);
}

.coa-header-top {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.coa-header-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xl);
}

.coa-header-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
  font-size: var(--text-sm);
  opacity: 0.85;
}

.coa-body {
  padding: var(--space-6) var(--space-8);
}

.coa-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-base);
}

.coa-table thead tr {
  border-bottom: 2px solid var(--border-strong);
}

.coa-table th {
  padding: var(--space-3) 0;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text-primary);
}

.coa-table th:first-child {
  text-align: left;
}

.coa-table th:last-child {
  text-align: right;
}

.coa-table td {
  padding: var(--space-3) 0;
  color: var(--text-body);
}

.coa-table tbody tr {
  border-bottom: 1px solid var(--border-default);
}

.coa-table tbody tr:last-child {
  border-bottom: none;
}

.coa-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--text-primary);
}

.coa-table .coa-highlight {
  color: var(--color-primary);
}

.coa-footer {
  padding: var(--space-4) var(--space-8);
  background: var(--bg-surface);
  border-top: 1px solid var(--border-default);
  font-size: var(--text-sm);
  color: var(--text-muted);
  font-style: italic;
}

@media (max-width: 640px) {
  .coa-header,
  .coa-body,
  .coa-footer {
    padding-left: var(--space-4);
    padding-right: var(--space-4);
  }

  .coa-header-meta {
    grid-template-columns: 1fr;
  }
}

/* Cert grid */
.cert-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .cert-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cert-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-8);
  text-align: center;
  box-shadow: 0 2px 16px rgba(13, 33, 55, 0.04);
  transition: border-color 250ms ease, box-shadow 250ms ease;
}

.cert-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 8px 24px rgba(26, 82, 118, 0.08);
}

.cert-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-5);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-50);
}

.cert-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-2xl);
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}

.cert-card p {
  color: var(--text-body);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  max-width: 340px;
  margin: 0 auto;
}

/* Env grid */
.env-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .env-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.env-point {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.env-point h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-xl);
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.env-point p {
  color: var(--text-body);
  line-height: var(--leading-normal);
  max-width: none;
}

/* CTA centered block */
.cta-centered {
  text-align: center;
  margin-top: var(--space-8);
}

/* 404 Page */
.error-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 75px);
  text-align: center;
  padding: 6rem 1.5rem 4rem;
}

.error-code {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 700;
  color: var(--color-primary-50);
  line-height: 1;
  margin-bottom: var(--space-4);
}

.error-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}

.error-desc {
  color: var(--text-muted);
  margin-bottom: var(--space-2);
  max-width: 45ch;
  margin-left: auto;
  margin-right: auto;
}

.error-hint {
  color: var(--text-muted);
  margin-bottom: var(--space-8);
  max-width: 45ch;
  margin-left: auto;
  margin-right: auto;
  font-size: var(--text-sm);
}

.error-actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-6);
}

.error-links {
  display: flex;
  gap: var(--space-6);
  justify-content: center;
  flex-wrap: wrap;
}
