/* ============================================================
   PREFA FRANCE — Shared Stylesheet
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600&family=Inter:wght@300;400;500&display=swap');

/* ============================================================
   CSS Variables
   ============================================================ */
:root {
  --navy:   #1B3889;
  --red:    #CC3028;
  --orange: #E8961E;
  --light:  #F5F7FC;
  --mid:    #6B7B9A;
  --white:  #FFFFFF;
  --dark:   #111827;
  --border: #D9DEE8;
  --shadow: 0 4px 24px rgba(27,56,137,0.10);
  --shadow-lg: 0 12px 48px rgba(27,56,137,0.16);

  --font-heading: 'Oswald', sans-serif;
  --font-body:    'Inter', sans-serif;

  --nav-h: 72px;
  --stripe-h: 4px;
  --transition: 0.22s ease;
  --radius: 6px;
  --radius-lg: 12px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ============================================================
   Top Stripe
   ============================================================ */
.top-stripe {
  height: var(--stripe-h);
  background: linear-gradient(
    to right,
    var(--red) 0%,
    var(--red) 33.33%,
    var(--orange) 33.33%,
    var(--orange) 66.66%,
    var(--navy) 66.66%,
    var(--navy) 100%
  );
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
}

/* ============================================================
   Navigation
   ============================================================ */
.site-nav {
  position: fixed;
  top: var(--stripe-h);
  left: 0;
  right: 0;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(27,56,137,0.07);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: auto;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links > li {
  position: relative;
}

.nav-links > li > a,
.nav-links > li > button {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--dark);
  border: none;
  background: none;
  cursor: pointer;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.nav-links > li > a:hover,
.nav-links > li > button:hover {
  color: var(--navy);
  background: var(--light);
}

.nav-links > li > a.active,
.nav-links > li > button.active {
  color: var(--red);
}

.nav-links > li > a i,
.nav-links > li > button i,
.nav-links > li > button svg {
  width: 11px;
  height: 11px;
  opacity: 0.5;
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  overflow: hidden;
  z-index: 100;
}

.nav-links > li:hover .nav-dropdown,
.nav-links > li.open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--dark);
  border-bottom: 1px solid var(--light);
  transition: background var(--transition), color var(--transition);
}

.nav-dropdown a:last-child {
  border-bottom: none;
}

.nav-dropdown a:hover {
  background: var(--light);
  color: var(--navy);
}

.nav-dropdown a i,
.nav-dropdown a svg {
  width: 13px;
  height: 13px;
  color: var(--orange);
}

.nav-dropdown a .dd-label {
  display: flex;
  flex-direction: column;
}

.nav-dropdown a .dd-label span {
  font-size: 0.78rem;
  color: var(--mid);
}

/* Language Switcher */
.lang-switcher {
  position: relative;
  margin-left: 8px;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 12px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.lang-btn:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.lang-btn .flag {
  font-size: 1rem;
  line-height: 1;
}

.lang-btn i,
.lang-btn svg {
  width: 10px;
  height: 10px;
  opacity: 0.5;
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  min-width: 150px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all var(--transition);
  overflow: hidden;
  z-index: 100;
}

.lang-switcher:hover .lang-dropdown,
.lang-switcher.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--light);
  transition: background var(--transition);
}

.lang-dropdown a:last-child {
  border-bottom: none;
}

.lang-dropdown a:hover {
  background: var(--light);
}

.lang-dropdown a.active {
  color: var(--navy);
  font-weight: 500;
}

.lang-dropdown .flag {
  font-size: 1rem;
}

/* Nav CTA */
.nav-cta {
  margin-left: 16px;
}
.nav-cta .btn-primary {
  padding: 7px 18px;
  font-size: 0.82rem;
}

/* Hamburger */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  margin-left: 12px;
  color: var(--dark);
}

.nav-toggle i {
  width: 20px;
  height: 20px;
}

/* ============================================================
   Page offset (below fixed nav + stripe)
   ============================================================ */
.page-top-offset {
  padding-top: calc(var(--nav-h) + var(--stripe-h));
}

/* ============================================================
   Buttons
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary:hover {
  background: #b02820;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(204,48,40,0.30);
}

.btn-primary i {
  width: 16px;
  height: 16px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.55);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.85);
}

.btn-outline i {
  width: 16px;
  height: 16px;
}

.btn-outline-navy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  background: transparent;
  color: var(--navy);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

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

.btn-outline-navy i {
  width: 16px;
  height: 16px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-secondary:hover {
  background: #152d73;
  transform: translateY(-1px);
}

.btn-secondary i {
  width: 16px;
  height: 16px;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  width: 100%;
  justify-content: center;
}

.btn-submit:hover {
  background: #b02820;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(204,48,40,0.28);
}

.btn-submit i {
  width: 16px;
  height: 16px;
}

/* ============================================================
   Section Utilities
   ============================================================ */
.section {
  padding: 96px 0;
}

.section-sm {
  padding: 64px 0;
}

.section-lg {
  padding: 120px 0;
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-center {
  text-align: center;
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1.85rem, 3.5vw, 2.8rem);
  text-transform: uppercase;
  color: var(--navy);
  letter-spacing: 0.01em;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-title span {
  color: var(--red);
}

.section-subtitle {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.05rem;
  color: var(--mid);
  max-width: 640px;
  line-height: 1.7;
}

.section-center .section-subtitle {
  margin: 0 auto;
}

.divider {
  width: 48px;
  height: 3px;
  background: var(--orange);
  margin: 16px 0 28px;
  border-radius: 2px;
}

.divider-center {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(27,56,137,0.88) 0%,
    rgba(17,24,39,0.72) 60%,
    rgba(17,24,39,0.50) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  padding-top: calc(var(--nav-h) + var(--stripe-h) + 40px);
  padding-bottom: 80px;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: var(--orange);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-eyebrow i {
  width: 13px;
  height: 13px;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 28px;
  max-width: 780px;
  letter-spacing: -0.01em;
}

.hero-title span {
  color: var(--orange);
}

/* Key Message Banner */
.hero-key-message {
  display: inline-flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--red);
  padding: 18px 24px;
  border-radius: var(--radius);
  margin-bottom: 28px;
  max-width: 680px;
}

.hero-key-message i,
.hero-key-message svg {
  width: 20px;
  height: 20px;
  color: var(--white);
  stroke: var(--white);
  flex-shrink: 0;
  margin-top: 2px;
}

.hero-key-message p {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--white);
  line-height: 1.4;
  letter-spacing: 0.01em;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.08rem;
  color: rgba(255,255,255,0.75);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero variant: split (text left, image right) */
.hero-split .hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-split .hero-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
}

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

.hero-split .hero-image::before {
  display: none;
}

/* Hero: page (non-full-height) */
.hero-page {
  min-height: 45vh;
}

/* ============================================================
   Stats Bar
   ============================================================ */
.stats-bar {
  background: var(--navy);
  padding: 0;
}

.stats-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid rgba(255,255,255,0.08);
}

.stat-item {
  padding: 32px 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.stat-value {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.9rem;
  color: var(--white);
  line-height: 1;
}

.stat-value span {
  color: var(--orange);
}

.stat-label {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ============================================================
   Cards
   ============================================================ */
.cards-grid {
  display: grid;
  gap: 24px;
}

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

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.card-img {
  height: 220px;
  overflow: hidden;
}

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

.card:hover .card-img img {
  transform: scale(1.04);
}

.card-body {
  padding: 28px;
}

.card-tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--light);
  color: var(--navy);
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 12px;
}

.card-tag.red {
  background: rgba(204,48,40,0.1);
  color: var(--red);
}

.card-tag.orange {
  background: rgba(232,150,30,0.12);
  color: #b8720e;
}

.card-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.25;
}

.card-text {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.65;
  margin-bottom: 20px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  transition: gap var(--transition);
}

.card-link:hover {
  gap: 10px;
}

.card-link i {
  width: 14px;
  height: 14px;
}

/* Product cards (large) */
.product-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy);
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: box-shadow var(--transition), transform var(--transition);
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.product-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card-bg {
  transform: scale(1.04);
}

.product-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,56,137,0.95) 0%, rgba(27,56,137,0.4) 60%, transparent 100%);
}

.product-card-content {
  position: relative;
  z-index: 2;
  padding: 36px;
}

.product-card-tag {
  display: inline-block;
  padding: 5px 12px;
  background: var(--orange);
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}

.product-card-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.75rem;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.1;
}

.product-card-desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 22px;
}

/* Advantage icon cards */
.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.adv-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}

.adv-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--navy);
  transform: translateY(-2px);
}

.adv-icon {
  width: 48px;
  height: 48px;
  background: var(--light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.adv-icon i {
  width: 22px;
  height: 22px;
  color: var(--navy);
}

.adv-icon.red { background: rgba(204,48,40,0.08); }
.adv-icon.red i { color: var(--red); }
.adv-icon.orange { background: rgba(232,150,30,0.10); }
.adv-icon.orange i { color: #b8720e; }

.adv-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.adv-text {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.65;
}

/* ============================================================
   Process Steps
   ============================================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 64px;
  height: 64px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 2px var(--navy);
}

.step-num i {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.step-num.orange { background: var(--orange); box-shadow: 0 0 0 2px var(--orange); }
.step-num.red    { background: var(--red);    box-shadow: 0 0 0 2px var(--red); }

.step-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.step-text {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.6;
}

/* ============================================================
   Compliance / Certification Badges
   ============================================================ */
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

.cert-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  min-width: 130px;
  height: 120px;
  flex: 1;
  text-align: center;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.cert-badge:hover {
  box-shadow: var(--shadow);
  border-color: var(--navy);
}

.cert-badge i {
  width: 28px;
  height: 28px;
  color: var(--navy);
}

.cert-badge-label {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.82rem;
  color: var(--navy);
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-align: center;
}

.cert-badge-sub {
  font-size: 0.72rem;
  color: var(--mid);
  font-weight: 300;
}

/* Certification cards (large, detailed) */
.cert-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.cert-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.cert-card-icon {
  width: 60px;
  height: 60px;
  background: var(--light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.cert-card-icon i,
.cert-card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--navy);
}

.cert-card-icon.navy { background: var(--navy); }
.cert-card-icon.navy i,
.cert-card-icon.navy svg { color: var(--white); stroke: var(--white); }
.cert-card-icon.red  { background: rgba(204,48,40,0.08); }
.cert-card-icon.red  i,
.cert-card-icon.red  svg { color: var(--red); }
.cert-card-icon.orange { background: rgba(232,150,30,0.1); }
.cert-card-icon.orange i,
.cert-card-icon.orange svg { color: #b8720e; }

.cert-card-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.cert-card-sub {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--orange);
  font-family: var(--font-heading);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.cert-card-text {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.7;
}

/* ============================================================
   Equipment list
   ============================================================ */
.equip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
}

.equip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--light);
}

.equip-item i {
  width: 17px;
  height: 17px;
  color: var(--orange);
  flex-shrink: 0;
}

.equip-item span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--dark);
}

/* ============================================================
   Table
   ============================================================ */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.data-table th {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 18px;
  text-align: left;
  white-space: nowrap;
}

.data-table th:first-child { border-radius: var(--radius) 0 0 0; }
.data-table th:last-child  { border-radius: 0 var(--radius) 0 0; }

.data-table td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--dark);
  font-weight: 400;
}

.data-table tr:nth-child(even) td {
  background: var(--light);
}

.data-table tr:last-child td {
  border-bottom: none;
}

.data-table tr:hover td {
  background: rgba(27,56,137,0.04);
}

.table-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

/* ============================================================
   Forms
   ============================================================ */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.form-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--dark);
}

.form-label sup {
  color: var(--red);
  font-size: 0.7rem;
}

.form-control {
  padding: 12px 15px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}

.form-control:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,56,137,0.1);
}

.form-control::placeholder {
  color: #a0aab8;
}

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

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7B9A' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.form-checkbox input {
  width: 16px;
  height: 16px;
  accent-color: var(--navy);
  margin-top: 3px;
  flex-shrink: 0;
  cursor: pointer;
}

.form-checkbox label {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.5;
  cursor: pointer;
}

.form-checkbox a {
  color: var(--navy);
  text-decoration: underline;
}

/* Form wrapper card */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

/* ============================================================
   Press / Articles
   ============================================================ */
.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.press-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}

.press-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.press-card-img-real {
  height: 200px;
  width: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.press-card:hover .press-card-img-real {
  transform: scale(1.04);
}
.press-card-img {
  height: 180px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.press-card-img i {
  width: 42px;
  height: 42px;
  color: rgba(255,255,255,0.3);
}

.press-card-img.lighter {
  background: #243f96;
}

.press-card-body {
  padding: 24px;
}

.press-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.press-card-date {
  font-size: 0.78rem;
  color: var(--mid);
  font-weight: 300;
}

.press-card-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.press-card-excerpt {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Filter tabs */
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-tab {
  padding: 8px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--mid);
  cursor: pointer;
  transition: all var(--transition);
}

.filter-tab:hover,
.filter-tab.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* ============================================================
   Info / Contact cards
   ============================================================ */
.info-card {
  display: flex;
  gap: 18px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  transition: box-shadow var(--transition);
}

.info-card:hover {
  box-shadow: var(--shadow);
}

.info-card-icon {
  width: 44px;
  height: 44px;
  background: var(--light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-card-icon i {
  width: 20px;
  height: 20px;
  color: var(--navy);
}

.info-card-body {}

.info-card-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.info-card-text {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.5;
}

/* Map placeholder */
.map-placeholder {
  background: var(--navy);
  border-radius: var(--radius-lg);
  height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.map-placeholder i {
  width: 36px;
  height: 36px;
  color: rgba(255,255,255,0.4);
}

.map-placeholder p {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* ============================================================
   CTA Banner
   ============================================================ */
.cta-banner {
  background: var(--navy);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(232,150,30,0.12) 0%, transparent 70%);
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(204,48,40,0.10) 0%, transparent 70%);
}

.cta-banner-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-banner-text .section-label { color: rgba(255,255,255,0.5); }

.cta-banner-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 10px;
}

.cta-banner-sub {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
}

.cta-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ============================================================
   Checklist
   ============================================================ */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.checklist-item:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow);
}

.checklist-item i {
  width: 18px;
  height: 18px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 1px;
}

.checklist-item span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--dark);
}

/* ============================================================
   Two-column layouts
   ============================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.two-col-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 440px;
}

.two-col-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   Tagline emphasis
   ============================================================ */
.tagline-block {
  border-left: 4px solid var(--orange);
  padding: 20px 24px;
  background: var(--light);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 28px 0;
}

.tagline-block p {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--navy);
  line-height: 1.4;
  font-style: italic;
}

.tagline-block.red {
  border-left-color: var(--red);
}

/* ============================================================
   Quote block
   ============================================================ */
.quote-block {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  position: relative;
}

.quote-block blockquote {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--white);
  line-height: 1.5;
  font-style: italic;
}

.quote-block cite {
  display: block;
  margin-top: 16px;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  font-style: normal;
}

/* ============================================================
   Accessibility Table (conformite page)
   ============================================================ */
.access-specs {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 36px;
}

/* ============================================================
   Scroll Animations
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }
.fade-up.delay-5 { transition-delay: 0.5s; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--dark);
  padding: 72px 0 0;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-brand {}

.footer-logo {
  height: 36px;
  width: auto;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer-brand-desc {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 18px;
  max-width: 280px;
}

.footer-tagline {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--orange);
  text-transform: uppercase;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a i {
  width: 12px;
  height: 12px;
  opacity: 0.5;
}

.footer-links a:hover {
  color: rgba(255,255,255,0.9);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-contact-item i,
.footer-contact-item svg {
  width: 15px;
  height: 15px;
  min-width: 15px;
  color: var(--orange);
  stroke: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item p {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

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

.footer-bottom {
  margin-top: 56px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 32px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  font-weight: 300;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  transition: color var(--transition);
}

.footer-bottom-links a:hover {
  color: rgba(255,255,255,0.7);
}

/* ============================================================
   Misc utilities
   ============================================================ */
.text-navy   { color: var(--navy); }
.text-red    { color: var(--red); }
.text-orange { color: var(--orange); }
.text-mid    { color: var(--mid); }
.text-white  { color: var(--white); }

.bg-light  { background: var(--light); }
.bg-navy   { background: var(--navy); }
.bg-white  { background: var(--white); }

.font-heading { font-family: var(--font-heading); }
.fw-500 { font-weight: 500; }
.fw-400 { font-weight: 400; }
.fw-300 { font-weight: 300; }

.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

.bold-statement {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(1.25rem, 2.5vw, 1.8rem);
  color: var(--navy);
  line-height: 1.3;
}

.bold-statement em {
  color: var(--red);
  font-style: normal;
}

/* ============================================================
   Mobile Nav — Responsive
   ============================================================ */
@media (max-width: 1100px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 900px) {
  .adv-grid { grid-template-columns: repeat(2, 1fr); }
  .press-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-steps::before { display: none; }
  .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .cards-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col.reverse { direction: ltr; }
  .two-col-img { height: 320px; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .hero-split .hero-content { grid-template-columns: 1fr; }
  .hero-split .hero-image { height: 280px; }
  .cta-banner-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
  /* Nav mobile */
  .nav-links,
  .lang-switcher,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
    margin-left: 16px;
    flex-shrink: 0;
  }

  .logo-img {
    height: auto;
    max-height: 30px;
    width: auto;
  }

  /* Mobile menu overlay */
  .mobile-menu {
    display: none;
    position: fixed;
    top: calc(var(--stripe-h) + var(--nav-h));
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 999;
    overflow-y: auto;
    padding: 24px;
    border-top: 1px solid var(--border);
  }

  .mobile-menu.open {
    display: block;
  }

  .mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 24px;
  }

  .mobile-menu-links a,
  .mobile-menu-links button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 12px;
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--dark);
    background: none;
    border: none;
    border-bottom: 1px solid var(--light);
    cursor: pointer;
    width: 100%;
    text-align: left;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .mobile-menu-links a i,
  .mobile-menu-links button i {
    width: 18px;
    height: 18px;
    color: var(--orange);
  }

  .mobile-menu-links a.active {
    color: var(--red);
  }

  .mobile-sub {
    padding-left: 24px;
  }

  .mobile-sub a {
    font-size: 0.95rem;
    font-weight: 400;
    padding: 10px 12px;
    text-transform: none;
    letter-spacing: 0;
  }

  .mobile-lang {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding-top: 16px;
    margin-top: 8px;
    border-top: 1px solid var(--border);
  }

  .mobile-lang a {
    padding: 8px 14px;
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.82rem;
  }

  .mobile-lang a.active {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
  }

  /* Layouts */
  .section { padding: 60px 0; }
  .section-inner { padding: 0 20px; }
  .section-title { font-size: 1.7rem; }

  .adv-grid { grid-template-columns: 1fr; }
  .press-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .cards-grid-2 { grid-template-columns: 1fr; }
  .cards-grid-3 { grid-template-columns: 1fr; }
  .cards-grid-4 { grid-template-columns: 1fr; }
  .equip-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }

  .hero-title { font-size: 2.1rem; }
  .hero-content { padding: 0 20px; padding-top: calc(var(--nav-h) + var(--stripe-h) + 40px); padding-bottom: 60px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { text-align: center; justify-content: center; }

  .cta-banner-inner { padding: 0 20px; }
  .cta-banner-actions { width: 100%; }
  .cta-banner-actions .btn-primary,
  .cta-banner-actions .btn-outline { flex: 1; justify-content: center; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .quote-block { padding: 28px 20px; }

  .nav-inner { padding: 0 20px; }
}

@media (max-width: 480px) {
  .badge-row { gap: 10px; }
  .cert-badge { min-width: 100px; padding: 14px 16px; }
  .stats-bar-inner { grid-template-columns: 1fr; }
  .form-card { padding: 24px; }
  .hero-title { font-size: 1.85rem; }
}
