/* ============================================
   FABIS x FOERCH -- Static site styles
   Foerch-style light theme: white/light backgrounds,
  blue (#005AA9) as sole accent colour.
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800;900&family=Inter:wght@400;500;600;700&display=swap');

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
  color: #1a1a1a;
}
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -0.02em;
  margin: 0;
}
::selection { background: #005AA9; color: #fff; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #f5f5f5; }
::-webkit-scrollbar-thumb { background: #005AA9; }
::-webkit-scrollbar-thumb:hover { background: #004786; }

/* Layout */
.container-custom { max-width: 80rem; margin-inline: auto; padding-inline: 1.5rem; }
@media (min-width: 768px) { .container-custom { padding-inline: 3rem; } }
.section-padding { padding-block: 5rem; }
@media (min-width: 768px) { .section-padding { padding-block: 8rem; } }

/* Typography */
.heading-display {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.95;
  text-transform: uppercase;
}
.overline {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #005AA9;
}

/* Buttons */
.btn-primary {
  background: #005AA9; color: #fff;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  padding: 1rem 2rem; display: inline-flex; align-items: center; gap: 0.75rem;
  border: none; cursor: pointer; transition: all 0.25s ease;
  font-size: 0.875rem; text-decoration: none; font-family: inherit; min-height: 44px;
}
.btn-primary:hover { background: #004786; transform: translateY(-2px); }
.btn-primary:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.btn-secondary {
  background: transparent; color: #1a1a1a;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  padding: 1rem 2rem; border: 2px solid #1a1a1a;
  display: inline-flex; align-items: center; gap: 0.75rem;
  cursor: pointer; transition: all 0.25s ease;
  font-size: 0.875rem; text-decoration: none; font-family: inherit; min-height: 44px;
}
.btn-secondary:hover { background: #1a1a1a; color: #fff; }
.btn-ghost-light {
  background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.4);
  padding: 1rem 2rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.05em; font-size: 0.875rem; cursor: pointer;
  transition: all 0.25s ease; text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.75rem; font-family: inherit; min-height: 44px;
}
.btn-ghost-light:hover { border-color: #fff; background: #fff; color: #005AA9; }
.btn-ghost-dark {
  background: transparent; color: #1a1a1a; border: 2px solid #d0d0d0;
  padding: 1rem 2rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.05em; font-size: 0.875rem; cursor: pointer;
  transition: all 0.25s ease; text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.75rem; font-family: inherit; min-height: 44px;
}
.btn-ghost-dark:hover { border-color: #005AA9; color: #005AA9; }

/* Patterns */
.bg-grid-pattern {
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}
.bg-grid-light {
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s cubic-bezier(0.2,0.8,0.2,1), transform 0.8s cubic-bezier(0.2,0.8,0.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---- Header ---- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.08); }
.nav-row { display: flex; align-items: center; justify-content: space-between; height: 5rem; }
.brand-lockup {
  display: flex; align-items: center; gap: 0.75rem;
  text-decoration: none; background: none; border: none; cursor: pointer; padding: 0;
}
.brand-fabis {
  background: #005AA9; color: #fff;
  padding: 0.375rem 0.75rem;
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: 1.25rem; letter-spacing: -0.02em;
  transition: background 0.2s ease;
}
.brand-lockup:hover .brand-fabis { background: #004786; }
.brand-x {
  color: #888; font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.2em;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
@media (max-width: 640px) { .brand-x { display: none; } }
.nav-desktop { display: none; align-items: center; gap: 2.5rem; }
@media (min-width: 1024px) { .nav-desktop { display: flex; } }
.nav-link {
  background: none; border: none;
  color: #333; font-size: 0.875rem; font-weight: 600; letter-spacing: 0.025em;
  cursor: pointer; transition: color 0.2s ease; position: relative;
  font-family: inherit; text-decoration: none; padding: 0;
  min-height: 44px; display: inline-flex; align-items: center;
}
.nav-link:hover { color: #005AA9; }
.nav-link::after {
  content: ''; position: absolute; bottom: -0.25rem; left: 0;
  width: 0; height: 2px; background: #005AA9; transition: width 0.3s ease;
}
.nav-link:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 0.75rem; }
.lang-toggle {
  display: none; align-items: center;
  background: #f5f5f5; border: 1px solid #e5e5e5; padding: 2px;
}
@media (min-width: 768px) { .lang-toggle { display: flex; } }
.lang-btn {
  background: none; border: none; padding: 0.375rem 0.75rem;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.05em;
  color: #888; cursor: pointer; transition: all 0.2s ease; font-family: inherit;
}
.lang-btn:hover { color: #1a1a1a; }
.lang-btn.is-active { background: #005AA9; color: #fff; }
.nav-cta {
  display: none; align-items: center; gap: 0.5rem;
  background: #005AA9; color: #fff;
  padding: 0.625rem 1.25rem;
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  border: none; cursor: pointer; transition: background 0.2s ease;
  font-family: inherit; text-decoration: none; min-height: 44px;
}
.nav-cta:hover { background: #004786; }
@media (min-width: 768px) { .nav-cta { display: inline-flex; } }
.mobile-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  background: none; border: none; color: #1a1a1a;
  padding: 0.5rem; cursor: pointer; min-height: 44px;
}
@media (min-width: 1024px) { .mobile-toggle { display: none; } }
.mobile-drawer {
  position: fixed; inset: 0; z-index: 40;
  background: #fff; padding-top: 5rem; display: none;
  border-top: 1px solid #e8e8e8;
  overflow-y: auto; -webkit-overflow-scrolling: touch; max-height: 100vh;
}
.mobile-drawer.is-open { display: block; }
.mobile-nav {
  display: flex; flex-direction: column;
  padding: 2rem 1.5rem; gap: 0;
}
.mobile-nav .nav-link {
  text-align: left; font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem; font-weight: 900; text-transform: uppercase;
  color: #1a1a1a; padding: 1rem 0;
  border-bottom: 1px solid #f0f0f0; min-height: unset;
}
.mobile-nav .nav-link::after { display: none; }
.mobile-nav .nav-link:hover { color: #005AA9; }

/* ---- Hero ---- */
.hero-section {
  position: relative; min-height: 100vh;
  background: #F5F7F8; color: #1a1a1a;
  overflow: hidden; display: flex; align-items: flex-end;
  padding-top: 5rem;
}
.hero-bg-image {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; opacity: 0.06;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(245,247,248,0.97) 40%, rgba(245,247,248,0.8) 100%);
}
.hero-section::after {
  content: ''; position: absolute;
  left: 0; top: 5rem; bottom: 0;
  width: 5px; background: #005AA9;
}
.hero-content {
  position: relative; z-index: 10; width: 100%;
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 2.5rem;
  padding-block: 4rem 4rem;
}
.hero-text { grid-column: 1 / -1; }
@media (min-width: 1024px) { .hero-text { grid-column: 1 / span 8; } }
.hero-overline-row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 2rem; }
.hero-overline-bar { display: block; width: 3rem; height: 2px; background: #005AA9; }
.hero-title { font-size: 3rem; line-height: 0.95; color: #1a1a1a; }
@media (min-width: 640px) { .hero-title { font-size: 3.75rem; } }
@media (min-width: 768px) { .hero-title { font-size: 4.5rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 6rem; } }
.hero-title .accent { color: #005AA9; }
.hero-title .accent-logo { display: inline-flex; align-items: baseline; }
.hero-forch-logo { height: 0.9em; width: auto; transform: translateY(0.03em); }
.hero-subtitle {
  margin-top: 2rem; font-size: 1.125rem;
  color: #5e5e66; max-width: 36rem; line-height: 1.6;
}
@media (min-width: 768px) { .hero-subtitle { font-size: 1.25rem; } }
.hero-usp-list {
  margin-top: 1.4rem; display: grid;
  grid-template-columns: 1fr; gap: 0.55rem; max-width: 42rem;
}
.hero-usp-item {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.84rem; text-transform: uppercase; letter-spacing: 0.06em; color: #333;
}
.hero-usp-item::before { content: ''; width: 9px; height: 9px; background: #005AA9; flex-shrink: 0; }
@media (min-width: 768px) {
  .hero-usp-list { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
}
.hero-ctas { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 640px) { .hero-ctas { flex-direction: row; } }
.hero-stats {
  margin-top: 4rem; display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; max-width: 36rem;
  border-top: 2px solid #e5e5e5; padding-top: 2rem;
}
.hero-stat-num {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: 1.875rem; color: #005AA9; line-height: 1;
}
@media (min-width: 768px) { .hero-stat-num { font-size: 2.5rem; } }
.hero-stat-label {
  font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: #888; margin-top: 0.25rem;
}
.hero-canvas {
  position: absolute; inset: 0; pointer-events: none;
  display: flex; align-items: center; justify-content: flex-end;
  padding-right: 1rem; opacity: 0.12;
}
@media (min-width: 768px) { .hero-canvas { padding-right: 4rem; opacity: 0.18; } }
@media (min-width: 1024px) { .hero-canvas { padding-right: 6rem; opacity: 0.22; } }
.hero-glow {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,90,169,0.07) 0%, rgba(0,90,169,0.02) 40%, transparent 70%);
  pointer-events: none;
}
.gear-cluster {
  position: relative; transform-style: preserve-3d;
  transform: rotateX(20deg) rotateY(-15deg);
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
  color: #c8c8c8;
}
.gear-main { animation: gear-spin 28s linear infinite; }
.gear-small { position: absolute; top: -30px; right: -100px; animation: gear-spin-rev 18s linear infinite; }
.gear-tiny { position: absolute; bottom: -40px; left: -80px; animation: gear-spin 22s linear infinite; }
@media (max-width: 767px) { .gear-tiny { display: none; } }
.hexagon { position: absolute; filter: drop-shadow(0 0 10px rgba(0,90,169,0.3)); animation: float 4s ease-in-out infinite; }
@media (max-width: 767px) { .hexagon { display: none; } }
.hex-1 { top: 12%; right: 12%; }
.hex-2 { bottom: 18%; right: 34%; animation-delay: 1.2s; animation-duration: 5.2s; }
.hex-3 { top: 40%; right: 55%; animation-delay: 2.4s; animation-duration: 6.4s; }
@keyframes gear-spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }
@keyframes gear-spin-rev { from { transform: rotate(0); } to { transform: rotate(-360deg); } }
@keyframes float { 0%, 100% { transform: translateY(-8px); } 50% { transform: translateY(8px); } }
.scroll-indicator {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  display: none; flex-direction: column; align-items: center; gap: 0.5rem;
  color: #bbb; animation: bob 1.6s ease-in-out infinite;
}
@media (min-width: 768px) { .scroll-indicator { display: flex; } }
.scroll-indicator span { font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.3em; }
@keyframes bob { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* ---- Trust marquee ---- */
.trust-marquee {
  background: #005AA9; color: #fff;
  padding: 1.25rem 0; overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.marquee-track { display: flex; width: max-content; animation: marquee-scroll 35s linear infinite; }
.marquee-item {
  display: flex; align-items: center; gap: 0.75rem; padding-inline: 2rem;
  white-space: nowrap; flex-shrink: 0;
  font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
}
@media (min-width: 768px) { .marquee-item { font-size: 1rem; } }
.marquee-sep { color: rgba(255,255,255,0.4); margin-left: 2rem; }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- Sectors ---- */
.sectors-section { background: #fff; }
.section-header { max-width: 48rem; margin-bottom: 4rem; }
@media (min-width: 768px) { .section-header { margin-bottom: 5rem; } }
.section-title {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: 2.25rem; text-transform: uppercase;
  letter-spacing: -0.04em; line-height: 1.05; color: #1a1a1a;
}
@media (min-width: 768px) { .section-title { font-size: 3rem; } }
@media (min-width: 1024px) { .section-title { font-size: 3.75rem; } }
.section-subtitle {
  margin-top: 1.5rem; font-size: 1.125rem;
  color: #5e5e66; max-width: 40rem; line-height: 1.7;
}
.sectors-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .sectors-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; } }
@media (min-width: 1024px) { .sectors-grid { grid-template-columns: repeat(4, 1fr); } }
.sector-card {
  position: relative; background: #fff; border: 1px solid #e5e5e5;
  overflow: hidden; cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.2,0.8,0.2,1), box-shadow 0.4s ease, border-color 0.3s ease;
  display: block; text-decoration: none; color: inherit;
}
.sector-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
  border-color: #005AA9;
}
.sector-card-image-wrap {
  position: relative; aspect-ratio: 4/3; overflow: hidden; background: #f5f5f5;
}
.sector-card-image {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(100%); transition: filter 0.7s ease, transform 0.7s ease;
}
.sector-card:hover .sector-card-image { filter: grayscale(0); transform: scale(1.05); }
.sector-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent 60%);
}
.sector-card-icon {
  position: absolute; top: 1rem; left: 1rem;
  background: #005AA9; color: #fff;
  width: 2.5rem; height: 2.5rem; display: flex; align-items: center; justify-content: center;
}
.sector-card-num {
  position: absolute; top: 1rem; right: 1rem;
  color: rgba(255,255,255,0.8); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em;
}
.sector-card-body { padding: 1.5rem; }
@media (min-width: 768px) { .sector-card-body { padding: 1.75rem; } }
.sector-card-title {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 1.25rem; text-transform: uppercase;
  margin-bottom: 0.75rem; color: #1a1a1a;
}
@media (min-width: 768px) { .sector-card-title { font-size: 1.5rem; } }
.sector-card-desc { font-size: 0.875rem; color: #5e5e66; line-height: 1.6; margin-bottom: 1rem; }
.sector-card-learn {
  padding-top: 0.75rem; border-top: 1px solid #e5e5e5;
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: #1a1a1a; transition: color 0.3s ease;
}
.sector-card:hover .sector-card-learn { color: #005AA9; }
.sector-card-learn svg { transition: transform 0.3s ease; }
.sector-card:hover .sector-card-learn svg { transform: rotate(45deg); }

/* ---- About ---- */
.about-section { position: relative; background: #F5F7F8; color: #1a1a1a; overflow: hidden; }
.about-watermark {
  position: absolute; top: -2.5rem; right: -2.5rem;
  pointer-events: none; user-select: none; opacity: 0.05;
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: 12rem; line-height: 1; white-space: nowrap;
  -webkit-text-stroke: 2px rgba(0,0,0,0.15); color: transparent;
}
@media (min-width: 768px) { .about-watermark { font-size: 18rem; } }
.about-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; position: relative; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 7fr 5fr; gap: 4rem; } }
.about-text-block { display: flex; flex-direction: column; }
.about-paragraphs {
  margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem;
  max-width: 40rem; font-size: 1rem; color: #5e5e66; line-height: 1.7;
}
@media (min-width: 768px) { .about-paragraphs { font-size: 1.125rem; } }
.about-badge {
  margin-top: 2.5rem; display: inline-flex; align-items: center; gap: 0.75rem;
  background: rgba(0,90,169,0.06); border: 1px solid rgba(0,90,169,0.25);
  padding: 0.75rem 1rem; font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.2em; font-weight: 700;
  align-self: flex-start; color: #005AA9;
}
.about-badge .pulse {
  width: 0.5rem; height: 0.5rem; background: #005AA9; border-radius: 50%;
  animation: pulse-red 2s infinite;
}
@keyframes pulse-red {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,90,169,0.6); }
  50% { box-shadow: 0 0 0 14px rgba(0,90,169,0); }
}
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; align-self: flex-end; }
@media (min-width: 1024px) { .stats-grid { gap: 2.5rem; } }
.stat-item { border-top: 2px solid #e5e5e5; padding-top: 1.5rem; }
.stat-num {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: 3rem; color: #005AA9; line-height: 1; letter-spacing: -0.03em;
}
@media (min-width: 768px) { .stat-num { font-size: 3.75rem; } }
.stat-label { margin-top: 0.75rem; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.2em; color: #888; }

/* ---- Catalog CTA ---- */
.catalog-section { background: #fff; position: relative; overflow: hidden; }
.catalog-card {
  background: #fff; color: #1a1a1a; border-left: 6px solid #005AA9;
  border: 1px solid #e5e5e5;
  padding: 2rem; display: grid; grid-template-columns: 1fr; gap: 2.5rem;
  align-items: center; position: relative; overflow: hidden;
}
@media (min-width: 768px) { .catalog-card { padding: 4rem; } }
@media (min-width: 1024px) { .catalog-card { grid-template-columns: 7fr 5fr; } }
.catalog-watermark {
  position: absolute; bottom: -2.5rem; right: -2.5rem;
  pointer-events: none; opacity: 0.07;
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: 10rem; line-height: 1; color: #1a1a1a; white-space: nowrap;
}
@media (min-width: 768px) { .catalog-watermark { font-size: 16rem; } }
.catalog-overline {
  display: flex; align-items: center; gap: 0.5rem;
  color: #005AA9; font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.25em; margin-bottom: 1rem;
}
.catalog-title {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: 1.875rem; text-transform: uppercase;
  letter-spacing: -0.03em; line-height: 1.05;
}
@media (min-width: 768px) { .catalog-title { font-size: 3rem; } }
.catalog-subtitle {
  margin-top: 1.5rem; font-size: 1rem;
  color: #5e5e66; max-width: 36rem; line-height: 1.7;
}
@media (min-width: 768px) { .catalog-subtitle { font-size: 1.125rem; } }
.catalog-cta-btn {
  display: inline-flex; align-items: center; gap: 1rem;
  background: #005AA9; color: #fff; padding: 1.5rem 2rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  font-size: 1rem; text-decoration: none; transition: all 0.3s ease;
  position: relative; z-index: 1;
}
.catalog-cta-btn:hover { background: #fff; color: #1a1a1a; }
.catalog-cta-icon {
  width: 2.5rem; height: 2.5rem;
  background: rgba(255,255,255,0.2);
  display: inline-flex; align-items: center; justify-content: center; transition: all 0.3s ease;
}
.catalog-cta-btn:hover .catalog-cta-icon { background: #005AA9; color: #fff; }

/* ---- Contact ---- */
.contact-section { background: #F5F7F8; }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 7fr 5fr; gap: 5rem; } }
.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 0.5rem; }
.form-label {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.2em; color: #888;
}
.form-label .required { color: #005AA9; margin-left: 0.25rem; }
.form-input, .form-select {
  width: 100%; background: #fff; border: none;
  border-bottom: 2px solid #d5d5d5; padding: 0.75rem 0;
  font-size: 1rem; color: #1a1a1a; outline: none;
  transition: border-color 0.2s ease; font-family: inherit;
}
.form-input:focus, .form-select:focus { border-color: #005AA9; }
.form-textarea {
  width: 100%; background: #fff; border: 2px solid #d5d5d5;
  padding: 1rem; font-size: 1rem; color: #1a1a1a; outline: none;
  resize: none; transition: border-color 0.2s ease; font-family: inherit;
}
.form-textarea:focus { border-color: #005AA9; }
.contact-info-card {
  background: #fff; border: 1px solid #e5e5e5; border-top: 4px solid #005AA9;
  color: #1a1a1a; padding: 2rem;
  display: flex; flex-direction: column; gap: 2rem;
  position: relative; overflow: hidden;
}
@media (min-width: 768px) { .contact-info-card { padding: 2.5rem; } }
.contact-info-badge {
  position: absolute; top: 0; right: 0;
  background: #005AA9; color: #fff;
  padding: 0.375rem 0.75rem;
  font-size: 0.625rem; text-transform: uppercase;
  letter-spacing: 0.2em; font-weight: 700;
}
.info-row { display: flex; gap: 1.25rem; }
.info-icon {
  flex-shrink: 0; width: 3rem; height: 3rem;
  background: rgba(0,90,169,0.07); border: 1px solid rgba(0,90,169,0.2);
  display: flex; align-items: center; justify-content: center; color: #005AA9;
}
.info-label {
  font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.2em; color: #aaa; font-weight: 700; margin-bottom: 0.5rem;
}
.info-line { color: #1a1a1a; font-weight: 500; line-height: 1.5; }
.info-line a { color: inherit; text-decoration: none; }
.info-line a:hover { color: #005AA9; }

/* ---- Footer ---- */
.site-footer {
  background: #F5F7F8; color: #1a1a1a;
  padding: 5rem 0 2.5rem; border-top: 4px solid #005AA9;
}
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 5fr 2fr 2fr 3fr; gap: 3rem; } }
.footer-tagline { color: #5e5e66; line-height: 1.7; max-width: 28rem; margin: 0; }
.footer-partner-badge {
  margin-top: 1.5rem; display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1px solid #d9d9d9; padding: 0.5rem 0.75rem;
  font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.25em; font-weight: 700;
}
.footer-scope {
  margin-top: 0.875rem; color: #4b4b51;
  font-size: 0.75rem; line-height: 1.6; max-width: 34rem;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.footer-partner-badge .dot { width: 0.375rem; height: 0.375rem; border-radius: 50%; background: #005AA9; }
.footer-col-title {
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.25em;
  font-weight: 700; color: #888; margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.75rem; }
.footer-col a, .footer-col button {
  background: none; border: none; padding: 0; cursor: pointer;
  color: #1a1a1a; font-size: 0.875rem;
  text-transform: uppercase; letter-spacing: 0.05em;
  transition: color 0.2s ease; text-decoration: none; font-family: inherit;
}
.footer-col a:hover, .footer-col button:hover { color: #005AA9; }
.footer-contact-list { color: #4b4b51; font-size: 0.875rem; line-height: 1.8; }
.footer-contact-list a { color: inherit; text-decoration: none; }
.footer-contact-list a:hover { color: #005AA9; }
.footer-bottom {
  border-top: 1px solid #e2e2e2; padding-top: 1.5rem;
  display: flex; flex-direction: column; gap: 1rem;
  justify-content: space-between; align-items: flex-start;
  font-size: 0.75rem; color: #888;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; align-items: center; } }
.footer-credit {
  text-transform: uppercase; letter-spacing: 0.2em;
  display: flex; align-items: center; gap: 0.5rem;
}
.footer-credit a {
  color: #1a1a1a; text-decoration: none;
  font-weight: 700; letter-spacing: 0.1em; transition: color 0.2s ease;
}
.footer-credit a:hover { color: #005AA9; }

/* ---- Toast ---- */
.toast-container {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 100;
  display: flex; flex-direction: column; gap: 0.5rem; pointer-events: none;
}
.toast {
  pointer-events: auto; padding: 1rem 1.5rem;
  background: #fff; color: #1a1a1a; font-size: 0.875rem; font-weight: 600;
  border-left: 4px solid #005AA9; box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  min-width: 280px; animation: toast-in 0.3s cubic-bezier(0.2,0.8,0.2,1);
}
.toast.success { border-left-color: #22c55e; }
.toast.error { border-left-color: #005AA9; }
.toast.fade-out { animation: toast-out 0.3s ease forwards; }
@keyframes toast-in { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes toast-out { to { transform: translateX(100%); opacity: 0; } }

/* ---- Legal ---- */
.legal-page { background: #fff; min-height: 100vh; }
.legal-header { background: #fff; border-bottom: 1px solid #e8e8e8; }
.legal-header-row { display: flex; align-items: center; justify-content: space-between; height: 5rem; }
.legal-back {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: #888; font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.1em; font-weight: 700; text-decoration: none;
}
.legal-back:hover { color: #005AA9; }
.legal-main { padding-block: 5rem; max-width: 56rem; margin-inline: auto; padding-inline: 1.5rem; }
@media (min-width: 768px) { .legal-main { padding-block: 7rem; padding-inline: 3rem; } }
.legal-title {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: 2.5rem; text-transform: uppercase;
  letter-spacing: -0.03em; line-height: 1.05; margin-bottom: 3rem; color: #1a1a1a;
}
@media (min-width: 768px) { .legal-title { font-size: 3.75rem; } }
.legal-section { margin-bottom: 2.5rem; }
.legal-section h2 {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 1.5rem; text-transform: uppercase;
  letter-spacing: -0.02em; margin-bottom: 0.75rem; color: #1a1a1a;
}
.legal-section p { font-size: 1rem; line-height: 1.7; color: #5e5e66; white-space: pre-line; margin: 0; }
.legal-updated {
  margin-top: 5rem; padding-top: 2.5rem;
  border-top: 1px solid #e5e5e5; font-size: 0.875rem; color: #5e5e66;
}

/* ==============================================
   Sector pages
   ============================================== */
.sector-hero {
  position: relative; background: #1a1a1a; color: #fff;
  overflow: hidden; padding-top: 5rem;
  min-height: 70vh; display: flex; align-items: center;
}
.sector-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; opacity: 0.4; filter: grayscale(20%);
}
.sector-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.90) 0%, rgba(26,26,26,0.75) 60%, rgba(0,90,169,0.15) 100%);
}
.sector-hero-content {
  position: relative; z-index: 2; padding-block: 4rem; width: 100%; max-width: 52rem;
}
.sector-breadcrumb {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.6); font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.2em; text-decoration: none;
  margin-bottom: 2.5rem; transition: color 0.2s ease; min-height: 44px;
}
.sector-breadcrumb:hover { color: #005AA9; }
.sector-hero-row {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem;
}
.sector-hero-icon {
  width: 4rem; height: 4rem; background: #005AA9;
  display: flex; align-items: center; justify-content: center; color: #fff;
}
.sector-hero-num {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: 4rem; color: rgba(255,255,255,0.1);
  -webkit-text-stroke: 2px rgba(255,255,255,0.2); line-height: 1; letter-spacing: -0.05em;
}
@media (min-width: 768px) { .sector-hero-num { font-size: 6rem; } }
.sector-hero-title { font-size: 2.5rem; line-height: 1.05; margin-bottom: 1.5rem; color: #fff; }
@media (min-width: 768px) { .sector-hero-title { font-size: 4rem; } }
@media (min-width: 1024px) { .sector-hero-title { font-size: 5rem; } }
.sector-hero-sub {
  font-size: 1.125rem; color: rgba(255,255,255,0.8);
  line-height: 1.7; max-width: 40rem; margin-bottom: 2.5rem;
}
@media (min-width: 768px) { .sector-hero-sub { font-size: 1.25rem; } }
.sector-hero-ctas { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 640px) { .sector-hero-ctas { flex-direction: row; } }

.sector-categories { background: #F5F7F8; }
.sector-cat-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .sector-cat-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; } }
@media (min-width: 1024px) { .sector-cat-grid { grid-template-columns: repeat(3, 1fr); } }
.sector-cat-card {
  position: relative; background: #fff; border: 1px solid #e5e5e5; padding: 2rem;
  transition: transform 0.3s cubic-bezier(0.2,0.8,0.2,1), box-shadow 0.3s ease, border-color 0.3s ease;
}
.sector-cat-card:hover {
  transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); border-color: #005AA9;
}
.sector-cat-icon {
  width: 3rem; height: 3rem; background: rgba(0,90,169,0.08); color: #005AA9;
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 1.5rem;
  transition: background 0.3s ease, color 0.3s ease;
}
.sector-cat-card:hover .sector-cat-icon { background: #005AA9; color: #fff; }
.sector-cat-num {
  position: absolute; top: 1.5rem; right: 1.5rem;
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: 1.5rem; color: rgba(0,0,0,0.07); letter-spacing: -0.02em;
}
.sector-cat-title {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.25rem;
  text-transform: uppercase; letter-spacing: -0.02em; margin-bottom: 0.75rem; color: #1a1a1a;
}
.sector-cat-desc { color: #5e5e66; font-size: 0.925rem; line-height: 1.6; margin: 0; }

/* Sector bottom CTA -- red bar */
.sector-bottom-cta { background: #005AA9; }
.sector-cta-card {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; padding: 3rem 0;
}
@media (min-width: 1024px) { .sector-cta-card { grid-template-columns: 7fr 5fr; padding: 4rem 0; } }
.sector-cta-title {
  font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 2.25rem;
  color: #fff; text-transform: uppercase; letter-spacing: -0.03em; line-height: 1.05;
}
@media (min-width: 768px) { .sector-cta-title { font-size: 3rem; } }
.sector-cta-sub {
  margin-top: 1rem; font-size: 1rem; color: rgba(255,255,255,0.88);
  line-height: 1.7; max-width: 36rem;
}
.sector-cta-actions { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 640px) { .sector-cta-actions { flex-direction: row; flex-wrap: wrap; } }
@media (min-width: 1024px) { .sector-cta-actions { justify-content: flex-end; } }
.sector-bottom-cta .btn-primary { background: #fff; color: #005AA9; }
.sector-bottom-cta .btn-primary:hover { background: #1a1a1a; color: #fff; }
.sector-bottom-cta .btn-ghost-light { border-color: rgba(255,255,255,0.65); }
.sector-bottom-cta .overline { color: rgba(255,255,255,0.8); }

/* ---- Generic subpages ---- */
.page-hero {
  position: relative; padding-top: 5rem;
  background: #F5F7F8; color: #1a1a1a; overflow: hidden;
  border-bottom: 3px solid #005AA9;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 70px 70px; pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; padding-block: 4.5rem 3.5rem; }
.page-hero-title { font-size: 2.3rem; line-height: 1.02; text-transform: uppercase; color: #1a1a1a; }
@media (min-width: 768px) { .page-hero-title { font-size: 3.5rem; } }
.page-hero-sub { margin-top: 1.25rem; color: #5e5e66; max-width: 44rem; line-height: 1.7; }

/* ---- Products ---- */
.product-grid { display: grid; grid-template-columns: 1fr; gap: 1.2rem; }
@media (min-width: 640px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .product-grid { grid-template-columns: repeat(4, 1fr); } }
.product-card {
  display: block; text-decoration: none; color: inherit;
  background: #fff; border: 1px solid #e5e5e5; padding: 1.5rem;
  min-height: 16.5rem; position: relative;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}
.product-card:hover { transform: translateY(-4px); border-color: #005AA9; box-shadow: 0 18px 35px rgba(0,0,0,0.08); }
.product-card-num {
  position: absolute; top: 1rem; right: 1rem;
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  color: rgba(0,0,0,0.07); font-size: 1.7rem;
}
.product-card-icon {
  width: 3rem; height: 3rem; display: inline-flex; align-items: center; justify-content: center;
  color: #005AA9; background: rgba(0,90,169,0.07);
}
.product-card-title {
  margin-top: 1rem; font-family: 'Montserrat', sans-serif;
  text-transform: uppercase; font-size: 1.05rem; line-height: 1.25; color: #1a1a1a;
}
.product-card-desc { margin-top: 0.6rem; color: #5e5e66; line-height: 1.6; font-size: 0.92rem; }
.product-card-link {
  margin-top: 1rem; padding-top: 0.8rem; border-top: 1px solid #ececec;
  display: inline-flex; align-items: center; gap: 0.45rem;
  text-transform: uppercase; letter-spacing: 0.09em;
  font-size: 0.72rem; font-weight: 700; color: #005AA9;
}
.seo-copy-section { background: #F5F7F8; border-top: 1px solid #e5e5e5; }
.seo-copy-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .seo-copy-grid { grid-template-columns: repeat(3, 1fr); } }
.seo-copy-card {
  background: #fff; border: 1px solid #e5e5e5; border-top: 3px solid #005AA9; padding: 1.25rem;
}
.seo-copy-card h3 {
  margin: 0; font-family: 'Montserrat', sans-serif;
  font-size: 1rem; text-transform: uppercase; line-height: 1.3; color: #1a1a1a;
}
.seo-copy-card p { margin: 0.65rem 0 0; color: #5e5e66; line-height: 1.7; font-size: 0.93rem; }

/* ---- About subpage ---- */
.about-two-col { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 1024px) { .about-two-col { grid-template-columns: 7fr 5fr; gap: 3rem; } }
.about-text-stack p { margin: 0 0 1.2rem; line-height: 1.8; color: #4b4b51; }
.about-side-stats { background: #F5F7F8; color: #1a1a1a; padding: 1.6rem; border-left: 4px solid #005AA9; border: 1px solid #e5e5e5; }
.side-stat { padding: 0.9rem 0; border-bottom: 1px solid #e5e5e5; }
.side-stat:last-child { border-bottom: none; }
.side-stat-num { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 2rem; color: #005AA9; }
.side-stat-label { font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: #5e5e66; }
.values-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }
.value-card { background: #fff; border: 1px solid #e5e5e5; border-top: 3px solid #005AA9; padding: 1.5rem; }
.value-icon { color: #005AA9; }
.value-title { margin-top: 0.8rem; font-family: 'Montserrat', sans-serif; text-transform: uppercase; font-size: 1rem; color: #1a1a1a; }
.value-desc { margin-top: 0.55rem; color: #5e5e66; line-height: 1.65; font-size: 0.93rem; }

/* ---- Career ---- */
.job-card { background: #fff; border: 1px solid #e5e5e5; border-left: 4px solid #005AA9; padding: 1.7rem; }
.job-card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.job-title { font-family: 'Montserrat', sans-serif; text-transform: uppercase; font-size: 1.4rem; color: #1a1a1a; }
.job-meta { margin-top: 0.4rem; color: #6a6a72; font-weight: 600; }
.job-badge { width: 2.6rem; height: 2.6rem; background: #005AA9; color: #fff; display: inline-flex; align-items: center; justify-content: center; }
.job-desc { margin-top: 1rem; color: #4b4b51; line-height: 1.7; }
.job-two-col { display: grid; grid-template-columns: 1fr; gap: 1.3rem; margin-top: 1.25rem; }
@media (min-width: 768px) { .job-two-col { grid-template-columns: 1fr 1fr; } }
.job-subhead { font-family: 'Montserrat', sans-serif; text-transform: uppercase; font-size: 0.95rem; color: #1a1a1a; }
.job-list { margin: 0.6rem 0 0; padding-left: 1.2rem; color: #4f4f56; line-height: 1.6; }
.job-apply { margin-top: 1.3rem; }
.job-apply-note { margin-top: 0.65rem; color: #6a6a72; font-size: 0.92rem; }

/* ==============================================
   Mobile-First + Performance
   ============================================== */
.btn-primary, .btn-secondary, .btn-ghost-light, .btn-ghost-dark,
.nav-cta, .mobile-toggle, .sector-breadcrumb, .nav-link { min-height: 44px; }
.form-input, .form-select, .form-textarea { font-size: 1rem; }
.mobile-drawer { overflow-y: auto; -webkit-overflow-scrolling: touch; max-height: calc(100vh - 5rem); }
@media (max-width: 639px) {
  .sector-cat-card { padding: 1.25rem; }
  .sector-cta-card { padding: 2rem 0; }
  .sector-hero-content { padding-block: 2rem 1.5rem; }
  .page-hero-inner { padding-block: 3rem 2.5rem; }
  .page-hero-title { font-size: 1.75rem; }
  .product-grid { gap: 0.8rem; }
  .hero-stats { gap: 1rem; }
  .contact-info-card { padding: 1.5rem; }
}
@media (max-width: 767px) {
  .hero-usp-list { max-width: 100%; }
  .footer-scope { font-size: 0.82rem; }
}
:focus-visible { outline: 2px solid #005AA9; outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  .btn-primary:hover, .sector-card:hover, .product-card:hover { transform: none; }
  .gear-main, .gear-small, .gear-tiny { animation: none; }
}
@media print {
  .site-header, .mobile-drawer, .trust-marquee, .scroll-indicator, .hero-canvas { display: none !important; }
  body { background: #fff; color: #000; }
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 120;
}

.cookie-banner-content {
  max-width: 52rem;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #dfe3e8;
  box-shadow: 0 18px 44px rgba(8, 24, 40, 0.18);
  padding: 1rem;
}

.cookie-banner-content strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  margin-bottom: 0.45rem;
}

.cookie-banner-content p {
  margin: 0;
  color: #404852;
  line-height: 1.5;
  font-size: 0.92rem;
}

.cookie-banner-actions {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.65rem;
}

.cookie-banner-actions .btn-secondary,
.cookie-banner-actions .btn-primary {
  padding: 0.7rem 1.1rem;
  min-height: 40px;
}

.cookie-settings-fab {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 115;
  background: #ffffff;
  color: #1a1a1a;
  border: 1px solid #d3d8de;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 0.78rem;
  padding: 0.55rem 0.8rem;
  cursor: pointer;
}

.cookie-settings-fab:hover {
  border-color: #005AA9;
  color: #005AA9;
}

@media (max-width: 640px) {
  .cookie-settings-fab {
    left: 1rem;
    right: auto;
    bottom: 1rem;
  }
}