/* ============================================================
   GROUPE CLIMATE INTÉGRÉ — Corporate Website Stylesheet v2
   Full English | Real Icons (Lucide SVG) | Mobile-First
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700&display=swap');

:root {
  --navy:        #0B1629;
  --navy-mid:    #112240;
  --navy-light:  #1a3560;
  --blue:        #2A6FC4;
  --blue-bright: #3B88E8;
  --blue-light:  #5BA4F5;
  --silver:      #C8D6E8;
  --white:       #FFFFFF;
  --off-white:   #F7F9FC;
  --gray-100:    #EEF2F7;
  --gray-200:    #D6DEE8;
  --gray-500:    #8A9BB5;
  --gray-700:    #4A5C72;
  --text-dark:   #0B1629;
  --text-mid:    #2C3E55;
  --text-light:  #5A6E85;
  --font-display:'Cormorant Garamond', Georgia, serif;
  --font-body:   'DM Sans', system-ui, -apple-system, sans-serif;
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm:   0 2px 12px rgba(11,22,41,0.08);
  --shadow-md:   0 8px 32px rgba(11,22,41,0.14);
  --shadow-lg:   0 20px 60px rgba(11,22,41,0.18);
  --shadow-blue: 0 8px 28px rgba(42,111,196,0.3);
  --radius:      6px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); color: var(--text-dark); background: var(--white); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; }

/* SVG Icon base */
.icon { display: inline-block; vertical-align: middle; flex-shrink: 0; }
.icon svg { display: block; }

/* ── PAGE ROUTING ── */
.page { display: none; }
.page.active { display: block; }

/* ── CONTAINER ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
@media(max-width:768px){ .container { padding: 0 1.25rem; } }

/* ── TYPOGRAPHY ── */
.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.section-label::before {
  content: '';
  width: 28px; height: 1.5px;
  background: currentColor;
  display: inline-block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--navy);
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.82rem 1.9rem;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--blue); color: var(--white); box-shadow: var(--shadow-blue); }
.btn-primary:hover { background: var(--navy); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(42,111,196,0.4); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.45); }
.btn-outline:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-outline-dark { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }

/* ─────────────────────────────────────────────
   HEADER
───────────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(11,22,41,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  transition: box-shadow 0.4s var(--ease);
}
#site-header.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,0.45);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  gap: 1rem;
}
.logo { display: flex; align-items: center; cursor: pointer; }
.logo img { height: 72px; width: auto; }

/* ── LANGUAGE SWITCHER ── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 20px;
  padding: 0.22rem 0.55rem;
  margin: 0 0.4rem;
}
.lang-btn {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.18rem 0.42rem;
  border-radius: 14px;
  cursor: pointer;
  transition: all var(--transition);
  line-height: 1;
}
.lang-btn:hover { color: var(--white); }
.lang-btn.lang-active {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(42,111,196,0.4);
}
.lang-divider { color: rgba(255,255,255,0.25); font-size: 0.7rem; line-height: 1; }
.lang-switcher-mobile { display: none; }
.header-right-mobile { display: none; align-items: center; gap: 0.75rem; }

.nav-menu { display: flex; align-items: center; gap: 0.15rem; }
.nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 0.5rem 0.8rem;
  border-radius: 3px;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-cta {
  background: var(--blue);
  color: var(--white) !important;
  margin-left: 0.5rem;
  padding: 0.55rem 1.2rem !important;
  box-shadow: var(--shadow-blue);
}
.nav-cta:hover { background: var(--blue-bright) !important; }

/* Mobile toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
}
.mobile-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile Drawer */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.05em;
  cursor: pointer;
  padding: 0.6rem 2rem;
  transition: color var(--transition);
  border-radius: 4px;
  width: 100%;
  text-align: center;
}
.mobile-nav-link:hover { color: var(--blue-light); }
.mobile-close {
  position: absolute;
  top: 1.25rem; right: 1.75rem;
  font-size: 1.6rem;
  color: var(--white);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  padding: 0.5rem;
}

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/Main_Hero_Banner.png');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  will-change: transform;
  animation: heroZoom 22s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1.04); } to { transform: scale(1.10); } }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,22,41,0.94) 0%, rgba(17,34,64,0.78) 55%, rgba(42,111,196,0.12) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 2rem 80px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}
.hero-eyebrow-line { width: 36px; height: 1.5px; background: var(--blue-light); }
.hero-eyebrow span { font-size: 0.73rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--blue-light); font-weight: 500; }
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  font-weight: 300;
  line-height: 1.07;
  color: var(--white);
  max-width: 800px;
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s forwards;
}
.hero-headline em { font-style: italic; color: var(--blue-light); }
.hero-sub {
  font-size: 1.05rem;
  color: rgba(200,214,232,0.9);
  max-width: 580px;
  line-height: 1.82;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s forwards;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.9s forwards;
}
.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  opacity: 0;
  animation: fadeUp 0.9s 1.1s forwards;
  flex-wrap: wrap;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}
.hero-stat-num span { color: var(--blue-light); }
.hero-stat-label { font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--silver); margin-top: 0.35rem; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }

/* ─────────────────────────────────────────────
   REVEAL
───────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); pointer-events: auto; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ─────────────────────────────────────────────
   WHO WE ARE
───────────────────────────────────────────── */
.who-we-are { padding: 100px 0; background: var(--white); }
.wwa-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.wwa-body { color: var(--text-light); font-size: 1rem; line-height: 1.85; margin: 1.25rem 0; }
.wwa-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.pillar { border-left: 2px solid var(--blue); padding: 0.8rem 1rem; background: var(--gray-100); border-radius: 0 var(--radius) var(--radius) 0; }
.pillar-title { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--navy); margin-bottom: 0.2rem; }
.pillar-text { font-size: 0.83rem; color: var(--text-light); }
.wwa-image { position: relative; }
.wwa-img-main { width: 100%; height: 500px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.wwa-img-accent { position: absolute; bottom: -1.75rem; left: -1.75rem; width: 200px; height: 150px; object-fit: cover; border-radius: var(--radius); border: 4px solid var(--white); box-shadow: var(--shadow-md); }

/* ─────────────────────────────────────────────
   APPROACH
───────────────────────────────────────────── */
.approach { background: var(--navy); padding: 100px 0; position: relative; overflow: hidden; }
.approach::before { content: ''; position: absolute; inset: 0; background: url('/images/Commercial_Building_Systems.png') center/cover; opacity: 0.05; }
.approach-header { text-align: center; margin-bottom: 3.5rem; position: relative; }
.approach-header .section-label { justify-content: center; color: var(--blue-light); }
.approach-header .section-label::before { background: var(--blue-light); }
.approach-header .section-title { color: var(--white); margin-top: 0.75rem; }
.approach-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; position: relative; }
.approach-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 2.75rem 2rem;
  transition: background var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.approach-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--blue); transform: scaleX(0); transition: transform var(--transition); transform-origin: left; }
.approach-card:hover { background: rgba(42,111,196,0.12); border-color: rgba(42,111,196,0.3); }
.approach-card:hover::after { transform: scaleX(1); }
.approach-num { font-family: var(--font-display); font-size: 3.5rem; font-weight: 300; color: rgba(42,111,196,0.18); line-height: 1; margin-bottom: 1.25rem; }
.approach-icon { width: 44px; height: 44px; background: rgba(42,111,196,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.approach-icon svg { width: 20px; height: 20px; stroke: var(--blue-light); fill: none; stroke-width: 1.8; }
.approach-card-title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 400; color: var(--white); margin-bottom: 0.65rem; }
.approach-card-text { font-size: 0.88rem; color: var(--silver); line-height: 1.78; }

/* ─────────────────────────────────────────────
   WHY SELL
───────────────────────────────────────────── */
.why-sell { padding: 100px 0; background: var(--off-white); }
.why-sell-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.why-sell-img { width: 100%; height: 540px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.reasons-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.85rem; }
.reason-item { display: flex; gap: 1rem; padding: 1.2rem 1.25rem; background: var(--white); border-radius: var(--radius); border: 1px solid var(--gray-200); transition: all var(--transition); }
.reason-item:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); transform: translateX(4px); }
.reason-icon { flex-shrink: 0; width: 40px; height: 40px; background: var(--blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.reason-icon svg { width: 18px; height: 18px; stroke: var(--white); fill: none; stroke-width: 2; }
.reason-title { font-size: 0.9rem; font-weight: 600; color: var(--navy); margin-bottom: 0.15rem; }
.reason-text { font-size: 0.83rem; color: var(--text-light); }

/* ─────────────────────────────────────────────
   PORTFOLIO
───────────────────────────────────────────── */
.portfolio-section { padding: 100px 0; background: var(--white); }
.portfolio-header { text-align: center; margin-bottom: 3.5rem; }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.portfolio-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--gray-200); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.portfolio-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.portfolio-card-img { width: 100%; height: 210px; object-fit: cover; }
.portfolio-card-body { padding: 1.6rem; }
.portfolio-card-tag { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--blue); margin-bottom: 0.45rem; }
.portfolio-card-title { font-family: var(--font-display); font-size: 1.35rem; font-weight: 400; color: var(--navy); margin-bottom: 0.45rem; }
.portfolio-card-text { font-size: 0.83rem; color: var(--text-light); line-height: 1.68; }
.portfolio-card-meta { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--gray-200); }
.portfolio-meta-item { font-size: 0.77rem; color: var(--gray-500); }
.portfolio-meta-item strong { color: var(--navy); display: block; font-size: 0.86rem; }

/* ─────────────────────────────────────────────
   INSIGHTS
───────────────────────────────────────────── */
.insights-section { padding: 100px 0; background: var(--gray-100); }
.insights-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2.75rem; gap: 1rem; }
.insights-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 1.5rem; }
.insight-card { background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--gray-200); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); cursor: pointer; display: flex; flex-direction: column; }
.insight-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.read-more-btn { display: inline-flex; align-items: center; gap: 0.35rem; margin-top: 1rem; padding: 0.6rem 1.2rem; background: var(--blue); border: 1.5px solid var(--blue); border-radius: 4px; color: var(--white); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; transition: background var(--transition), color var(--transition), transform var(--transition); pointer-events: auto; }
.read-more-btn:hover { background: var(--navy); border-color: var(--navy); color: var(--white); transform: translateX(3px); }
.insight-img { width: 100%; object-fit: cover; }
.insight-img-main { height: 280px; }
.insight-img-sm { height: 180px; }
.insight-body { padding: 1.4rem; display: flex; flex-direction: column; flex: 1; }
.insight-cat { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue); margin-bottom: 0.45rem; }
.insight-title { font-family: var(--font-display); font-size: 1.18rem; font-weight: 400; color: var(--navy); line-height: 1.3; margin-bottom: 0.5rem; }
.insight-title-lg { font-size: 1.55rem; }
.insight-excerpt { font-size: 0.82rem; color: var(--text-light); line-height: 1.65; margin-bottom: 0.75rem; }
.insight-date { font-size: 0.73rem; color: var(--gray-500); }

/* ─────────────────────────────────────────────
   CTA BAND
───────────────────────────────────────────── */
.cta-band { background: var(--navy); padding: 90px 0; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background: url('/images/industrial_HVAC_facility.png') center/cover; opacity: 0.07; }
.cta-band-inner { position: relative; }
.cta-band-title { font-family: var(--font-display); font-size: clamp(1.9rem, 4vw, 3.3rem); font-weight: 300; color: var(--white); max-width: 660px; margin: 0.75rem auto 1.25rem; line-height: 1.15; }
.cta-band-sub { color: var(--silver); font-size: 1rem; max-width: 460px; margin: 0 auto 2.5rem; line-height: 1.78; }
.cta-band-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─────────────────────────────────────────────
   PAGE HERO (inner pages)
───────────────────────────────────────────── */
.page-hero { padding: 150px 0 80px; background: var(--navy); position: relative; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.18; }
.page-hero-content { position: relative; z-index: 2; }
.page-hero-label { color: var(--blue-light); }
.page-hero-label::before { background: var(--blue-light); }
.page-hero-title { font-family: var(--font-display); font-size: clamp(2.2rem, 4.5vw, 4rem); font-weight: 300; color: var(--white); line-height: 1.1; max-width: 680px; margin: 0.75rem 0 1.2rem; }
.page-hero-sub { color: var(--silver); font-size: 1.02rem; max-width: 540px; line-height: 1.82; }

/* ─────────────────────────────────────────────
   ABOUT PAGE
───────────────────────────────────────────── */
.about-story { padding: 100px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-body { color: var(--text-light); font-size: 1rem; line-height: 1.85; margin-top: 1.25rem; margin-bottom: 1rem; }
.mv-section { padding: 90px 0; background: var(--off-white); }
.mv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.mv-card { background: var(--white); padding: 2.4rem; border-radius: var(--radius); border-top: 3px solid var(--blue); box-shadow: var(--shadow-sm); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.mv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.mv-card-icon { width: 46px; height: 46px; background: rgba(42,111,196,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.mv-card-icon svg { width: 22px; height: 22px; stroke: var(--blue); fill: none; stroke-width: 1.8; }
.mv-card-title { font-family: var(--font-display); font-size: 1.45rem; color: var(--navy); margin-bottom: 0.65rem; }
.mv-card-text { font-size: 0.88rem; color: var(--text-light); line-height: 1.78; }
.values-section { padding: 100px 0; background: var(--navy); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }
.value-card { padding: 2rem; border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); transition: all var(--transition); }
.value-card:hover { background: rgba(42,111,196,0.12); border-color: rgba(42,111,196,0.4); transform: translateY(-3px); }
.value-card-icon { width: 42px; height: 42px; background: rgba(42,111,196,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem; }
.value-card-icon svg { width: 20px; height: 20px; stroke: var(--blue-light); fill: none; stroke-width: 1.8; }
.value-name { font-family: var(--font-display); font-size: 1.3rem; color: var(--white); margin-bottom: 0.5rem; }
.value-text { font-size: 0.84rem; color: var(--silver); line-height: 1.7; }

/* ─────────────────────────────────────────────
   STRATEGY
───────────────────────────────────────────── */
.strategy-section { padding: 100px 0; }
.strategy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.strategy-card { padding: 2.4rem; border: 1px solid var(--gray-200); border-radius: var(--radius); position: relative; overflow: hidden; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.strategy-card::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--blue); }
.strategy-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.strategy-num { font-family: var(--font-display); font-size: 3rem; color: var(--gray-200); font-weight: 300; line-height: 1; margin-bottom: 0.85rem; }
.strategy-title { font-family: var(--font-display); font-size: 1.55rem; color: var(--navy); margin-bottom: 0.65rem; }
.strategy-text { font-size: 0.88rem; color: var(--text-light); line-height: 1.78; }
.criteria-section { padding: 90px 0; background: var(--off-white); }
.criteria-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

/* ─────────────────────────────────────────────
   SELL PAGE
───────────────────────────────────────────── */
.sell-emotional { padding: 100px 0; }
.sell-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.sell-process { padding: 90px 0; background: var(--off-white); }
.process-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.process-steps { display: flex; flex-direction: column; gap: 0; margin-top: 2.5rem; position: relative; }
.process-steps::before { content: ''; position: absolute; left: 23px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--blue) 80%, transparent); }
.process-step { display: flex; gap: 1.75rem; padding: 1.75rem 0; position: relative; }
.step-num { flex-shrink: 0; width: 46px; height: 46px; background: var(--blue); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 0.88rem; position: relative; z-index: 1; }
.step-content { padding-top: 0.5rem; }
.step-title { font-weight: 600; color: var(--navy); margin-bottom: 0.35rem; font-size: 0.96rem; }
.step-text { font-size: 0.86rem; color: var(--text-light); line-height: 1.75; }
.sticky-img { width: 100%; height: 580px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-lg); position: sticky; top: 120px; }

/* FAQ */
.faq-section { padding: 90px 0; background: var(--white); }
.faq-list { margin-top: 2.5rem; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 1.4rem 0; cursor: pointer; font-weight: 500; color: var(--navy); font-size: 0.97rem; transition: color var(--transition); gap: 1rem; }
.faq-question:hover { color: var(--blue); }
.faq-arrow { flex-shrink: 0; width: 20px; height: 20px; transition: transform var(--transition); color: var(--blue); }
.faq-arrow svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 0 1.4rem; color: var(--text-light); font-size: 0.9rem; line-height: 1.82; max-width: 700px; }
.faq-item.open .faq-answer { display: block; }

/* Form */
.inquiry-section { padding: 90px 0; background: var(--off-white); }
.form-wrap { max-width: 740px; margin: 0 auto; background: var(--white); padding: 3rem; border-radius: 8px; box-shadow: var(--shadow-md); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field.full { grid-column: span 2; }
.form-label { font-size: 0.77rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); }
.form-input, .form-select, .form-textarea { width: 100%; padding: 0.82rem 1rem; border: 1.5px solid var(--gray-200); border-radius: 4px; font-family: var(--font-body); font-size: 0.9rem; color: var(--text-dark); background: var(--white); transition: border-color var(--transition); outline: none; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(42,111,196,0.1); }
.form-textarea { min-height: 130px; resize: vertical; }
.form-submit { width: 100%; padding: 1rem; font-size: 0.88rem; margin-top: 0.75rem; }
.form-note { text-align: center; margin-top: 1rem; font-size: 0.77rem; color: var(--gray-500); display: flex; align-items: center; justify-content: center; gap: 0.4rem; }
.form-note svg { width: 14px; height: 14px; stroke: var(--gray-500); fill: none; stroke-width: 2; }

/* ─────────────────────────────────────────────
   PORTFOLIO PAGE
───────────────────────────────────────────── */
.portfolio-page { padding: 100px 0; }

/* ─────────────────────────────────────────────
   NEWS PAGE
───────────────────────────────────────────── */
.news-page { padding: 100px 0; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.news-card { background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--gray-200); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); cursor: pointer; display: flex; flex-direction: column; }
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.news-img { width: 100%; height: 200px; object-fit: cover; }
.news-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.news-cat { font-size: 0.67rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--blue); margin-bottom: 0.45rem; }
.news-title { font-family: var(--font-display); font-size: 1.2rem; color: var(--navy); line-height: 1.3; margin-bottom: 0.5rem; }
.news-excerpt { font-size: 0.82rem; color: var(--text-light); line-height: 1.65; }
.news-date { font-size: 0.73rem; color: var(--gray-500); margin-top: 0.85rem; }

/* ─────────────────────────────────────────────
   LEADERSHIP
───────────────────────────────────────────── */
.leadership-section { padding: 100px 0; }
.leadership-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.leader-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--gray-200); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.leader-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.leader-img { width: 100%; height: 300px; object-fit: cover; object-position: top; }
.leader-body { padding: 1.6rem; }
.leader-name { font-family: var(--font-display); font-size: 1.45rem; color: var(--navy); margin-bottom: 0.25rem; }
.leader-role { font-size: 0.78rem; font-weight: 600; color: var(--blue); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.7rem; }
.leader-bio { font-size: 0.84rem; color: var(--text-light); line-height: 1.72; }

/* ─────────────────────────────────────────────
   CAREERS
───────────────────────────────────────────── */
.careers-section { padding: 100px 0; }
.culture-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.culture-card { padding: 2.4rem; background: var(--off-white); border-radius: var(--radius); border-bottom: 3px solid var(--blue); transition: all var(--transition); }
.culture-card:hover { background: var(--white); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.culture-icon { width: 46px; height: 46px; background: rgba(42,111,196,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem; }
.culture-icon svg { width: 22px; height: 22px; stroke: var(--blue); fill: none; stroke-width: 1.8; }
.culture-title { font-family: var(--font-display); font-size: 1.35rem; color: var(--navy); margin-bottom: 0.5rem; }
.culture-text { font-size: 0.86rem; color: var(--text-light); line-height: 1.72; }
.openings-section { padding: 90px 0; background: var(--off-white); }
.openings-list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1rem; }
.opening-item { display: flex; justify-content: space-between; align-items: center; padding: 1.4rem 1.75rem; background: var(--white); border-radius: var(--radius); border: 1px solid var(--gray-200); transition: all var(--transition); gap: 1rem; }
.opening-item:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); }
.opening-title { font-weight: 600; color: var(--navy); font-size: 0.95rem; margin-bottom: 0.2rem; }
.opening-meta { font-size: 0.8rem; color: var(--gray-500); }
.opening-dept { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue); background: rgba(42,111,196,0.08); padding: 0.3rem 0.75rem; border-radius: 20px; white-space: nowrap; flex-shrink: 0; }

/* ─────────────────────────────────────────────
   CONTACT
───────────────────────────────────────────── */
.contact-section { padding: 100px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem; }
.contact-info-title { font-family: var(--font-display); font-size: 1.9rem; color: var(--navy); margin-bottom: 2rem; }
.contact-detail { display: flex; gap: 1rem; margin-bottom: 1.6rem; }
.contact-icon { width: 42px; height: 42px; background: var(--blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { width: 18px; height: 18px; stroke: var(--white); fill: none; stroke-width: 2; }
.contact-detail-label { font-size: 0.73rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-500); }
.contact-detail-value { font-weight: 500; color: var(--navy); font-size: 0.94rem; margin-top: 0.15rem; }
.map-box { height: 260px; background: var(--gray-100); border-radius: var(--radius); margin-top: 2rem; display: flex; align-items: center; justify-content: center; border: 1px solid var(--gray-200); gap: 0.5rem; }
.map-box svg { width: 18px; height: 18px; stroke: var(--gray-500); fill: none; stroke-width: 2; }
.map-text { font-size: 0.86rem; color: var(--gray-500); }

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
#site-footer { background: var(--navy); padding: 70px 0 0; position: relative; overflow: hidden; }
#site-footer::before { content: ''; position: absolute; inset: 0; background: url('/images/Commercial_Building_Systems.png') center/cover; opacity: 0.04; pointer-events: none; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; position: relative; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.09); }
.footer-logo { height: 52px; width: auto; margin-bottom: 1.2rem; }
.footer-tagline { font-size: 0.86rem; color: var(--silver); line-height: 1.78; max-width: 270px; margin-bottom: 1.4rem; }
.footer-social { display: flex; gap: 0.65rem; }
.social-btn { width: 34px; height: 34px; background: rgba(255,255,255,0.07); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all var(--transition); cursor: pointer; }
.social-btn:hover { background: var(--blue); }
.social-btn svg { width: 15px; height: 15px; stroke: var(--silver); fill: none; stroke-width: 2; transition: stroke var(--transition); }
.social-btn:hover svg { stroke: var(--white); }
.footer-col-title { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--white); margin-bottom: 1.2rem; }
.footer-link { display: block; font-size: 0.86rem; color: var(--silver); margin-bottom: 0.55rem; cursor: pointer; transition: color var(--transition); }
.footer-link:hover { color: var(--blue-light); }
.footer-contact { font-size: 0.84rem; color: var(--silver); margin-bottom: 0.5rem; line-height: 1.65; }
.footer-contact strong { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 1.4rem 0; position: relative; gap: 1rem; }
.footer-copy { font-size: 0.78rem; color: var(--gray-500); }
.footer-legal { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.footer-legal span { font-size: 0.78rem; color: var(--gray-500); cursor: pointer; transition: color var(--transition); }
.footer-legal span:hover { color: var(--silver); }

/* ─────────────────────────────────────────────
   RESPONSIVE — TABLET 1024
───────────────────────────────────────────── */
@media(max-width:1024px){
  .wwa-grid, .why-sell-grid, .sell-grid, .about-grid, .criteria-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .why-sell-image { order: -1; }
  .wwa-img-accent { display: none; }
  .approach-cards { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid, .news-grid { grid-template-columns: repeat(2, 1fr); }
  .insights-grid { grid-template-columns: 1fr 1fr; }
  .mv-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .leadership-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .process-2col { grid-template-columns: 1fr; }
  .sticky-img { position: static; height: 380px; }
}

/* ─────────────────────────────────────────────
   RESPONSIVE — MOBILE 768
───────────────────────────────────────────── */
@media(max-width:768px){
  .nav-menu { display: none; }
  .mobile-toggle { display: flex; }
  .header-right-mobile { display: flex; }
  .lang-switcher-mobile { display: flex; }
  .hero-content { padding: 120px 1.25rem 60px; }
  .hero-stats { gap: 1.5rem; }
  .hero-stat-num { font-size: 2rem; }
  .approach-cards { grid-template-columns: 1fr; }
  .portfolio-grid, .news-grid, .leadership-grid, .culture-grid { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .strategy-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: span 1; }
  .insights-header { flex-direction: column; align-items: flex-start; }
  .cta-band-actions { flex-direction: column; align-items: center; }
  .hero-actions { flex-direction: column; }
  .btn { justify-content: center; width: 100%; max-width: 320px; }
  .hero-actions .btn { max-width: 100%; }
  .page-hero { padding: 120px 0 60px; }
  .who-we-are, .approach, .why-sell, .portfolio-section, .insights-section, .cta-band, .about-story, .mv-section, .values-section, .strategy-section, .criteria-section, .sell-emotional, .sell-process, .faq-section, .inquiry-section, .portfolio-page, .news-page, .leadership-section, .careers-section, .openings-section, .contact-section { padding: 70px 0; }
  .opening-item { flex-direction: column; align-items: flex-start; }
  .mobile-nav-link { font-size: 1.6rem; }
}

@media(max-width:480px){
  .values-grid { grid-template-columns: 1fr; }
  .wwa-pillars { grid-template-columns: 1fr; }
  .hero-headline { font-size: 2rem; }
}

/* ─────────────────────────────────────────────
   COMPREHENSIVE RESPONSIVE FIXES
───────────────────────────────────────────── */

/* ── Prevent all horizontal overflow ── */
html, body {
  overflow-x: hidden;
  width: 100%;
}
* { max-width: 100%; }
img, video, iframe { max-width: 100%; height: auto; }

/* ── Header: fix logo size on small screens ── */
@media(max-width:768px){
  .header-inner { padding: 0.7rem 1.25rem; gap: 0.5rem; }
  .logo img { height: 52px; }
  .header-right-mobile { display: flex; gap: 0.5rem; }
}
@media(max-width:380px){
  .logo img { height: 42px; }
  .mobile-toggle { padding: 4px; }
}

/* ── Mobile nav: ensure full-screen coverage ── */
@media(max-width:768px){
  .mobile-nav {
    padding: 2rem 1.5rem;
    overflow-y: auto;
    gap: 0.1rem;
  }
  .mobile-nav-link {
    font-size: 1.4rem;
    padding: 0.5rem 1.5rem;
  }
  .mobile-close {
    top: 1rem;
    right: 1rem;
  }
}

/* ── Hero: prevent text overflow ── */
@media(max-width:768px){
  .hero-headline { font-size: clamp(1.7rem, 6vw, 2.4rem); word-break: break-word; }
  .hero-sub { font-size: 0.95rem; }
  .hero-content { padding: 110px 1.25rem 60px; }
}
@media(max-width:480px){
  .hero-actions { gap: 0.75rem; }
  .btn { padding: 0.75rem 1.4rem; font-size: 0.8rem; }
}

/* ── Section titles: clamp on tiny screens ── */
@media(max-width:480px){
  .section-title { font-size: clamp(1.5rem, 7vw, 2rem); }
  .page-hero-title { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .cta-band-title { font-size: clamp(1.5rem, 6vw, 2rem); }
}

/* ── Who We Are: image heights ── */
@media(max-width:768px){
  .wwa-img-main { height: 280px; }
  .wwa-grid { gap: 2rem; }
}

/* ── Approach cards: full-width on mobile ── */
@media(max-width:768px){
  .approach-card { padding: 2rem 1.5rem; }
  .approach-num { font-size: 2.5rem; }
}

/* ── Why Sell: image heights ── */
@media(max-width:768px){
  .why-sell-img { height: 280px; }
  .why-sell-grid { gap: 2.5rem; }
}

/* ── Insights: fix header wrapping ── */
@media(max-width:768px){
  .insights-header { gap: 1rem; }
  .insight-img-main { height: 200px; }
}

/* ── Strategy cards ── */
@media(max-width:768px){
  .strategy-card { padding: 1.75rem 1.5rem; }
  .strategy-num { font-size: 2.2rem; }
}

/* ── Forms: padding on mobile ── */
@media(max-width:768px){
  .form-wrap { padding: 2rem 1.25rem; margin: 0 0.5rem; }
}
@media(max-width:480px){
  .form-wrap { padding: 1.5rem 1rem; margin: 0; border-radius: 4px; }
}

/* ── Contact: stack properly ── */
@media(max-width:768px){
  .contact-grid { gap: 2.5rem; }
  .contact-info-title { font-size: 1.5rem; }
  .map-box { height: 200px; }
}

/* ── Process steps ── */
@media(max-width:768px){
  .sticky-img { height: 250px; }
  .process-steps::before { left: 20px; }
  .step-num { width: 40px; height: 40px; font-size: 0.8rem; }
}

/* ── Reason items ── */
@media(max-width:480px){
  .reason-item { padding: 1rem; gap: 0.75rem; }
  .reason-icon { width: 34px; height: 34px; flex-shrink: 0; }
}

/* ── Opening items ── */
@media(max-width:480px){
  .opening-item { padding: 1rem 1.25rem; }
  .opening-dept { align-self: flex-start; }
}

/* ── Footer: improve stacking ── */
@media(max-width:768px){
  #site-footer { padding: 50px 0 0; }
  .footer-inner { gap: 1.75rem; }
  .footer-logo { height: 42px; }
  .footer-tagline { max-width: 100%; }
  .footer-bottom { gap: 0.75rem; padding: 1.2rem 0; }
  .footer-legal { justify-content: center; gap: 1rem; }
}
@media(max-width:480px){
  .footer-inner { grid-template-columns: 1fr; }
  .footer-legal { flex-direction: column; align-items: center; gap: 0.5rem; }
  .footer-copy { font-size: 0.73rem; }
}

/* ── Leader / news cards ── */
@media(max-width:768px){
  .leader-img { height: 240px; }
  .news-img { height: 180px; }
}

/* ── CTA band ── */
@media(max-width:768px){
  .cta-band { padding: 70px 0; }
  .cta-band-sub { font-size: 0.92rem; }
}

/* ── Page hero ── */
@media(max-width:480px){
  .page-hero { padding: 110px 0 50px; }
  .page-hero-sub { font-size: 0.92rem; }
}

/* ── Tablet (768–1024): mid-size fixes ── */
@media(min-width:769px) and (max-width:1024px){
  .header-inner { padding: 0.8rem 1.5rem; }
  .logo img { height: 60px; }
  .nav-link { font-size: 0.75rem; padding: 0.45rem 0.6rem; }
  .wwa-img-main { height: 380px; }
  .why-sell-img { height: 380px; }
  .contact-grid { gap: 3rem; }
  .footer-inner { gap: 1.5rem; }
  .form-wrap { padding: 2.5rem 2rem; }
  .insights-grid { grid-template-columns: 1fr 1fr; }
  .insight-img-main { height: 220px; }
}

/* ══════════════════════════════════════════════
   ARTICLE PAGES — Beautiful Full-Read Experience
   ══════════════════════════════════════════════ */

/* Reading progress bar */
.reading-progress {
  position: fixed; top: 0; left: 0; width: 0%; height: 3px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-light) 100%);
  z-index: 9999; transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(91,164,245,0.5);
}

.article-page { padding: 0 0 100px; }

/* Hero — deep cinematic banner */
.article-hero {
  background: var(--navy);
  padding: 150px 0 70px;
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
}
.article-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11,22,41,0.35) 0%,
    rgba(11,22,41,0.55) 40%,
    rgba(11,22,41,0.92) 100%
  );
  z-index: 1;
}
.article-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 1;
  transform: scale(1.04);
  transition: transform 6s ease;
}
.article-hero:hover .article-hero-bg { transform: scale(1.0); }
.article-hero-inner {
  position: relative; z-index: 2;
  max-width: 820px;
  animation: fadeUpIn 0.7s var(--ease) both;
}
@keyframes fadeUpIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Back button */
.article-back {
  display: inline-flex; align-items: center; gap: 0.45rem;
  color: rgba(200,214,232,0.75);
  font-size: 0.73rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer; margin-bottom: 1.6rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  padding: 0.45rem 1.1rem 0.45rem 0.8rem;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}
.article-back:hover {
  background: rgba(255,255,255,0.14);
  color: var(--white);
  border-color: rgba(255,255,255,0.22);
  transform: translateX(-2px);
}
.article-back svg {
  width: 14px; height: 14px;
  stroke: currentColor; fill: none; stroke-width: 2.5;
}

/* Category + date tag */
.article-cat {
  display: inline-block;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--white);
  background: var(--blue);
  padding: 0.32rem 0.85rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

/* Headline */
.article-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 1.4rem;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.35);
}

/* Meta row */
.article-meta {
  display: flex; align-items: center; gap: 0.9rem;
  font-size: 0.83rem; color: var(--silver);
  flex-wrap: wrap;
}
.article-meta::before {
  content: '';
  display: inline-block; width: 28px; height: 1px;
  background: var(--blue-light); flex-shrink: 0;
}

/* ── Article Body Layout ── */
.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 2rem 1rem;
}

/* Drop-cap on first paragraph */
.article-body > p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 4.2rem;
  font-weight: 600;
  line-height: 0.78;
  float: left;
  margin: 0.1rem 0.18rem -0.1rem 0;
  color: var(--navy);
}

.article-body h2 {
  font-family: var(--font-display);
  font-size: 1.95rem; font-weight: 400;
  color: var(--navy);
  margin: 3.2rem 0 1.1rem;
  line-height: 1.15;
  position: relative;
  padding-bottom: 0.7rem;
}
.article-body h2::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 42px; height: 2px;
  background: linear-gradient(90deg, var(--blue), transparent);
}
.article-body h3 {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 500;
  color: var(--navy-mid);
  margin: 2.5rem 0 0.85rem;
}
.article-body p {
  font-size: 1.07rem; color: var(--text-mid);
  line-height: 1.92; margin-bottom: 1.6rem;
  font-weight: 300;
}
.article-body ul, .article-body ol {
  margin: 0.5rem 0 2rem 0; padding-left: 0; list-style: none;
}
.article-body li {
  font-size: 1.05rem; color: var(--text-mid);
  line-height: 1.82; margin-bottom: 0.7rem;
  padding-left: 1.5rem; position: relative;
}
.article-body ul li::before {
  content: '';
  position: absolute; left: 0; top: 0.65rem;
  width: 6px; height: 6px;
  background: var(--blue); border-radius: 50%;
}
.article-body ol { counter-reset: ol-counter; }
.article-body ol li { counter-increment: ol-counter; }
.article-body ol li::before {
  content: counter(ol-counter) '.';
  position: absolute; left: 0;
  font-weight: 700; color: var(--blue); font-size: 0.82rem;
  top: 0.18rem;
}

/* Pull-quote / blockquote */
.article-body blockquote {
  position: relative;
  margin: 2.8rem 0 2.8rem -1.5rem;
  padding: 1.5rem 2rem 1.5rem 2.5rem;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--off-white) 100%);
  border-left: none;
  border-radius: 0 12px 12px 0;
  overflow: visible;
}
.article-body blockquote::before {
  content: '\201C';
  position: absolute; left: -0.1rem; top: -0.8rem;
  font-family: var(--font-display);
  font-size: 6rem; line-height: 1;
  color: var(--blue); opacity: 0.25;
  pointer-events: none;
}
.article-body blockquote::after {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--blue), var(--blue-light));
  border-radius: 4px 0 0 4px;
}
.article-body blockquote p {
  font-family: var(--font-display);
  font-size: 1.3rem; font-style: italic;
  color: var(--navy); margin: 0;
  line-height: 1.55; font-weight: 400;
}

/* Key stats / data callout boxes */
.article-body .stat-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.25rem; margin: 2.5rem 0;
}
.article-body .stat-box {
  background: var(--navy);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}
.article-body .stat-box .stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem; font-weight: 300;
  color: var(--white); line-height: 1;
  margin-bottom: 0.4rem;
}
.article-body .stat-box .stat-label {
  font-size: 0.75rem; color: var(--silver);
  letter-spacing: 0.08em; text-transform: uppercase;
}

/* Divider */
.article-divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-200) 20%, var(--gray-200) 80%, transparent);
  margin: 3.5rem 0;
}

/* CTA panel at bottom */
.article-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  margin-top: 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.article-cta::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: var(--blue);
  border-radius: 50%; opacity: 0.07;
}
.article-cta h3 {
  font-family: var(--font-display);
  font-size: 1.9rem; font-weight: 300;
  color: var(--white); margin-bottom: 0.85rem;
  position: relative;
}
.article-cta p {
  color: var(--silver); font-size: 1rem;
  margin-bottom: 1.8rem; max-width: 440px;
  margin-left: auto; margin-right: auto;
  position: relative;
}
.article-cta .btn { position: relative; }

/* ══════════════════════════════════════════════
   LEGAL PAGES — Clean, Professional, Readable
   ══════════════════════════════════════════════ */

.legal-page { padding: 0; }

/* Legal hero header */
.legal-hero {
  background: var(--navy);
  padding: 140px 0 56px;
  position: relative;
  overflow: hidden;
}
.legal-hero::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(42,111,196,0.12) 0%, transparent 60%),
    linear-gradient(to bottom, transparent 60%, rgba(11,22,41,0.5) 100%);
}
.legal-hero-inner {
  position: relative; z-index: 2;
  max-width: 820px;
}
.legal-hero .article-back { margin-bottom: 2rem; }
.legal-hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--blue-light);
  border: 1px solid rgba(91,164,245,0.3);
  border-radius: 50px; padding: 0.3rem 0.9rem;
  margin-bottom: 1.25rem;
}
.legal-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300; color: var(--white);
  line-height: 1.1; margin-bottom: 1rem;
}
.legal-hero-meta {
  font-size: 0.82rem; color: var(--gray-500);
  display: flex; align-items: center; gap: 0.6rem;
}
.legal-hero-meta::before {
  content: ''; display: inline-block;
  width: 24px; height: 1px; background: var(--gray-500);
}

/* Legal content area */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 4rem 2rem 5rem;
}

/* Section TOC */
.legal-toc {
  background: var(--gray-100);
  border-radius: 12px;
  padding: 1.8rem 2rem;
  margin-bottom: 3rem;
}
.legal-toc-title {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gray-500); margin-bottom: 1rem;
}
.legal-toc ol {
  margin: 0; padding-left: 1.25rem;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.3rem 1.5rem;
}
.legal-toc li {
  font-size: 0.87rem; color: var(--blue);
  line-height: 1.6; cursor: pointer;
  transition: color var(--transition);
}
.legal-toc li:hover { color: var(--navy); }

/* Legacy legal-body styles — keep working for existing HTML */
.legal-body { max-width: 820px; margin: 0 auto; }
.legal-body h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300; color: var(--navy); margin-bottom: 0.5rem;
}
.legal-body .legal-date {
  font-size: 0.82rem; color: var(--gray-500);
  margin-bottom: 2.5rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.legal-body .legal-date::before {
  content: ''; display: inline-block;
  width: 20px; height: 1px; background: var(--gray-500);
}
.legal-body h2 {
  font-family: var(--font-display);
  font-size: 1.45rem; color: var(--navy);
  margin: 2.5rem 0 0.85rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--gray-200);
}
.legal-body p, .legal-body li {
  font-size: 0.97rem; color: var(--text-mid);
  line-height: 1.9; margin-bottom: 1.1rem;
}
.legal-body ul {
  margin: 0.25rem 0 1.5rem 0; padding-left: 0; list-style: none;
}
.legal-body ul li {
  padding-left: 1.4rem; position: relative;
}
.legal-body ul li::before {
  content: '—';
  position: absolute; left: 0;
  color: var(--blue-light); font-size: 0.85rem;
}

/* Contact block inside legal */
.legal-body .legal-contact {
  background: var(--gray-100);
  border-radius: 12px;
  padding: 1.6rem 2rem;
  margin-top: 2.5rem;
}
.legal-body .legal-contact strong { color: var(--navy); }

@media(max-width:768px){
  .article-hero { padding: 120px 0 55px; min-height: 340px; }
  .article-body { padding: 2.5rem 1.25rem 1rem; }
  .article-body > p:first-of-type::first-letter { font-size: 3.2rem; }
  .article-body h2 { font-size: 1.6rem; }
  .article-body blockquote { margin-left: 0; }
  .article-cta { padding: 2rem 1.5rem; border-radius: 12px; }
  .legal-page { padding: 0; }
  .legal-hero { padding: 110px 0 45px; }
  .legal-body { padding: 2.5rem 1.25rem; }
  .legal-toc ol { grid-template-columns: 1fr; }
}

/* Lang switcher as links (EN/FR file switching) */
a.lang-btn {
  display: inline-block;
  text-decoration: none;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.18rem 0.42rem;
  border-radius: 14px;
  cursor: pointer;
  transition: all var(--transition);
  line-height: 1;
}
a.lang-btn:hover { color: var(--white); }
a.lang-btn.lang-active {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(42,111,196,0.4);
}
