:root {
  --primary: #0b71a1;
  --primary-dark: #085a80;
  --primary-light: #e8f4fa;
  --navy: #100e52;
  --text: #121926;
  --text-muted: #6b7280;
  --text-body: #344054;
  --bg: #ffffff;
  --footer-bg: #eceef1;
  --border: #cdd5df;
  --radius-sm: 8px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: "Noto Sans", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { width: min(1240px, 94vw); margin-inline: auto; }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  background: #fff;
  -webkit-box-shadow: 0 1px 8px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 8px 1px rgba(0, 0, 0, 0.1);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
}

.logo-link { justify-self: start; display: flex; align-items: center; }
.logo-link img { height: 72px; width: auto; }

.nav-desktop {
  display: flex;
  gap: 2.25rem;
  justify-self: center;
}

.nav-desktop a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-body);
}

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

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: .65rem;
}

.lang-switch {
  position: relative;
  margin-right: .5rem;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: .35rem;
  padding: .45rem .65rem;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-body);
  transition: border-color .2s, color .2s, background .2s;
}

.lang-toggle:hover,
.lang-toggle[aria-expanded="true"] {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

.lang-toggle svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 140px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  padding: .35rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 110;
}

.lang-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-menu button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: .55rem .75rem;
  border: none;
  background: none;
  font-family: inherit;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-body);
  border-radius: 6px;
  cursor: pointer;
  text-align: left;
}

.lang-menu button:hover { background: var(--primary-light); color: var(--primary); }

.lang-menu button.active {
  color: var(--primary);
  font-weight: 700;
  background: var(--primary-light);
}

.lang-menu button .check {
  font-size: .75rem;
  opacity: 0;
}

.lang-menu button.active .check { opacity: 1; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .6rem 1.35rem;
  font-family: inherit;
  font-size: .875rem;
  font-weight: 600;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s;
}

.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); }

.btn-white {
  background: #fff;
  color: var(--text);
  border-radius: var(--radius-sm);
  padding: .75rem 1.5rem;
}

.btn-dark {
  background: var(--text);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: .7rem 1.25rem;
  font-size: .85rem;
}

.btn-dark:hover { background: #000; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  justify-self: end;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

.nav-mobile {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: #fff;
  padding: 1.5rem;
  flex-direction: column;
  gap: .35rem;
  z-index: 99;
}

.nav-mobile.open { display: flex; }
.nav-mobile a { padding: .85rem 1rem; font-weight: 500; border-radius: var(--radius-sm); }
.nav-mobile a:hover { background: var(--primary-light); color: var(--primary); }

/* Hero */
.hero {
  margin-top: var(--header-h);
  background: var(--primary);
  color: #fff;
  padding: 3rem 0 0;
  position: relative;
  overflow: hidden;
}

.hero-watermark {
  position: absolute;
  right: -5%;
  top: 50%;
  overflow: hidden;
  transform: translateY(-50%);
  font-size: clamp(6rem, 18vw, 14rem);
  font-weight: 800;
  color: rgba(255,255,255,.06);
  letter-spacing: .05em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  will-change: transform, opacity;
  animation:
    heroWatermarkDrift 24s ease-in-out infinite alternate,
    heroWatermarkGlow 8s ease-in-out infinite;
}

.hero-watermark::after {
  content: "";
  position: absolute;
  inset: -20% -10%;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255,255,255,.07) 50%,
    transparent 65%
  );
  transform: translateX(-120%);
  animation: heroWatermarkShine 10s ease-in-out infinite;
  pointer-events: none;
}

@keyframes heroWatermarkDrift {
  0% {
    transform: translateY(-50%) translateX(0) scale(1);
  }
  100% {
    transform: translateY(-48%) translateX(-4%) scale(1.03);
  }
}

@keyframes heroWatermarkGlow {
  0%, 100% {
    opacity: 0.75;
    color: rgba(255,255,255,.05);
  }
  50% {
    opacity: 1;
    color: rgba(255,255,255,.1);
  }
}

@keyframes heroWatermarkShine {
  0%, 35% {
    transform: translateX(-120%);
  }
  65%, 100% {
    transform: translateX(120%);
  }
}

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

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  padding-bottom: 3rem;
}

.hero-copy { padding-top: 1rem; }

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.02em;
  max-width: 12ch;
  margin-bottom: 2rem;
}

.hero-sub {
  font-size: .85rem;
  opacity: .88;
  margin-top: 2.5rem;
  max-width: 380px;
}

.cert-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-top: 2rem;
  align-items: center;
}

.cert-badge {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  opacity: .9;
  display: flex;
  align-items: center;
  gap: .4rem;
}

.cert-badge::before {
  content: "";
  width: 28px;
  height: 28px;
  border: 1.5px solid rgba(255,255,255,.6);
  border-radius: 50%;
}

/* Hero product card */
.hero-product {
  background: #fff;
  border-radius: var(--radius-lg);
  color: var(--text);
  padding: 1.25rem 1.25rem 1rem;
  box-shadow: 0 -4px 40px rgba(0,0,0,.12);
  margin-top: .5rem;
}

.hero-product h2 {
  text-align: center;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text);
}

.slider-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: #e8eef2;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .45s;
}

.slide.active { opacity: 1; }

.slide-visual {
  width: 100%;
  height: 100%;
  background: #e8eef2;
}

.slide-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide-label {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  font-size: clamp(1.25rem, 3vw, 1.85rem);
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,.45);
}

.slider-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem .25rem 0;
}

.slider-arrows { display: flex; gap: .35rem; }

.slider-arrows button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text-body);
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
}

.slider-arrows button:disabled { opacity: .35; cursor: default; }

.slider-dots { display: flex; gap: 5px; }

.slider-dots button {
  width: 28px;
  height: 3px;
  border: none;
  border-radius: 2px;
  background: #d1d5db;
  cursor: pointer;
  padding: 0;
}

.slider-dots button.active { background: var(--text); }

/* Stats */
.stats {
  background: #fff;
  padding: 3rem 0 4rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 800;
  margin-bottom: .3rem;
}

.stat-item p {
  font-size: .85rem;
  color: var(--text-muted);
  max-width: 200px;
  margin-inline: auto;
}

/* Story */
.story {
  padding: 4rem 0 3.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.story-content h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.story-content p {
  color: var(--text-body);
  margin-bottom: 1.75rem;
  font-size: .95rem;
  max-width: 440px;
}

.story-photo {
  width: min(380px, 90%);
  aspect-ratio: 1;
  margin-inline: auto;
  position: relative;
  isolation: isolate;
}

.story-globe {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: radial-gradient(
    circle at 32% 28%,
    #7ec8e8 0%,
    var(--primary) 42%,
    #064d6d 88%
  );
  box-shadow:
    0 24px 48px rgba(11, 113, 161, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.12) inset,
    inset 0 -24px 48px rgba(0, 0, 0, 0.22);
}

.story-globe__grid {
  position: absolute;
  inset: -20%;
  border-radius: 50%;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 18px,
      rgba(255, 255, 255, 0.07) 18px,
      rgba(255, 255, 255, 0.07) 19px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 18px,
      rgba(255, 255, 255, 0.07) 18px,
      rgba(255, 255, 255, 0.07) 19px
    );
  animation: globeGridSpin 48s linear infinite;
}

.story-globe__grid::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    transparent 42%,
    rgba(6, 77, 109, 0.35) 100%
  );
}

.story-globe__routes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.story-globe__route {
  fill: none;
  stroke: rgba(255, 255, 255, 0.45);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 6 10;
  animation: routeFlow 3s linear infinite;
}

.story-globe__route--2 { animation-delay: -0.8s; stroke: rgba(126, 200, 232, 0.7); }
.story-globe__route--3 { animation-delay: -1.6s; }
.story-globe__route--4 { animation-delay: -2.4s; stroke: rgba(126, 200, 232, 0.55); }
.story-globe__route--5 { animation-delay: -1.2s; }
.story-globe__route--6 { animation-delay: -2s; }

@keyframes routeFlow {
  to { stroke-dashoffset: -32; }
}

.story-globe__orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: orbitSpin 22s linear infinite;
}

.story-globe__orbit--2 {
  animation-duration: 32s;
  animation-direction: reverse;
}

.story-globe__orbit--3 {
  animation-duration: 18s;
}

.story-globe__marker {
  position: absolute;
  top: 6%;
  left: 50%;
  width: 10px;
  height: 10px;
  margin-left: -5px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25), 0 0 14px #7ec8e8;
}

.story-globe__marker--hub {
  width: 12px;
  height: 12px;
  margin-left: -6px;
  background: #ffe8a3;
  box-shadow: 0 0 0 4px rgba(255, 232, 163, 0.35), 0 0 18px #fff;
}

.story-globe__pulse {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: globePulse 3.5s ease-out infinite;
}

.story-globe__pulse--2 {
  inset: 22%;
  animation-delay: -1.2s;
}

.story-globe__pulse--3 {
  inset: 32%;
  animation-delay: -2.4s;
}

@keyframes globePulse {
  0% {
    transform: scale(0.92);
    opacity: 0.65;
  }
  70%, 100% {
    transform: scale(1.08);
    opacity: 0;
  }
}

.story-globe__core {
  position: absolute;
  inset: 28%;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  z-index: 3;
}

.story-globe__core img {
  width: 72%;
  height: auto;
  object-fit: contain;
}

.story-globe__transport {
  position: absolute;
  z-index: 4;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  color: var(--primary);
}

.story-globe__transport svg {
  width: 20px;
  height: 20px;
}

.story-globe__transport--ship {
  top: 50%;
  left: 50%;
  margin: -18px 0 0 -18px;
  animation: transportShip 16s linear infinite;
}

.story-globe__transport--plane {
  top: 50%;
  left: 50%;
  margin: -18px 0 0 -18px;
  animation: transportPlane 11s linear infinite reverse;
}

@keyframes orbitSpin {
  to { transform: rotate(360deg); }
}

@keyframes globeGridSpin {
  to { transform: rotate(360deg); }
}

@keyframes transportShip {
  from { transform: rotate(0deg) translateX(138px) rotate(0deg); }
  to { transform: rotate(360deg) translateX(138px) rotate(-360deg); }
}

@keyframes transportPlane {
  from { transform: rotate(0deg) translateX(108px) rotate(0deg); }
  to { transform: rotate(360deg) translateX(108px) rotate(-360deg); }
}

@media (max-width: 480px) {
  @keyframes transportShip {
    from { transform: rotate(0deg) translateX(34vw) rotate(0deg); }
    to { transform: rotate(360deg) translateX(34vw) rotate(-360deg); }
  }
  @keyframes transportPlane {
    from { transform: rotate(0deg) translateX(26vw) rotate(0deg); }
    to { transform: rotate(360deg) translateX(26vw) rotate(-360deg); }
  }
}

.story-globe__badge {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  padding: .4rem .85rem;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(11, 113, 161, 0.2);
}

@media (prefers-reduced-motion: reduce) {
  .story-globe__grid,
  .story-globe__orbit,
  .story-globe__route,
  .story-globe__pulse,
  .story-globe__transport--ship,
  .story-globe__transport--plane {
    animation: none;
  }
}

/* Cert marquee */
.cert-row {
  padding: 2.25rem 0 3rem;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin-bottom: 2rem;
  overflow: hidden;
}

.cert-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 4%,
    #000 96%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 4%,
    #000 96%,
    transparent 100%
  );
}

.cert-marquee::before,
.cert-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 56px;
  z-index: 2;
  pointer-events: none;
}

.cert-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg) 0%, transparent 100%);
}

.cert-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg) 0%, transparent 100%);
}

.cert-track {
  overflow: hidden;
  width: 100%;
}

.cert-marquee-inner {
  display: flex;
  width: max-content;
  animation: certMarquee 38s linear infinite;
}

.cert-marquee:hover .cert-marquee-inner {
  animation-play-state: paused;
}

.cert-group {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  padding-inline: clamp(1rem, 3vw, 2rem);
  flex-shrink: 0;
}

@keyframes certMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.cert-item {
  flex: 0 0 auto;
  height: clamp(48px, 8vw, 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 .25rem;
  filter: grayscale(1);
  opacity: .8;
  transition: filter .35s ease, opacity .35s ease, transform .35s ease;
}

.cert-item:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.08);
}

.cert-item img {
  height: 100%;
  width: auto;
  max-width: min(160px, 28vw);
  object-fit: contain;
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .cert-marquee-inner { animation: none; }
  .cert-track { overflow-x: auto; }
  .cert-marquee-inner {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 2rem;
  }
  .cert-group:last-child { display: none; }
  .cert-group { flex-wrap: wrap; justify-content: center; }
  .cert-item:hover { transform: none; }
}

/* Partnership tab slider */
.partnership {
  position: relative;
  height: 480px;
  overflow: hidden;
  margin-bottom: 0;
}

.partnership-tabs {
  display: flex;
  height: 100%;
  width: 90%;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  background: var(--primary);
}

.p-panel {
  display: flex;
  height: 100%;
  flex: 0 0 56px;
  min-width: 56px;
  overflow: hidden;
  border-right: 1px solid rgba(255,255,255,.12);
  transition: flex .45s cubic-bezier(.4, 0, .2, 1), min-width .45s cubic-bezier(.4, 0, .2, 1);
}

.p-panel:last-child { border-right: none; }

.p-panel.active {
  flex: 1 1 0%;
  min-width: min(100%, 480px);
}

.p-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 56px;
  flex-shrink: 0;
  padding: 1.25rem .5rem;
  background: var(--primary);
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background .25s;
}

.p-panel:not(.active) .p-tab:hover { background: var(--primary-dark); }

.p-panel.active .p-tab {
  width: 130px;
  padding-inline: .75rem;
}

.p-tab span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: .72rem;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
  opacity: 0;
  transition: opacity .3s;
}

.p-panel.active .p-tab span { opacity: 1; }

.p-tab .letter {
  width: 32px;
  height: 32px;
  background: #fff5eb;
  color: var(--navy);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  flex-shrink: 0;
}

.p-panel-content {
  position: relative;
  flex: 0 0 0;
  width: 0;
  min-width: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: flex .45s cubic-bezier(.4, 0, .2, 1), opacity .4s ease, visibility .4s;
}

.p-panel.active .p-panel-content {
  flex: 1 1 0%;
  width: auto;
  opacity: 1;
  visibility: visible;
}

.p-panel-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.p-panel-bg__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.02);
}

.p-panel-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.25) 42%,
    rgba(11, 113, 161, 0.12) 100%
  );
}

.partnership-caption {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,.55);
  color: #fff;
  padding: 1rem 1.5rem;
  font-size: .9rem;
  line-height: 1.55;
  transform: translateY(8px);
  opacity: 0;
  transition: transform .45s ease .1s, opacity .45s ease .1s;
}

.p-panel.active .partnership-caption {
  transform: translateY(0);
  opacity: 1;
}

/* Delivery */
.delivery {
  padding: 4.5rem 0 3rem;
  text-align: center;
}

.delivery h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: .75rem;
}

.delivery > .container > p {
  color: var(--text-body);
  max-width: 520px;
  margin-inline: auto;
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

.flags-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: .5rem 0 1.5rem;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 6%,
    #000 94%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 6%,
    #000 94%,
    transparent 100%
  );
}

.flags-marquee::before,
.flags-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 48px;
  z-index: 2;
  pointer-events: none;
}

.flags-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg) 0%, transparent 100%);
}

.flags-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg) 0%, transparent 100%);
}

.flags-track {
  overflow: hidden;
  width: 100%;
}

.flags-marquee-inner {
  display: flex;
  width: max-content;
  animation: flagsMarquee 42s linear infinite;
}

.flags-marquee:hover .flags-marquee-inner {
  animation-play-state: paused;
}

.flags-group {
  display: flex;
  gap: 1rem;
  padding-inline: .5rem;
  flex-shrink: 0;
}

@keyframes flagsMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.flag-item {
  flex: 0 0 auto;
  text-align: center;
  min-width: 88px;
  padding: 1rem 1.15rem .85rem;
  background: #fff;
  border: 1px solid rgba(11, 113, 161, 0.12);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 16px rgba(11, 113, 161, 0.08);
  transition:
    transform .35s cubic-bezier(.34, 1.4, .64, 1),
    box-shadow .35s ease,
    border-color .35s ease;
  cursor: default;
}

.flag-item:hover {
  transform: translateY(-8px) scale(1.06);
  border-color: rgba(11, 113, 161, 0.35);
  box-shadow: 0 14px 32px rgba(11, 113, 161, 0.18);
}

.flag-item .flag {
  font-size: 2.35rem;
  line-height: 1.2;
  display: block;
  margin-bottom: .45rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
  animation: flagBob 4s ease-in-out infinite;
}

.flags-group .flag-item:nth-child(2n) .flag { animation-delay: -0.8s; }
.flags-group .flag-item:nth-child(3n) .flag { animation-delay: -1.6s; }
.flags-group .flag-item:nth-child(5n) .flag { animation-delay: -2.4s; }

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

.flag-item span:last-child {
  font-size: .7rem;
  color: var(--text-body);
  font-weight: 600;
  letter-spacing: .02em;
  transition: color .25s;
}

.flag-item:hover span:last-child { color: var(--primary); }

@media (prefers-reduced-motion: reduce) {
  .flags-marquee-inner { animation: none; }
  .flags-track { overflow-x: auto; }
  .flags-marquee-inner {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 1rem;
  }
  .flags-group:last-child { display: none; }
  .flags-group { flex-wrap: wrap; justify-content: center; }
  .flag-item .flag { animation: none; }
  .flag-item:hover { transform: none; }
}

/* Ship banner – fixed background */
.ship-banner {
  position: relative;
  min-height: clamp(360px, 50vh, 520px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url("../images/ship.91748dcd.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.ship-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(16, 14, 82, 0.55) 0%,
    rgba(11, 113, 161, 0.45) 50%,
    rgba(16, 14, 82, 0.65) 100%
  );
  pointer-events: none;
}

.ship-banner-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding: 3rem 1.5rem;
  color: #fff;
}

.ship-banner-content h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -.02em;
}

.ship-banner-content p {
  font-size: clamp(.95rem, 2vw, 1.05rem);
  line-height: 1.65;
  opacity: .92;
  margin-bottom: 1.75rem;
}

.ship-banner .btn-white {
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.ship-banner .btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
  .ship-banner {
    background-attachment: scroll;
    min-height: 320px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ship-banner .btn-white:hover { transform: none; }
}

/* Contact – navy block */
.contact {
  background: var(--navy);
  color: #fff;
  padding: 4.5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem 4rem;
  align-items: start;
}

.contact-intro h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.contact-intro > p {
  font-size: .9rem;
  opacity: .85;
  line-height: 1.65;
  max-width: 360px;
}

.contact-intro .note {
  margin-top: 1rem;
  font-size: .8rem;
  opacity: .65;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
}

.form-group { margin-bottom: 1.35rem; }

.contact-form label {
  display: block;
  font-size: .8rem;
  margin-bottom: .4rem;
  opacity: .9;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,.45);
  color: #fff;
  font-family: inherit;
  font-size: .9rem;
  padding: .5rem 0 .65rem;
}

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

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-bottom-color: #fff;
}

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

.contact-form-status {
  margin: 0 0 .75rem;
  font-size: .85rem;
  line-height: 1.4;
}

.contact-form-status.is-success {
  color: #6ee7b7;
}

.contact-form-status.is-error {
  color: #fca5a5;
}

.form-submit {
  display: flex;
  justify-content: flex-end;
  margin-top: .5rem;
}

.form-submit .btn-primary {
  border-radius: var(--radius-sm);
  padding: .75rem 2rem;
}

/* Footer – light */
.site-footer {
  background: var(--footer-bg);
  color: var(--text-body);
  padding: 3rem 0 1.5rem;
}

.footer-top {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 2rem 3rem;
  padding-bottom: 2.5rem;
  align-items: start;
}

.footer-logo img { height: 52px; }

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.footer-nav-col a {
  font-size: .875rem;
  color: var(--text-body);
}

.footer-nav-col a:hover { color: var(--primary); }

.footer-contact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 2rem 0;
  border-top: 1px solid #d8dce2;
}

.footer-block h4 {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: .65rem;
}

.footer-block p,
.footer-block a {
  font-size: .875rem;
  line-height: 1.65;
  color: var(--text);
}

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

.footer-block .phone-note {
  display: block;
  font-size: .75rem;
  color: var(--text-muted);
  margin-top: .15rem;
}

.footer-bottom {
  border-top: 1px solid #d8dce2;
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-bottom > span {
  font-size: .8rem;
  color: var(--text-muted);
}

.social-links {
  display: flex;
  gap: .65rem;
}

.social-links a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #d1d5db;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: background .2s, color .2s;
}

.social-links a:hover { background: var(--primary); color: #fff; }
.social-links svg { width: 16px; height: 16px; fill: currentColor; }

@media (max-width: 960px) {
  .header-inner { grid-template-columns: 1fr auto auto; }
  .nav-desktop, .header-actions .btn-primary { display: none; }
  .header-actions { gap: .5rem; }
  .menu-toggle { display: flex; justify-self: end; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-product { margin-top: 0; border-radius: var(--radius-md); }
  .story { grid-template-columns: 1fr; }
  .story-photo { order: -1; }
  .stats-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-contact { grid-template-columns: 1fr; }
  .partnership { height: auto; min-height: 300px; }
  .partnership-tabs {
    flex-direction: column;
    min-height: 300px;
  }
  .p-panel {
    flex: 0 0 auto;
    flex-direction: column;
    min-width: 100%;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }
  .p-panel.active { min-width: 100%; flex: 1 1 auto; }
  .p-panel:not(.active) { flex: 0 0 52px; min-height: 52px; }
  .p-panel:not(.active) .p-panel-content { display: none; }
  .p-tab {
    width: 100%;
    flex-direction: row;
    padding: .75rem 1rem;
    height: 52px;
  }
  .p-panel.active .p-tab { width: 100%; height: auto; min-height: 52px; }
  .p-tab span {
    writing-mode: horizontal-tb;
    transform: none;
    opacity: 1;
  }
  .p-panel:not(.active) .p-tab span { display: none; }
  .p-panel.active .p-panel-content {
    min-height: 200px;
    width: 100%;
  }
}

/* ── Products page ── */
.products-page {
  padding-top: var(--header-h);
}

.products-hero {
  padding: 3.5rem 0 3.5rem;
  position: relative;
  background:
    linear-gradient(90deg, rgba(16,14,82,.78) 0%, rgba(16,14,82,.46) 55%, rgba(16,14,82,.14) 100%),
    url("../images/product-hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.products-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 30%, rgba(11,113,161,.18), transparent 55%),
    radial-gradient(circle at 75% 45%, rgba(255,255,255,.12), transparent 52%);
  pointer-events: none;
}

.products-hero-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.products-hero-copy h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1.05;
  margin-bottom: .65rem;
}

.products-hero-copy p {
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,.86);
  max-width: 28rem;
}

.products-hero-seal {
  flex-shrink: 0;
  width: clamp(88px, 12vw, 120px);
  height: clamp(88px, 12vw, 120px);
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(16, 14, 82, .12);
}

.products-hero-seal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.products-type-bar {
  background: var(--navy);
  color: #fff;
}

.products-type-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .65rem 1rem;
  padding: .85rem 0;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.products-type-bar-inner a {
  color: #fff;
  transition: opacity .2s;
}

.products-type-bar-inner a:hover { opacity: .75; }

.products-type-bar .sep {
  opacity: .55;
  user-select: none;
}

.products-filters {
  padding: 1.35rem 0 1rem;
  background: #fff;
  position: sticky;
  top: var(--header-h);
  z-index: 50;
  border-bottom: 1px solid rgba(205, 213, 223, .5);
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .6rem;
}

.filter-pill {
  font-family: inherit;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .55rem 1rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: #eceef1;
  color: var(--text-body);
  transition: background .2s, color .2s;
}

.filter-pill:hover {
  background: var(--primary-light);
  color: var(--primary-dark);
}

.filter-pill.active {
  background: var(--primary);
  color: #fff;
}

.products-catalog {
  padding: 2rem 0 4.5rem;
}

.product-category {
  margin-bottom: 3.25rem;
  scroll-margin-top: calc(var(--header-h) + 5.5rem);
}

.product-category.is-hidden {
  display: none;
}

.product-category h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.product-grid {
  display: grid;
  gap: 1rem;
}

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

.product-grid.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.product-card {
  display: block;
  border: 1px solid rgba(11, 113, 161, 0.12);
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  text-decoration: none;
  color: inherit;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(11, 113, 161, 0.22);
  box-shadow: 0 8px 24px rgba(11, 113, 161, .18);
}

.product-card__image {
  aspect-ratio: 1;
  overflow: hidden;
  padding: .75rem .75rem .5rem;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-card__name {
  display: block;
  padding: .5rem .75rem .85rem;
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  text-align: center;
}

@media (max-width: 900px) {
  .product-grid.cols-4 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .products-hero-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .products-hero-seal {
    align-self: flex-end;
    margin-top: -.5rem;
  }

  .product-grid.cols-3,
  .product-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }

  .products-filters {
    top: var(--header-h);
    padding: 1rem 0;
  }
}

@media (max-width: 480px) {
  .product-grid.cols-3,
  .product-grid.cols-4 { grid-template-columns: repeat(2, 1fr); gap: .65rem; }

  .product-card__image { padding: .55rem .55rem .35rem; }

  .product-card__name {
    padding: .4rem .55rem .65rem;
    font-size: .82rem;
  }

  .filter-pill {
    font-size: .62rem;
    padding: .5rem .75rem;
  }
}

/* ── Product detail modal ── */
body.product-modal-open {
  overflow: hidden;
}

.product-modal[hidden] {
  display: none;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.product-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 14, 82, 0.55);
  backdrop-filter: blur(2px);
}

.product-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(88vh, 760px);
  overflow: auto;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: 0 24px 64px rgba(16, 14, 82, 0.28);
}

.product-modal__close {
  position: absolute;
  top: .75rem;
  right: .75rem;
  z-index: 2;
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--navy);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(16, 14, 82, 0.12);
}

.product-modal__close:hover {
  background: #fff;
  color: var(--primary);
}

.product-modal__body {
  padding: 1.5rem;
}

.product-modal__loading,
.product-modal__error {
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-muted);
  padding: 2rem 1rem;
}

.product-modal__error {
  color: #b42318;
}

.product-modal__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 1.5rem;
  align-items: start;
}

.product-modal__media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  padding: 0.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(11, 113, 161, 0.1);
}

.product-modal__media img {
  width: 100%;
  max-height: 320px;
  object-fit: contain;
}

.product-modal__category {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: .35rem;
}

.product-modal__title {
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: .85rem;
}

.product-modal__info {
  color: var(--text-body);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.product-modal__info p {
  margin-bottom: .75rem;
}

.product-modal__info p:last-child {
  margin-bottom: 0;
}

.product-modal__cta {
  margin-top: .25rem;
}

@media (max-width: 720px) {
  .product-modal {
    padding: .75rem;
  }

  .product-modal__body {
    padding: 1.15rem;
  }

  .product-modal__content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .product-modal__media {
    min-height: 180px;
  }

  .product-modal__media img {
    max-height: 240px;
  }
}

/* ── News page ── */
.news-page {
  padding-top: var(--header-h);
}

.news-hero {
  padding: 3.5rem 0 3.5rem;
  position: relative;
  background:
    linear-gradient(90deg, rgba(16,14,82,.82) 0%, rgba(16,14,82,.48) 55%, rgba(16,14,82,.18) 100%),
    url("../images/product-hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.news-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 30%, rgba(11,113,161,.18), transparent 55%),
    radial-gradient(circle at 75% 45%, rgba(255,255,255,.10), transparent 52%);
  pointer-events: none;
}

.news-hero-inner {
  position: relative;
  z-index: 1;
}

.news-hero-copy h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1.05;
  margin-bottom: .65rem;
}

.news-hero-copy p {
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,.86);
  max-width: 34rem;
}

.news-filters {
  padding: 1.35rem 0 1rem;
  background: #fff;
  position: sticky;
  top: var(--header-h);
  z-index: 50;
  border-bottom: 1px solid rgba(205, 213, 223, .5);
}

.filter-pills-center {
  justify-content: center;
}

.news-grid-wrap {
  padding: 2rem 0 4.5rem;
  background: #fff;
}

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

.news-card {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(205, 213, 223, .65);
  box-shadow: 0 10px 28px rgba(16, 14, 82, .06);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.news-card:hover {
  transform: translateY(-3px);
  border-color: rgba(11,113,161,.35);
  box-shadow: 0 18px 45px rgba(16, 14, 82, .10);
}

.news-card.is-hidden {
  display: none;
}

.news-card-media {
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #e8eef2;
}

.news-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

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

.news-card-body {
  padding: .85rem .95rem 1rem;
}

.news-pill {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .25rem .55rem;
  border-radius: 999px;
  background: rgba(11,113,161,.10);
  color: var(--primary-dark);
}

.news-pill-expo {
  background: rgba(16,14,82,.10);
  color: var(--navy);
}

.news-pill-charity {
  background: rgba(16, 185, 129, .12);
  color: #0f766e;
}

.news-card-title {
  font-size: .95rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.25;
  letter-spacing: -.01em;
  margin-top: .35rem;
}

.news-card-title a {
  color: inherit;
}

.news-card-title a:hover {
  color: var(--primary-dark);
}

.news-card-meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .75rem;
  color: var(--text-muted);
}

.news-meta-date {
  margin-left: auto;
  flex-shrink: 0;
  text-align: right;
}

@media (max-width: 1100px) {
  .news-grid { grid-template-columns: repeat(3, 1fr); }
}

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

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

/* ── Expo page ── */
.page-expo .expo-page {
  padding-top: var(--header-h);
  background: #fff;
}

.expo-hero {
  padding: 3.5rem 0 3.5rem;
  position: relative;
  background:
    linear-gradient(90deg, rgba(16,14,82,.78) 0%, rgba(16,14,82,.46) 55%, rgba(16,14,82,.14) 100%),
    url("../images/product-hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.expo-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 30%, rgba(11,113,161,.18), transparent 55%),
    radial-gradient(circle at 75% 45%, rgba(255,255,255,.12), transparent 52%);
  pointer-events: none;
}

.expo-hero-inner {
  position: relative;
  z-index: 1;
}

.expo-hero-copy h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1.05;
  margin-bottom: .65rem;
}

.expo-hero-copy p {
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,.86);
  max-width: 34rem;
}

.expo-list {
  padding: 2rem 0 4.5rem;
}

.expo-entry {
  margin-bottom: 3.25rem;
}

.expo-entry-head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.expo-entry-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 36px;
  color: var(--primary-dark);
  font-weight: 900;
  letter-spacing: .02em;
  font-size: .75rem;
}

.expo-entry-title {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1.2;
}

.expo-entry-meta {
  margin-top: .2rem;
  font-size: .75rem;
  color: var(--text-muted);
  font-weight: 600;
}

.expo-collage {
  display: grid;
  gap: 14px;
}

.collage-3 {
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 320px;
}

.collage-2wide {
  grid-template-columns: 2fr 1fr;
  grid-auto-rows: 320px;
}

.expo-collage a {
  display: block;
  height: 100%;
  overflow: hidden;
  border-radius: 14px;
  cursor: zoom-in;
  transition: transform .22s ease, box-shadow .22s ease;
}

.expo-collage a:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(16, 14, 82, .12);
}

.expo-collage a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.expo-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  background: #e8eef2;
  transition: transform .35s ease;
}

.expo-collage a:hover img {
  transform: scale(1.03);
}

@media (max-width: 980px) {
  .collage-3 { grid-template-columns: repeat(2, 1fr); }
  .collage-2wide { grid-template-columns: 1fr; grid-auto-rows: 190px; }
}

@media (max-width: 640px) {
  .collage-3 { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .collage-2wide { grid-auto-rows: 220px; }
  .expo-entry-head { flex-direction: column; }
}

/* ── About page ── */
.about-page {
  padding-top: var(--header-h);
  background: #fff;
}

.about-hero {
  padding: 3.5rem 0 3.5rem;
  position: relative;
  background:
    linear-gradient(90deg, rgba(16,14,82,.78) 0%, rgba(16,14,82,.46) 55%, rgba(16,14,82,.14) 100%),
    url("../images/product-hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 30%, rgba(11,113,161,.18), transparent 55%),
    radial-gradient(circle at 75% 45%, rgba(255,255,255,.12), transparent 52%);
  pointer-events: none;
}

.about-hero-inner {
  position: relative;
  z-index: 1;
}

.about-hero-copy h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1.05;
  margin-bottom: .65rem;
}

.about-hero-copy p {
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,.86);
  max-width: 34rem;
}

.page-about .stats {
  padding-bottom: 2.5rem;
}

.about-values {
  padding: 3rem 0;
  background: #fff;
}

.about-values-title {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  margin-bottom: 1.75rem;
}

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

.about-value-card {
  padding: 1.15rem 1.1rem;
  border-radius: 18px;
  border: 1px solid rgba(205, 213, 223, .7);
  background: #fff;
  box-shadow: 0 10px 28px rgba(16, 14, 82, .05);
}

.about-value-card h3 {
  font-size: .92rem;
  font-weight: 900;
  color: var(--primary-dark);
  margin-bottom: .55rem;
  line-height: 1.25;
}

.about-value-card p {
  font-size: .82rem;
  color: var(--text-body);
  line-height: 1.55;
}

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

@media (max-width: 520px) {
  .about-values-grid { grid-template-columns: 1fr; }
}

.about-video {
  padding: 3.5rem 0;
  background: linear-gradient(180deg, #f7f9fb 0%, #fff 100%);
}

.about-video-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 1.5rem;
}

.about-video-head h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: .55rem;
}

.about-video-head p {
  font-size: .92rem;
  color: var(--text-body);
  line-height: 1.6;
}

.about-video-player {
  position: relative;
  width: min(900px, 100%);
  margin-inline: auto;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  background: var(--navy);
  box-shadow: 0 18px 50px rgba(16, 14, 82, .14);
}

.about-video-player::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
  pointer-events: none;
  z-index: 1;
}

.about-video-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.about-video-player.is-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(16,14,82,.92), rgba(11,113,161,.75));
}

.about-video-placeholder {
  padding: 1.5rem;
  text-align: center;
  font-size: .88rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  max-width: 22rem;
  line-height: 1.55;
}

.about-team {
  padding: 3.5rem 0;
  background: #fff;
}

.about-team-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2rem;
}

.about-team-head h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: .55rem;
}

.about-team-head p {
  font-size: .92rem;
  color: var(--text-body);
  line-height: 1.6;
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.team-card {
  text-align: center;
  padding: 1.25rem 1rem 1.35rem;
  border-radius: 20px;
  border: 1px solid rgba(205, 213, 223, .65);
  background: #fff;
  box-shadow: 0 10px 28px rgba(16, 14, 82, .05);
  transition: transform .22s ease, box-shadow .22s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(16, 14, 82, .1);
}

.team-card-photo {
  width: 120px;
  height: 120px;
  margin: 0 auto .85rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(11,113,161,.15);
  background: var(--primary-light);
}

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

.team-card h3 {
  font-size: .95rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: .25rem;
}

.team-card-role {
  font-size: .78rem;
  font-weight: 600;
  color: var(--primary-dark);
  letter-spacing: .02em;
}

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

@media (max-width: 520px) {
  .about-team-grid { grid-template-columns: 1fr; max-width: 280px; margin-inline: auto; }
}

/* ── News detail page ── */
.news-detail-page {
  padding-top: var(--header-h);
  background: #fff;
}

.news-detail-hero {
  padding: 1.5rem 0 1.5rem;
  position: relative;
  background:
    linear-gradient(90deg, rgba(16,14,82,.86) 0%, rgba(16,14,82,.55) 55%, rgba(16,14,82,.18) 100%),
    url("../images/product-hero-bg.jpg");
  background-size: cover;
  background-position: center;
}

.news-detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 38%, rgba(11,113,161,.18), transparent 60%),
    radial-gradient(circle at 72% 42%, rgba(255,255,255,.10), transparent 55%);
  pointer-events: none;
}

.news-detail-hero-inner {
  position: relative;
  z-index: 1;
}

.news-detail-back {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  color: rgba(255,255,255,.88);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .01em;
  padding: .55rem .85rem;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(6px);
}

.news-detail-back:hover {
  background: rgba(255,255,255,.14);
}

.news-detail-header {
  margin-top: 1.35rem;
  max-width: 52rem;
}

.news-detail-title {
  margin-top: .55rem;
  font-size: clamp(1.75rem, 4vw, 2rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1.12;
}

.news-detail-meta {
  margin-top: .85rem;
  color: rgba(255,255,255,.82);
  font-size: .85rem;
  font-weight: 600;
}

.news-detail-share {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: .9rem;
  flex-wrap: wrap;
}

.news-detail-share-label {
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.news-detail-share-actions {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
}

.share-btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
  backdrop-filter: blur(6px);
}

.share-btn:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.28);
}

.share-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.share-btn-copy svg {
  fill: none;
}

.share-btn-copy {
  width: auto;
  padding: 0 .9rem;
  gap: .55rem;
}

.share-btn-text {
  font-family: inherit;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .02em;
}

.share-btn.is-copied {
  background: rgba(11,113,161,.22);
  border-color: rgba(11,113,161,.45);
}

@media (max-width: 520px) {
  .share-btn-copy {
    padding: 0 .75rem;
  }
  .share-btn-text {
    font-size: .78rem;
  }
}

.news-detail-content {
  padding: 2.25rem 0 4.5rem;
}

.news-detail-grid {
  display: grid;
  grid-template-columns: 1.65fr .85fr;
  gap: 2rem;
  align-items: start;
}

.news-article {
  border: 1px solid rgba(205, 213, 223, .7);
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 40px rgba(16, 14, 82, .06);
}

.news-article-cover {
  aspect-ratio: 16/9;
  background: #e8eef2;
}

.news-article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-article-prose {
  padding: 1.25rem 1.35rem 1.5rem;
  color: var(--text-body);
}

.news-article-prose p {
  margin-bottom: 1rem;
  line-height: 1.75;
}

.news-article-prose h2 {
  margin-top: 1.25rem;
  margin-bottom: .6rem;
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--navy);
}

.news-article-prose ul {
  padding-left: 1.2rem;
  margin: .5rem 0 1.1rem;
}

.news-article-prose li {
  margin: .35rem 0;
}

.news-article-prose blockquote {
  margin: 1.25rem 0;
  padding: 1rem 1rem;
  border-left: 4px solid rgba(11,113,161,.45);
  background: rgba(232,244,250,.6);
  border-radius: 14px;
  color: var(--text);
  font-weight: 700;
}

.news-article-cta {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.25rem;
}

.news-sidebar-card {
  border: 1px solid rgba(205, 213, 223, .7);
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 40px rgba(16, 14, 82, .04);
}

.news-sidebar-title {
  padding: 1.05rem 1.1rem .8rem;
  font-size: 1rem;
  font-weight: 900;
  color: var(--navy);
}

.news-sidebar-list {
  padding: .25rem 1rem 1rem;
  display: grid;
  gap: .85rem;
}

.news-mini {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: .8rem;
  align-items: center;
  padding: .65rem;
  border-radius: 16px;
  border: 1px solid rgba(205, 213, 223, .55);
  background: rgba(255,255,255,.9);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.news-mini:hover {
  transform: translateY(-2px);
  border-color: rgba(11,113,161,.30);
  box-shadow: 0 14px 26px rgba(16,14,82,.08);
}

.news-mini img {
  width: 72px;
  height: 56px;
  object-fit: cover;
  border-radius: 12px;
}

.news-mini-title {
  margin-top: .4rem;
  font-size: .85rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1.25;
}

.news-mini-date {
  margin-top: .35rem;
  font-size: .75rem;
  color: var(--text-muted);
}

@media (max-width: 980px) {
  .news-detail-grid {
    grid-template-columns: 1fr;
  }
}
