/* ─── beluga.css ─────────────────────────────────────────────────────────── */

:root {
  --navy:    #04111f;
  --navy2:   #081929;
  --navy3:   #0e2640;
  --blue:    #5887BE;
  --blue2:   #7aaedd;
  --orange:  #E76029;
  --orange2: #f07844;
  --white:   #ffffff;
  --light:   #eef2f7;
  --muted:   rgba(255, 255, 255, 0.55);
  --ink:     #0e1a27;
  --text:    #1a3a5c;
  --ease:    cubic-bezier(0.16, 1, 0.3, 1);
  --font-h:  'Space Grotesk', 'Roboto', sans-serif;
  --font-b:  'Roboto', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-b);
  background: var(--light);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── GRAIN OVERLAY ──────────────────────────────────────────────────────── */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.022;
  mix-blend-mode: overlay;
}

/* ── NAVIGATION ─────────────────────────────────────────────────────────── */
.b-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 72px;
  background: rgba(4, 17, 31, 0.95);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid rgba(88, 135, 190, 0.18);
  display: flex;
  align-items: center;
}

.b-nav-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

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

.b-nav-logo img {
  height: 44px;
  display: block;
  transition: opacity 0.2s;
}
.b-nav-logo:hover img { opacity: 0.75; }

.b-nav-links {
  display: flex;
  gap: 0.25rem;
  list-style: none;
  margin-left: auto;
}

.b-link {
  display: block;
  padding: 0.5rem 0.875rem;
  font-family: var(--font-h);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.b-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.b-link.active {
  color: var(--orange);
  background: rgba(231, 96, 41, 0.12);
}

/* Hamburger button */
.b-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
  z-index: 200;
}

.b-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transform-origin: center;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}

.b-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.b-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.b-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 820px) {
  .b-hamburger { display: flex; }

  .b-nav-links {
    position: fixed;
    inset: 72px 0 0;
    background: rgba(4, 17, 31, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }

  .b-nav-links.is-open { opacity: 1; pointer-events: all; }

  .b-link {
    font-size: 1.5rem;
    letter-spacing: 0.06em;
    font-weight: 700;
    padding: 0.75rem 2rem;
  }
}

/* ── HERO (homepage — full height) ──────────────────────────────────────── */
.b-hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.b-hero-slides {
  position: absolute;
  inset: 0;
}

/* The two crossfade images — reuse existing slideshow IDs */
#slideshow-image-1,
#slideshow-image-2 {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

#slideshow-image-1.active,
#slideshow-image-2.active { opacity: 1; z-index: 2; }
#slideshow-image-1:not(.active),
#slideshow-image-2:not(.active) { z-index: 1; }

.b-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(to right,  rgba(4,17,31,0.82) 0%, rgba(4,17,31,0.35) 60%, rgba(4,17,31,0.15) 100%),
    linear-gradient(to top,    rgba(4,17,31,0.65) 0%, transparent 45%);
}

.b-hero-content {
  position: relative;
  z-index: 4;
  padding: 0 6vw;
  max-width: 860px;
}

.b-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-h);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue2);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(16px);
  animation: bUp 0.8s 0.3s var(--ease) forwards;
}

.b-hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--orange);
  flex-shrink: 0;
}

.b-hero-title {
  font-family: var(--font-h);
  font-size: clamp(2.75rem, 7vw, 6.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.75rem;
  opacity: 0;
  transform: translateY(40px);
  animation: bUp 1s 0.45s var(--ease) forwards;
}

.b-hero-title em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,0.7);
}

.b-hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.62);
  max-width: 520px;
  margin-bottom: 2.75rem;
  opacity: 0;
  transform: translateY(20px);
  animation: bUp 0.9s 0.65s var(--ease) forwards;
}

.b-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
  animation: bUp 0.8s 0.85s var(--ease) forwards;
}

@keyframes bUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ── HERO SCROLL HINT ───────────────────────────────────────────────────── */
.b-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 6vw;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: bUp 0.8s 1.4s var(--ease) forwards;
}

.b-scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.45));
  animation: bPulse 2.5s ease-in-out infinite;
}

.b-scroll-hint span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

@keyframes bPulse {
  0%, 100% { opacity: 0.35; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.3); }
}

/* ── PAGE HERO BAND (interior pages) ────────────────────────────────────── */
.b-page-hero {
  margin-top: 72px;
  height: 38vh;
  min-height: 260px;
  max-height: 420px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy3) 100%);
  display: flex;
  align-items: flex-end;
  padding: 3.5rem 6vw;
  position: relative;
  overflow: hidden;
}

.b-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(88,135,190,0.12) 0%, transparent 60%);
  pointer-events: none;
}

/* Optional background image variant */
.b-page-hero[data-img] {
  background-size: cover;
  background-position: center;
}

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

.b-page-label {
  display: block;
  font-family: var(--font-h);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--blue2);
  margin-bottom: 0.875rem;
}

.b-page-title {
  font-family: var(--font-h);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1;
}

/* ── MARQUEE ─────────────────────────────────────────────────────────────── */
.b-marquee {
  background: var(--navy);
  border-top: 1px solid rgba(88,135,190,0.2);
  border-bottom: 1px solid rgba(88,135,190,0.2);
  overflow: hidden;
  padding: 1rem 0;
  white-space: nowrap;
}

.b-marquee-track {
  display: inline-block;
  animation: bMarquee 35s linear infinite;
  font-family: var(--font-h);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.b-marquee:hover .b-marquee-track { animation-play-state: paused; }
.b-marquee-track span { margin-right: 1.75rem; }
.b-marquee-track .msep { color: var(--orange); margin-right: 1.75rem; }

@keyframes bMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── BUTTONS ─────────────────────────────────────────────────────────────── */
.b-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-h);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.875rem 1.875rem;
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
}

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

.b-btn-primary { background: var(--orange); color: var(--white); }
.b-btn-primary:hover { background: var(--orange2); color: var(--white); }

.b-btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.38);
}
.b-btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.b-btn-blue { background: var(--blue); color: var(--white); }
.b-btn-blue:hover { background: var(--blue2); color: var(--white); }

.b-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-h);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  text-decoration: none;
  transition: gap 0.25s var(--ease), color 0.2s;
}

.b-link-arrow:hover { gap: 0.875rem; color: var(--orange); }

/* ── SECTION WRAPPERS ────────────────────────────────────────────────────── */
.b-section {
  padding: 7rem 5vw;
}

.b-section-dark {
  background: var(--navy);
  color: var(--white);
}

.b-section-light {
  background: var(--white);
  color: var(--text);
}

.b-section-mid {
  background: var(--light);
  color: var(--text);
}

.b-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.b-section-label {
  display: block;
  font-family: var(--font-h);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.25rem;
}

.b-section-dark .b-section-label { color: var(--blue2); }

.b-section h2 {
  font-family: var(--font-h);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

.b-section-dark h2 { color: var(--white); }
.b-section-light h2, .b-section-mid h2 { color: var(--navy); }

.b-section p {
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 680px;
}

.b-section-dark p { color: rgba(255,255,255,0.65); padding: 0; }
.b-section-light p, .b-section-mid p { color: #2a4a6e; padding: 0; }

/* ── HOMEPAGE FEATURE CARDS ──────────────────────────────────────────────── */
.b-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  margin-top: 0;
}

.b-card {
  background: var(--navy2);
  color: var(--white);
  padding: 3.5rem 2.5rem;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), background 0.3s;
}

.b-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue) 0%, var(--orange) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.b-card:hover { background: var(--navy3); }
.b-card:hover::before { opacity: 0.1; }

.b-card-icon {
  font-size: 1.75rem;
  margin-bottom: 1.75rem;
  position: relative;
  z-index: 1;
  line-height: 1;
}

.b-card h3 {
  font-family: var(--font-h);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.875rem;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.b-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.52);
  max-width: 100%;
  position: relative;
  z-index: 1;
  padding: 0;
}

.b-card-cta {
  display: block;
  margin-top: 2rem;
  font-family: var(--font-h);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  position: relative;
  z-index: 1;
  transition: color 0.2s;
}
.b-card:hover .b-card-cta { color: var(--orange2); }

.b-section[data-in-view] .b-card:nth-child(1) { opacity:1; transform:translateY(0); transition-delay:0.1s; }
.b-section[data-in-view] .b-card:nth-child(2) { opacity:1; transform:translateY(0); transition-delay:0.2s; }
.b-section[data-in-view] .b-card:nth-child(3) { opacity:1; transform:translateY(0); transition-delay:0.3s; }
.b-section[data-in-view] .b-card:nth-child(4) { opacity:1; transform:translateY(0); transition-delay:0.4s; }

/* ── REVEAL ANIMATIONS ───────────────────────────────────────────────────── */
[data-reveal] { opacity: 0; transform: translateY(32px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
[data-reveal][data-in-view] { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"][data-in-view] { transition-delay: 0.1s; }
[data-reveal-delay="2"][data-in-view] { transition-delay: 0.2s; }
[data-reveal-delay="3"][data-in-view] { transition-delay: 0.3s; }

/* ── CONTENT PAGE LAYOUT ─────────────────────────────────────────────────── */
.b-content {
  max-width: 920px;
  margin: 0 auto;
  padding: 5rem 5vw;
}

.b-content h1 {
  font-family: var(--font-h);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 1rem;
  margin-top: 2.5rem;
}

.b-content h1:first-child { margin-top: 0; }

.b-content h2 {
  font-family: var(--font-h);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 0.875rem;
  margin-top: 3rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(88, 135, 190, 0.2);
}

.b-content h3 {
  font-family: var(--font-h);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--blue);
  margin-bottom: 0.75rem;
  margin-top: 2.25rem;
}

.b-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #2a4a6e;
  margin-bottom: 1.25rem;
  padding: 0;
  max-width: 100%;
}

.b-content a { color: var(--blue); text-decoration: none; transition: color 0.2s; }
.b-content a:hover { color: var(--orange); }

.b-content ol,
.b-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.b-content li {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #2a4a6e;
  margin-bottom: 0.5rem;
  margin-left: 0;
}

.b-content img {
  max-width: 100%;
  border-radius: 8px;
  margin: 1.5rem 0;
}

/* ── PRODUCT BLOCKS ─────────────────────────────────────────────────────── */
.product-grid {
  display: grid;
  gap: 2px;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 5rem;
}

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

.product-card {
  background: var(--navy);
  color: var(--white);
  padding: 3.5rem 3rem;
  position: relative;
  overflow: hidden;
}

.product-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--blue), var(--orange));
}

.product-card h2 {
  font-family: var(--font-h);
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 0.5rem;
  max-width: none;
}

.product-card h2 span {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue2);
  margin-bottom: 0.75rem;
}

.product-card p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  padding: 0;
  max-width: 100%;
  margin-top: 0.875rem;
}

/* BIDAR specs table-style list */
.spec-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: grid;
  gap: 2px;
}

.spec-list li {
  background: rgba(88, 135, 190, 0.07);
  border-left: 3px solid rgba(88, 135, 190, 0.3);
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  color: #2a4a6e;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
}

.spec-list li::before {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

.spec-list li strong { color: var(--navy); }

/* spec-list inside a dark product card */
.product-card .spec-list li {
  background: rgba(255, 255, 255, 0.06);
  border-left-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
}
.product-card .spec-list li strong { color: var(--white); }

/* ── TECH DIAGRAM ────────────────────────────────────────────────────────── */
.tech-diagram {
  background: var(--white);
  border: 1px solid rgba(88,135,190,0.2);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  margin: 2rem 0;
}

.tech-diagram img { max-width: 100%; height: auto; border-radius: 6px; }

/* ── TEAM GRID ───────────────────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2px;
  margin: 2.5rem 0;
}

.team-card {
  background: var(--white);
  padding: 2.75rem 2.25rem;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.team-card:hover { box-shadow: 0 8px 32px rgba(4,17,31,0.12); }

.team-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--blue), var(--orange));
}

.team-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border: 3px solid var(--light);
}

.team-card h3 {
  font-family: var(--font-h);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
  margin-top: 0;
}

.team-card .team-role {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}

.team-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #3a5a7e;
  padding: 0;
  max-width: 100%;
}

.team-card a {
  color: var(--blue);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 1.25rem;
  transition: color 0.2s;
}
.team-card a:hover { color: var(--orange); }

.advisory-section {
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 2px solid rgba(88,135,190,0.15);
}

.advisory-section h2 {
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

/* ── NEWS ITEMS ──────────────────────────────────────────────────────────── */
.news-list { display: flex; flex-direction: column; gap: 2px; }

.news-item {
  background: var(--white);
  padding: 2.25rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.news-item:hover { box-shadow: 0 4px 20px rgba(4,17,31,0.08); }

.news-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--blue);
  transition: background 0.2s;
}

.news-item:hover::before { background: var(--orange); }

.news-date {
  font-family: var(--font-h);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.625rem;
}

.news-item h3 {
  font-family: var(--font-h);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.news-item h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.news-item h3 a:hover { color: var(--blue); }

.news-item p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #3a5a7e;
  padding: 0;
  max-width: 100%;
}

.news-item img {
  max-width: 280px;
  width: 100%;
  border-radius: 8px;
  margin-top: 1.25rem;
}

.events-section { margin-top: 4rem; }
.events-section h2 {
  font-family: var(--font-h);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  padding-top: 2rem;
  border-top: 2px solid rgba(88,135,190,0.15);
}

/* ── CTA BAND ────────────────────────────────────────────────────────────── */
.b-cta {
  background: var(--navy3);
  padding: 6rem 5vw;
  text-align: center;
}

.b-cta-inner { max-width: 700px; margin: 0 auto; }

.b-cta h2 {
  font-family: var(--font-h);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1rem;
}

.b-cta p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  padding: 0;
}

/* ── FOOTER ──────────────────────────────────────────────────────────────── */
.b-footer {
  background: var(--navy);
  border-top: 1px solid rgba(88,135,190,0.15);
  padding: 4rem 5vw 3rem;
}

.b-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.b-footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 2rem;
}

.b-footer-brand img { height: 40px; opacity: 0.85; }

.b-footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  margin-top: 1rem;
  line-height: 1.6;
  padding: 0;
  max-width: 260px;
}

.b-footer-nav h4 {
  font-family: var(--font-h);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1.25rem;
}

.b-footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }

.b-footer-nav a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.b-footer-nav a:hover { color: var(--white); }

.b-footer-social {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.b-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  transition: background 0.2s;
}

.b-footer-social a:hover { background: rgba(88,135,190,0.3); }
.b-footer-social img { width: 18px; height: 18px; opacity: 0.7; filter: brightness(10); }

.b-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.b-footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.22);
  padding: 0;
}

.b-footer-email a {
  font-family: var(--font-h);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.b-footer-email a:hover { color: var(--orange); }

/* ── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .b-section { padding: 5rem 1.5rem; }
  .b-content { padding: 3rem 1.5rem; }
  .b-page-hero { padding: 2.5rem 1.5rem; }
  .b-hero-content { padding: 0 1.5rem; }
  .b-scroll-hint { left: 1.5rem; }
  .b-footer-top { flex-direction: column; }
  .b-footer-bottom { flex-direction: column; align-items: flex-start; }
  .b-cta { padding: 4rem 1.5rem; }
  .product-card { padding: 2.5rem 1.75rem; }
  .team-card { padding: 2.25rem 1.75rem; }
  .news-item { padding: 1.75rem 1.5rem 1.75rem 1.75rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
