/* ============================================================
   NADEN INDUSTRIES — Design System
   "Precision Industrial"
   ============================================================ */

/* ── Imports ─────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700&family=Geist:wght@300;400;500;600&display=swap');

/* ── Variables ───────────────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg:           #FFFFFF;
  --bg-dark:      #0E1012;
  --bg-section:   #1B4AA3;
  --surface:      #FFFFFF;

  /* Accent — bleu industriel (logo Naden) */
  --accent:       #1B4AA3;
  --accent-hover: #143A82;
  --accent-light: #EBF0FB;
  --accent-sky:   #2B8FD4;

  /* Text */
  --text:         #0E1012;
  --text-sec:     #5A5C5E;
  --text-muted:   #9A9C9E;
  --text-on-dark: #F7F6F4;

  /* Structure */
  --border:       #DDDBD7;
  --border-light: #EDECEA;

  /* Shadows */
  --shadow-sm:    0 1px 6px rgba(14, 16, 18, .06);
  --shadow-md:    0 4px 24px rgba(14, 16, 18, .09);
  --shadow-lg:    0 16px 48px rgba(14, 16, 18, .12);

  /* Sizing */
  --radius:       12px;
  --radius-sm:    8px;
  --radius-btn:   6px;
  --nav-height:   92px;

  /* Easing */
  --ease-out:     cubic-bezier(0.23, 1, 0.32, 1);
  --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-in-out:  cubic-bezier(0.77, 0, 0.175, 1);

  /* Spacing */
  --sp-1:  4px;
  --sp-2:  8px;
  --sp-3:  12px;
  --sp-4:  16px;
  --sp-5:  24px;
  --sp-6:  32px;
  --sp-7:  48px;
  --sp-8:  64px;
  --sp-9:  96px;
  --sp-10: 128px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

html.nav-open {
  overflow: hidden;
}

body {
  font-family: 'Geist', system-ui, -apple-system, sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-sec);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  outline: none;
}
ul, ol { list-style: none; }

/* ── Skip link ───────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--sp-4);
  z-index: 9999;
  padding: var(--sp-2) var(--sp-4);
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-btn);
  font-size: 0.85rem;
  font-weight: 500;
  transition: top .2s;
}
.skip-link:focus { top: var(--sp-4); }

/* ── Typography ──────────────────────────────────────────── */
h1 {
  font-family: 'Geist', system-ui, sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--text);
}

h2 {
  font-family: 'Geist', system-ui, sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
}

h3 {
  font-family: 'Geist', system-ui, sans-serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 500;
  line-height: 1.3;
  color: var(--text);
}

p { max-width: 62ch; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--sp-4);
}

.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}

.stat-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  letter-spacing: -0.02em;
}

/* ── Layout ──────────────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.section { padding: var(--sp-9) 0; }
.section-lg { padding: var(--sp-10) 0; }

.section--dark {
  background: var(--bg-dark);
  color: var(--text-on-dark);
}

.section--dark h2,
.section--dark h3 { color: var(--text-on-dark); }

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

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 13px 24px;
  border-radius: var(--radius-btn);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1;
  transition: background .18s var(--ease-out),
              color .18s var(--ease-out),
              border-color .18s var(--ease-out),
              transform .12s var(--ease-out),
              box-shadow .18s var(--ease-out);
  white-space: nowrap;
}

@media (hover: hover) and (pointer: fine) {
  .btn:hover { transform: translateY(-1px); }
}

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

.btn-primary {
  background: linear-gradient(135deg, rgba(27, 74, 163, 0.16) 0%, rgba(43, 143, 212, 0.10) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(27, 74, 163, 0.30);
  color: var(--accent);
  box-shadow:
    0 2px 8px rgba(27, 74, 163, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.70),
    inset 0 -1px 0 rgba(27, 74, 163, 0.06);
}

@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover {
    background: linear-gradient(135deg, rgba(27, 74, 163, 0.24) 0%, rgba(43, 143, 212, 0.16) 100%);
    border-color: rgba(27, 74, 163, 0.45);
    box-shadow:
      0 6px 20px rgba(27, 74, 163, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.75),
      inset 0 -1px 0 rgba(27, 74, 163, 0.08);
  }
}

.btn-outline {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border: 1px solid rgba(14, 16, 18, 0.13);
  color: var(--text);
  box-shadow:
    0 1px 4px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.80);
}

@media (hover: hover) and (pointer: fine) {
  .btn-outline:hover {
    background: rgba(255, 255, 255, 0.65);
    border-color: rgba(14, 16, 18, 0.20);
    box-shadow:
      0 4px 12px rgba(0, 0, 0, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.85);
  }
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: var(--text);
  box-shadow:
    0 1px 4px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

@media (hover: hover) and (pointer: fine) {
  .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.24);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow:
      0 4px 12px rgba(0, 0, 0, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.45);
  }
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  padding-left: 0;
  padding-right: 0;
  position: relative;
}

.btn-ghost::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width .25s var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .btn-ghost:hover::after { width: 100%; }
}

.btn-ghost-light { color: var(--text-on-dark); }

.btn-ghost-light::after { background: var(--text-on-dark); }

/* ── Navigation ──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background 200ms var(--ease-out),
              backdrop-filter 200ms var(--ease-out),
              border-color 200ms var(--ease-out);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-color: rgba(14, 16, 18, .07);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.nav__logo {
  display: flex;
  align-items: center;
  line-height: 1;
}

.nav__logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-sec);
  transition: color .18s;
  position: relative;
  white-space: nowrap;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width .22s var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .nav__link:hover { color: var(--text); }
  .nav__link:hover::after { width: 100%; }
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-left: var(--sp-4);
}

.nav__cta {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
  box-shadow: none;
  padding: 11px 20px;
  font-size: 0.87rem;
}

@media (hover: hover) and (pointer: fine) {
  .nav__cta:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    color: #ffffff;
  }
}

.nav__cta-shop {
  background: #059669;
  color: #ffffff;
  border-color: #059669;
  box-shadow: none;
  padding: 11px 20px;
  font-size: 0.87rem;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

@media (hover: hover) and (pointer: fine) {
  .nav__cta-shop:hover {
    background: #047857;
    border-color: #047857;
    color: #ffffff;
    box-shadow: none;
  }
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: none;
  border: none;
}

.nav__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: transform .25s var(--ease-out), opacity .25s;
}

.nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: #F7F6F4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-7);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease-out);
  overflow: hidden;
  width: 100%;
}

.nav__overlay.open {
  opacity: 1;
  pointer-events: all;
}

.nav__overlay .nav__link {
  font-size: 2rem;
  font-weight: 500;
  color: var(--text);
}

.nav__overlay .btn-outline {
  background: #059669;
  color: #ffffff;
  border-color: #059669;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  min-height: 100dvh;
  background: var(--bg);
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  overflow: hidden;
  position: relative;
}

.hero__inner {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: var(--sp-8);
  align-items: center;
  min-height: calc(100dvh - var(--nav-height));
  padding: var(--sp-9) 28px;
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}

.hero__copy { display: flex; flex-direction: column; gap: var(--sp-5); }

.hero__copy h1 {
  color: var(--text);
  max-width: 14ch;
}

.hero__copy h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero__copy > p {
  color: var(--text-sec);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 46ch;
}

.hero__ctas {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  padding-top: var(--sp-2);
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-muted);
}

.hero__trust-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--border);
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero__img-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
}

.hero__img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 16px 16px 64px 16px;
  display: block;
}

.hero__badge {
  position: absolute;
  bottom: -16px;
  left: -24px;
  background: var(--surface);
  border-radius: var(--radius);
  padding: var(--sp-4) var(--sp-5);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  min-width: 180px;
  animation: heroIn 0.72s var(--ease-out) 560ms both;
}

.hero__badge-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__badge-icon svg { color: var(--accent); }

.hero__badge-text { line-height: 1.2; }

.hero__badge-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.hero__badge-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ── Marquee ─────────────────────────────────────────────── */
.marquee-section {
  padding: var(--sp-6) 0;
  background: var(--bg-section);
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  overflow: hidden;
}

.marquee-label {
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #F7F6F4;
  margin-bottom: var(--sp-4);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: var(--sp-9);
  width: max-content;
  animation: marquee 28s linear infinite;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

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

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

.marquee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 24px;
  height: 56px;
  min-width: 120px;
  flex-shrink: 0;
  transition: border-color .2s, box-shadow .2s;
}

.marquee-item img {
  height: 32px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  filter: grayscale(1) opacity(.7);
  transition: filter .2s;
}

.marquee-item img[alt="Logo Memolub — partenaire Naden Industries"],
.marquee-item img[alt="Logo Atlas Copco — partenaire Naden Industries"],
.marquee-item img[alt="Logo Parker Hannifin — partenaire Naden Industries"] {
  height: 52px;
  max-width: 180px;
}

@media (hover: hover) and (pointer: fine) {
  .marquee-item:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); }
  .marquee-item:hover img { filter: grayscale(0) opacity(1); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ── USPs ────────────────────────────────────────────────── */
.usps { background: var(--bg-section); }

.usps h2 { color: #F7F6F4; }
.usps .section-label { color: rgba(247,246,244,0.8); }
.usps .section-label::before { background: rgba(247,246,244,0.8); }


.usps__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--sp-4);
  align-items: start;
}

.usp-featured {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: var(--sp-7) var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  height: 100%;
}

.usp-featured .usp-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.usp-featured .usp-icon svg { color: #F7F6F4; }

.usp-featured h3 {
  color: #F7F6F4;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
}

.usp-featured p {
  color: rgba(247,246,244,0.75);
  font-size: 0.9rem;
}

.usp-featured .stat-number {
  font-size: clamp(3rem, 5vw, 4rem);
  color: #F7F6F4;
}

.usps__sub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

.usp-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--sp-5) var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: border-color .2s, box-shadow .2s, transform .2s var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .usp-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
  }
}

.usp-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.usp-icon svg { color: var(--accent); }

.usp-card h3 {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}

.usp-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── Categories ──────────────────────────────────────────── */
.categories { background: var(--bg); }

.categories__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--sp-7);
  gap: var(--sp-5);
}

.categories__grid-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  margin-bottom: var(--sp-4);
}

.categories__grid-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}

.cat-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-dark);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.cat-card { min-height: 300px; }

.cat-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  transition: transform .5s var(--ease-out), opacity .3s;
}

@media (hover: hover) and (pointer: fine) {
  .cat-card:hover .cat-card__img {
    transform: scale(1.04);
    opacity: 0.55;
  }
}

.cat-card__overlay { display: none; }

.cat-card__body {
  position: relative;
  z-index: 1;
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.cat-card__name {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-on-dark);
  line-height: 1.2;
}

.cat-card__desc {
  font-size: 0.8rem;
  color: rgba(247, 246, 244, .55);
  line-height: 1.4;
}

.cat-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent);
  margin-top: var(--sp-2);
  transition: gap .2s var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .cat-card:hover .cat-card__link { gap: var(--sp-3); }
}

/* ── Sectors ─────────────────────────────────────────────── */
.sectors {
  background: var(--bg);
}

.sectors__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-6);
  margin-bottom: var(--sp-8);
}

.sectors__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

.sector-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--sp-6) var(--sp-6) var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  position: relative;
  overflow: hidden;
  transition: border-color .22s var(--ease-out),
              box-shadow .22s var(--ease-out),
              transform .22s var(--ease-out);
}

.sector-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .3s var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .sector-card:hover {
    border-color: rgba(27, 74, 163, .20);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
  }
  .sector-card:hover::before { transform: scaleY(1); }
}

.sector-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-3);
}

.sector-card__num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(27, 74, 163, .07);
  user-select: none;
  pointer-events: none;
  margin-top: -4px;
}

.sector-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sector-card__icon svg { color: var(--accent); }

.sector-card__label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.sector-card__name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-top: var(--sp-1);
}

.sector-card__desc {
  font-size: 0.85rem;
  color: var(--text-sec);
  line-height: 1.65;
  font-weight: 300;
}

.sector-card__apps {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: auto;
  padding-top: var(--sp-3);
  border-top: 1px solid var(--border-light);
}

.sector-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid var(--border);
  background: var(--bg);
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--text-muted);
}

/* ── Coverage / World Map ─────────────────────────────────── */
.coverage {
  background: var(--bg);
}

.coverage__inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: var(--sp-9);
  align-items: center;
}

.coverage__copy {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.coverage__copy p {
  color: var(--text-sec);
  max-width: 44ch;
  font-size: 0.95rem;
}

.coverage__regions {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--border);
}

.coverage__region {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 0.875rem;
  color: var(--text-sec);
}

.coverage__region-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.coverage__region-dot--primary { background: #1B4AA3; }
.coverage__region-dot--secondary { background: #2B8FD4; }
.coverage__region-dot--muted { background: var(--border); }

.world-map {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.world-map__svg {
  width: 100%;
  height: auto;
  display: block;
}

.map-continent {
  fill: rgba(27, 74, 163, .10);
  stroke: rgba(27, 74, 163, .18);
  stroke-width: 0.6;
  stroke-linejoin: round;
}

.map-grid {
  stroke: rgba(27, 74, 163, .07);
  stroke-width: 0.5;
  fill: none;
}

.map-dot-hq { fill: #1B4AA3; }
.map-dot-primary { fill: #1B4AA3; }
.map-dot-secondary { fill: #2B8FD4; }
.map-dot-ring { fill: none; stroke: #1B4AA3; }

/* ── About snippet ───────────────────────────────────────── */
.about-snippet { background: var(--bg); }

.about-snippet__inner {
  display: grid;
  grid-template-columns: 60fr 40fr;
  gap: var(--sp-10);
  align-items: center;
}

.about-snippet__copy { display: flex; flex-direction: column; gap: var(--sp-5); }

.about-snippet__copy p { color: var(--text-sec); max-width: 54ch; }

.about-stats { display: flex; flex-direction: column; }

.about-stat {
  padding: var(--sp-6) 0;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.about-stat:last-child { border-bottom: 1px solid var(--border); }

.about-stat .stat-number { color: var(--text); }

.about-stat__label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* ── CTA Band ────────────────────────────────────────────── */
.cta-band {
  background: #1B4AA3;
  padding: var(--sp-8) 0;
}


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

.cta-band__copy { display: flex; flex-direction: column; gap: var(--sp-3); }

.cta-band__copy h2 {
  color: #F7F6F4;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  max-width: 36ch;
}

.cta-band__meta {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  flex-wrap: wrap;
}

.cta-band__contact {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.9rem;
  font-weight: 500;
  color: #F7F6F4;
}

.cta-band__contact svg { flex-shrink: 0; opacity: 0.9; }

.cta-band__actions { display: flex; align-items: center; gap: var(--sp-4); flex-wrap: wrap; }

.btn-accent {
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-btn);
  box-shadow: 0 2px 8px rgba(27, 74, 163, .25);
}

@media (hover: hover) and (pointer: fine) {
  .btn-accent:hover { background: var(--accent-hover); box-shadow: 0 6px 18px rgba(27, 74, 163, .35); }
}

.cta-band .section-label { color: rgba(247,246,244,0.8); }
.cta-band .section-label::before { background: rgba(247,246,244,0.8); }

.cta-band .btn-outline,
.cta-band .btn-ghost-light,
.usps .btn-outline {
  background: #F7F6F4;
  border-color: transparent;
  color: #1B4AA3;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  padding-left: var(--sp-5);
  padding-right: var(--sp-5);
}

@media (hover: hover) and (pointer: fine) {
  .cta-band .btn-outline:hover,
  .cta-band .btn-ghost-light:hover,
  .usps .btn-outline:hover {
    background: #fff;
    border-color: transparent;
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  }
}

.cta-band .btn-accent,
.usps .btn-accent,
.testimonials .btn-accent,
.stats-dark-section .btn-accent,
.page-hero .btn-accent {
  background: #F7F6F4;
  color: #1B4AA3;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

@media (hover: hover) and (pointer: fine) {
  .cta-band .btn-accent:hover,
  .usps .btn-accent:hover,
  .testimonials .btn-accent:hover,
  .stats-dark-section .btn-accent:hover,
  .page-hero .btn-accent:hover {
    background: #fff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  }
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--bg);
  border-top: 3px solid #1B4AA3;
  padding-top: var(--sp-9);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: var(--sp-8);
  padding-bottom: var(--sp-8);
  border-bottom: 1px solid var(--border);
}

.footer__brand { display: flex; flex-direction: column; gap: var(--sp-4); }

.footer__logo-main {
  font-family: 'Geist', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
}

.footer__logo-img {
  height: 72px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-top: -16px;
}

.footer__desc {
  font-size: 0.85rem;
  color: var(--text-sec);
  line-height: 1.6;
  max-width: 32ch;
  margin-top: var(--sp-5);
}

.footer__contact { display: flex; flex-direction: column; gap: var(--sp-3); margin-top: auto; }

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.85rem;
  color: var(--text-sec);
  transition: color .18s;
}

.footer__contact-item svg { flex-shrink: 0; opacity: 0.8; width: 14px; height: 14px; }

.footer__col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--sp-4);
}

.footer__links { display: flex; flex-direction: column; gap: var(--sp-3); }

.footer__link {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color .18s;
}

@media (hover: hover) and (pointer: fine) {
  .footer__link:hover { color: var(--text); }
}

.footer__address { font-size: 0.82rem; color: var(--text-muted); line-height: 1.7; }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-5) 0;
  gap: var(--sp-5);
  flex-wrap: wrap;
}

.footer__copyright {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer__legal {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
}

.footer__legal-link {
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: color .18s;
}

@media (hover: hover) and (pointer: fine) {
  .footer__legal-link:hover { color: var(--text-sec); }
}

/* ── Page Hero (inner pages) ─────────────────────────────── */
.page-hero {
  background: var(--bg-section);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding: calc(var(--nav-height) + var(--sp-9)) 0 var(--sp-8);
}

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.75rem;
  color: rgba(247,246,244,0.6);
  margin-bottom: var(--sp-5);
}

.page-hero__breadcrumb a {
  transition: color .18s;
  color: rgba(247,246,244,0.6);
}

@media (hover: hover) and (pointer: fine) {
  .page-hero__breadcrumb a:hover { color: #F7F6F4; }
}

.page-hero__breadcrumb svg { opacity: 0.4; }

.page-hero h1 {
  color: #F7F6F4;
  font-size: clamp(2rem, 5vw, 3.5rem);
  max-width: 20ch;
}

.page-hero p {
  color: rgba(247,246,244,0.75);
  font-size: 1.05rem;
  max-width: 52ch;
  margin-top: var(--sp-4);
}

/* ── Catalogue ───────────────────────────────────────────── */
/* ── Catalogue familles ───────────────────────────────────── */
.cat-brands {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.cat-brands__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.cat-brands__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.cat-brand {
  padding: 4px 12px;
  border-radius: 4px;
  border: 1px solid var(--accent-light);
  background: var(--accent-light);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent);
}

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

.catalogue-search {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: var(--sp-5);
}

.catalogue-search__icon {
  position: absolute;
  left: 14px;
  color: var(--text-muted);
  pointer-events: none;
  flex-shrink: 0;
}

.catalogue-search__input {
  width: 100%;
  padding: 13px 44px 13px 42px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-btn);
  background: var(--surface);
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color .2s, box-shadow .2s;
}

.catalogue-search__input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(27, 74, 163, .10);
  outline: none;
}

.catalogue-search__input::placeholder { color: var(--text-muted); }

.catalogue-search__clear {
  position: absolute;
  right: 12px;
  background: var(--bg-section);
  border: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  transition: background .18s, color .18s;
}

.catalogue-search__clear:hover { background: var(--border); color: var(--text); }

.catalogue-no-results {
  display: none;
  grid-column: 1 / -1;
  text-align: center;
  padding: var(--sp-9) 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.filter-tabs {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
  margin-bottom: var(--sp-7);
  padding-bottom: var(--sp-5);
  border-bottom: 1px solid var(--border);
}

.filter-tab {
  padding: 8px 18px;
  border-radius: var(--radius-btn);
  font-size: 0.82rem;
  font-weight: 500;
  border: 1.5px solid var(--border);
  color: var(--text-sec);
  background: transparent;
  transition: background .18s, border-color .18s, color .18s;
  cursor: pointer;
}

@media (hover: hover) and (pointer: fine) {
  .filter-tab:hover { border-color: var(--text); color: var(--text); }
}

.filter-tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--sp-5);
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s, transform .25s var(--ease-out);
  position: relative;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .25s var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .product-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
  }

  .product-card:hover::before { transform: scaleY(1); }
}

.product-card.hidden { display: none; }

.product-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--bg-section);
}

.product-card__body { padding: var(--sp-4) var(--sp-5); display: flex; flex-direction: column; gap: var(--sp-2); }

.product-card__badge {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 4px;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  align-self: flex-start;
}

.product-card__ref {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.product-card h3 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.25;
}

.product-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--accent);
  margin-top: var(--sp-2);
  transition: gap .2s var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .product-card:hover .product-card__link { gap: var(--sp-3); }
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: var(--sp-5);
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 800;
  background: var(--accent);
  color: #ffffff;
  border-radius: var(--radius);
  padding: var(--sp-4) var(--sp-5);
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  box-shadow: var(--shadow-lg);
  transition: transform .35s var(--ease-out);
  white-space: nowrap;
  max-width: calc(100vw - 48px);
}

.sticky-cta.visible { transform: translateX(-50%) translateY(0); }

.sticky-cta p { font-size: 0.875rem; color: #F7F6F4; white-space: normal; }

.sticky-cta__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  color: #F7F6F4;
  flex-shrink: 0;
  transition: background .18s;
}

@media (hover: hover) and (pointer: fine) {
  .sticky-cta__close:hover { background: rgba(255,255,255,.4); }
}

/* ── Sectors page ────────────────────────────────────────── */
.sector-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-9);
  align-items: center;
  padding: var(--sp-9) 0;
  border-bottom: 1px solid var(--border);
}

.sector-block:last-child { border-bottom: none; }

.sector-block--reverse { direction: rtl; }
.sector-block--reverse > * { direction: ltr; }

.sector-block__img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: var(--radius);
}

.sector-block__copy { display: flex; flex-direction: column; gap: var(--sp-5); }

.sector-block__num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.sector-block__copy h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); }

.sector-block__copy p { color: var(--text-sec); }

.sector-block__tags { display: flex; flex-wrap: wrap; gap: var(--sp-2); }

.sector-block__tag {
  padding: 5px 12px;
  border-radius: 4px;
  border: 1px solid var(--border);
  font-size: 0.72rem;
  color: var(--text-sec);
}

/* ── Group logos ─────────────────────────────────────────── */
.group-logos {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: var(--sp-6);
  flex-wrap: nowrap;
}

.group-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
}

.group-logo-item img {
  max-height: 140px;
  max-width: 280px;
  object-fit: contain;
}

.group-logo-item p {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.group-logo-divider { display: none; }

@media (max-width: 768px) {
  .group-logos { gap: var(--sp-8); }
  .group-logo-item img { max-height: 80px; max-width: 180px; }
}

/* ── About page ──────────────────────────────────────────── */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-9);
  align-items: center;
}

.about-story__copy { display: flex; flex-direction: column; gap: var(--sp-5); }
.about-story__copy p { color: var(--text-sec); }

.about-story__img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
}

.stats-dark-section { background: #1B4AA3; padding: var(--sp-7) 0; }

.stats-dark-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
  align-items: start;
}

.stats-dark-item {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  padding: var(--sp-6) var(--sp-5);
}

.stats-dark-item .stat-number { color: #F7F6F4; }

.stats-dark-item__label { font-size: 0.82rem; color: rgba(247,246,244,0.5); }

.values-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--sp-4);
  margin-top: var(--sp-7);
}

.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  transition: border-color .2s, box-shadow .2s;
}

@media (hover: hover) and (pointer: fine) {
  .value-card:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); }
}

.value-card .usp-icon { background: var(--accent-light); }

.value-card h3 { font-size: 1.1rem; font-weight: 500; }

.value-card p { font-size: 0.875rem; color: var(--text-sec); max-width: 36ch; }

/* ── Contact page ────────────────────────────────────────── */
.contact-section { background: var(--bg); }

.contact-grid {
  display: grid;
  grid-template-columns: 60fr 40fr;
  gap: var(--sp-9);
  align-items: start;
}

.contact-form { display: flex; flex-direction: column; gap: var(--sp-5); }

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

.form-group { display: flex; flex-direction: column; gap: var(--sp-2); }

.form-group label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-btn);
  background: var(--surface);
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color .2s;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(27, 74, 163, .10);
}

.form-group textarea { min-height: 120px; resize: vertical; }

.form-select-wrap { position: relative; }

.form-select-wrap::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--text-muted);
  pointer-events: none;
}

.form-success {
  display: none;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--radius-btn);
  background: #ECFDF5;
  border: 1px solid #6EE7B7;
  color: #064E3B;
  font-size: 0.875rem;
  font-weight: 500;
}

.form-success.visible { display: flex; }

.contact-info { display: flex; flex-direction: column; gap: var(--sp-6); }

.contact-info h3 { font-size: 1.15rem; font-weight: 500; margin-bottom: var(--sp-4); }

.contact-info-items { display: flex; flex-direction: column; gap: var(--sp-4); }

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
}

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

.contact-info-item__label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-info-item__val {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
}

.contact-map {
  width: 100%;
  height: 220px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.contact-map iframe { width: 100%; height: 100%; border: none; }

.response-promise {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--radius-btn);
  background: var(--accent-light);
  border-left: 3px solid var(--accent);
}

.response-promise svg { color: var(--accent); flex-shrink: 0; }

.response-promise p { font-size: 0.85rem; color: var(--text); font-weight: 500; }

/* ── FAQ accordion ───────────────────────────────────────── */
.faq-section { background: var(--bg-section); }

.faq-section h2,
.faq-section .section-label { color: #F7F6F4; }
.faq-section .section-label::before { background: #F7F6F4; }
.faq-section .faq-item { border-bottom-color: rgba(255,255,255,0.18); }
.faq-section .faq-question { color: rgba(247,246,244,0.9); }
.faq-section .faq-icon { border-color: rgba(255,255,255,0.28); }
.faq-section .faq-icon svg { color: rgba(247,246,244,0.7); }
.faq-section .faq-answer p { color: #F7F6F4; font-size: 0.95rem; line-height: 1.75; }

@media (hover: hover) and (pointer: fine) {
  .faq-section .faq-question:hover { color: #F7F6F4; }
}
.faq-section .faq-question.open { color: #F7F6F4; }
.faq-section .faq-question.open .faq-icon { border-color: #F7F6F4; background: rgba(255,255,255,0.2); }

.faq-list { display: flex; flex-direction: column; max-width: 720px; }

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  padding: var(--sp-5) 0;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  background: none;
  cursor: pointer;
  transition: color .18s;
}

@media (hover: hover) and (pointer: fine) {
  .faq-question:hover { color: var(--accent); }
}

.faq-question.open { color: var(--accent); }

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color .2s, background .2s, transform .3s var(--ease-out);
}

.faq-question.open .faq-icon {
  border-color: var(--accent);
  background: var(--accent);
  transform: rotate(45deg);
}

.faq-icon svg { color: var(--text-sec); width: 12px; height: 12px; }
.faq-question.open .faq-icon svg { color: #fff; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease-out), opacity .3s;
  opacity: 0;
}

.faq-answer.open {
  max-height: 400px;
  opacity: 1;
}

.faq-answer p {
  padding-bottom: var(--sp-5);
  font-size: 0.9rem;
  color: var(--text-sec);
  line-height: 1.7;
}

/* ── 404 ─────────────────────────────────────────────────── */
.not-found {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-dark);
  text-align: center;
}

.not-found__inner { display: flex; flex-direction: column; align-items: center; gap: var(--sp-5); }

.not-found__code {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(6rem, 20vw, 12rem);
  font-weight: 700;
  color: rgba(247, 246, 244, .05);
  line-height: 1;
  user-select: none;
}

.not-found h1 {
  color: var(--text-on-dark);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-top: -40px;
  position: relative;
}

.not-found p {
  color: rgba(247, 246, 244, .45);
  font-size: 0.95rem;
  max-width: 38ch;
  text-align: center;
}

/* ── Hero entrance stagger ───────────────────────────────── */
@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__anim {
  animation: heroIn 0.72s var(--ease-out) both;
}

.hero__anim-1 { animation-delay: 60ms; }
.hero__anim-2 { animation-delay: 140ms; }
.hero__anim-3 { animation-delay: 220ms; }
.hero__anim-4 { animation-delay: 300ms; }
.hero__anim-5 { animation-delay: 380ms; }
.hero__anim-6 { animation-delay: 460ms; }

/* ── Filter card entrance ────────────────────────────────── */
@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.product-card.card-entering {
  animation: cardIn 0.3s var(--ease-out) both;
}

/* ── Scroll fade-up ──────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: .1s; }
.fade-up-delay-2 { transition-delay: .2s; }
.fade-up-delay-3 { transition-delay: .3s; }
.fade-up-delay-4 { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  .hero__anim { animation: none; }
  .product-card.card-entering { animation: none; }
}

/* ── Utilities ───────────────────────────────────────────── */
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }
.text-on-dark { color: var(--text-on-dark); }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1280px) {
  .hero__inner { gap: var(--sp-7); }
  .sectors__grid { gap: var(--sp-4); }
  .coverage__inner { gap: var(--sp-7); }
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; gap: var(--sp-6); }
}

@media (max-width: 1024px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: left;
    min-height: auto;
    padding: var(--sp-8) 28px var(--sp-9);
    gap: var(--sp-7);
  }

  .hero__visual { justify-content: flex-start; }
  .hero__img-wrap { max-width: 100%; }
  .hero__img { max-height: 420px; aspect-ratio: 16/9; }
  .hero__badge { left: 16px; bottom: -12px; }

  .usps__grid { grid-template-columns: 1fr; }
  .usp-featured { padding: var(--sp-6); }

  .categories__grid-top { grid-template-columns: 1fr 1fr; }
  .categories__grid-bottom { grid-template-columns: 1fr 1fr; }

  .sectors__grid { gap: var(--sp-4); }
  .coverage__inner { grid-template-columns: 1fr; gap: var(--sp-7); }

  .about-snippet__inner { grid-template-columns: 1fr; gap: var(--sp-7); }

  .cta-band__inner { flex-direction: column; align-items: flex-start; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--sp-6); }
  .footer__brand { grid-column: 1 / -1; }

  .contact-grid { grid-template-columns: 1fr; }
  .about-story { grid-template-columns: 1fr; }
  .sector-block { grid-template-columns: 1fr; gap: var(--sp-6); }
  .sector-block--reverse { direction: ltr; }
  .stats-dark-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }

  .nav__cta-shop { display: none; }

  .usps__sub-grid { grid-template-columns: 1fr 1fr; }
  .categories__grid-top { grid-template-columns: 1fr 1fr; }
  .categories__grid-bottom { grid-template-columns: 1fr 1fr; }
  .sectors__grid { grid-template-columns: 1fr; }
  .sectors__header { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .footer__legal { flex-wrap: wrap; }
  .stats-dark-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }

  .hero__trust { gap: var(--sp-3); }
  .hero__ctas { flex-direction: column; align-items: flex-start; }
  .cta-band__actions { width: 100%; }
  .cta-band__actions .btn { flex: 1; justify-content: center; }
  .cta-band__meta { flex-direction: column; gap: var(--sp-2); }

  .group-logos { flex-direction: column; align-items: center; gap: var(--sp-5); }

  .page-hero { padding: calc(var(--nav-height) + var(--sp-6)) 0 var(--sp-6); }
  .page-hero h1 { font-size: clamp(1.6rem, 7vw, 2.4rem); }

  .partner-search { max-width: 100%; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }

  .sticky-cta { white-space: normal; text-align: center; flex-direction: column; padding: var(--sp-4); }

  .about-story__img { aspect-ratio: 3/2; }
  .world-map { max-height: 260px; overflow: hidden; }
  .world-map img { object-fit: cover; }

  .cat-card { min-height: 220px; }

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

  .sector-block__img { aspect-ratio: 16/9; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }

  .section { padding: var(--sp-7) 0; }

  .usps__sub-grid { grid-template-columns: 1fr; }
  .categories__grid-top { grid-template-columns: 1fr; }
  .categories__grid-bottom { grid-template-columns: 1fr; }
  .stats-dark-grid { grid-template-columns: 1fr 1fr; }

  .hero__inner { padding: var(--sp-7) 16px var(--sp-8); }
  .hero__img { max-height: 280px; }
  .hero__badge { display: none; }
  .hero__ctas .btn { width: 100%; justify-content: center; }

  .hero__trust {
    flex-wrap: wrap;
    gap: var(--sp-2);
  }
  .hero__trust-dot { display: none; }

  .usp-featured { padding: var(--sp-5); }
  .usp-featured .stat-number { font-size: 3rem; }

  .cta-band__inner { gap: var(--sp-5); }

  .footer__logo-img { margin-top: 0; }

  .page-hero h1 { font-size: clamp(1.5rem, 8vw, 2rem); }
  .page-hero p { font-size: 0.9rem; }

  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-card { padding: var(--sp-4) var(--sp-3); }

  .faq-question { font-size: 0.88rem; }

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

  .categories__header { flex-direction: column; align-items: flex-start; gap: var(--sp-3); }
  .categories__header .btn { width: 100%; justify-content: center; }

  .coverage__regions { gap: var(--sp-2); }

  .marquee-item { padding: 8px 16px; min-width: 90px; }
}

/* ── Legal page ──────────────────────────────────────────── */
.legal-body {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--text-sec);
}

.legal-body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-body strong {
  color: var(--text);
  font-weight: 500;
}

/* ── Partners page ───────────────────────────────────────── */
.partners-intro {
  max-width: 52ch;
  margin-bottom: var(--sp-8);
}

.partners-category {
  margin-bottom: var(--sp-9);
}

.partners-category__label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--sp-5);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--sp-4);
}

.partner-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--sp-6) var(--sp-5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  transition: border-color .2s var(--ease-out), transform .2s var(--ease-out), box-shadow .2s var(--ease-out);
}

.partner-card__logo-wrap {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.partner-card__logo-wrap img {
  max-height: 48px;
  max-width: 160px;
  object-fit: contain;
}

.partner-card__logo-wrap img.logo--lg {
  max-height: 72px;
  max-width: 180px;
}

.partner-card__name {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  text-align: center;
}

.partner-card__desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}

@media (hover: hover) and (pointer: fine) {
  .partner-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
  }
}

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

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials { background: var(--bg-section); }

.testimonials__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-6);
  margin-bottom: var(--sp-8);
}

.testimonials__header h2 { color: #F7F6F4; max-width: 28ch; }
.testimonials__header .section-label { color: rgba(247,246,244,0.8); }
.testimonials__header .section-label::before { background: rgba(247,246,244,0.8); }

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

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  transition: border-color .2s var(--ease-out), background .2s var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .testimonial-card:hover {
    border-color: rgba(27, 74, 163, .35);
    background: var(--surface);
    box-shadow: 0 4px 16px rgba(27, 74, 163, .12);
    transform: translateY(-2px);
  }
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
}

.testimonial-card__stars svg { color: #F59E0B; }

.testimonial-card__quote {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-sec);
  flex: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  border-top: 1px solid var(--border);
  padding-top: var(--sp-4);
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
}

.testimonial-card__role {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.3;
}

@media (max-width: 1024px) {
  .testimonials__grid { grid-template-columns: 1fr 1fr; }
  .testimonials__header { flex-direction: column; align-items: flex-start; }
}

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

/* ── Partner search ───────────────────────────────────────── */
.partner-search {
  position: relative;
  max-width: 520px;
  margin: 0 auto var(--sp-8);
}

.partner-search__icon {
  position: absolute;
  left: var(--sp-4);
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.partner-search__input {
  width: 100%;
  padding: var(--sp-3) var(--sp-7) var(--sp-3) var(--sp-8);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  font-size: 0.9375rem;
  color: var(--text);
  transition: border-color .2s var(--ease-out), box-shadow .2s var(--ease-out);
}

.partner-search__input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}

.partner-search__input::placeholder { color: var(--text-muted); }

.partner-search__clear {
  position: absolute;
  right: var(--sp-3);
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  padding: var(--sp-1);
  border-radius: 4px;
  transition: color .15s;
}

.partner-search__clear:hover { color: var(--text); }

.partner-category--hidden { display: none; }
.partner-card--hidden { display: none; }

.partners-no-result {
  text-align: center;
  padding: var(--sp-9) 0;
  color: var(--text-muted);
  display: none;
}

.partners-no-result.visible { display: block; }

/* Language Switcher */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-sec);
  text-decoration: none;
  padding: 6px 11px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-btn);
  transition: color 0.18s, border-color 0.18s;
  flex-shrink: 0;
}
.lang-switcher:hover {
  color: var(--accent);
  border-color: var(--accent);
}
