/* =============================================
   OWS — ONE WORLD SUPPLY | UAE WEBSITE
   Design: Corporate, UAE-grade, Professional
   Palette: Navy #0D1B2E · Gold #C9A84C · White · Light #F4F5F7
   Font: Barlow Condensed (headings) · Barlow (body)
   ============================================= */

:root {
  --navy: #0D1B2E;
  --navy-mid: #152336;
  --navy-light: #1E3050;
  --gold: #C9A84C;
  --gold-light: #D9B96A;
  --gold-pale: #F4EDD4;
  --white: #FFFFFF;
  --off-white: #F4F5F7;
  --light: #EEF0F4;
  --text: #2A3445;
  --text-light: #5C6B82;
  --border: #D6DCE6;
  --radius: 3px;
  --nav-h: 80px;
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
address { font-style: normal; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ===================== NAV ===================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 24px rgba(0,0,0,0.28);
}
.page-inner #navbar {
  background: var(--navy);
}
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.logo-mark svg { width: 44px; height: 44px; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-ows {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--white);
  letter-spacing: 0.05em;
}
.logo-sub {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 1px;
  font-weight: 400;
}
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 4px;
}
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 8px 14px;
  border-radius: 2px;
  transition: color var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a.active {
  border-bottom: 2px solid var(--gold);
  padding-bottom: 6px;
}
.nav-links .nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 8px 20px;
  font-weight: 700;
  border-radius: 2px;
  transition: background var(--transition), transform var(--transition);
}
.nav-links .nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 60px) 32px 120px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center 40%;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,27,46,0.96) 0%,
    rgba(13,27,46,0.88) 40%,
    rgba(13,27,46,0.72) 100%
  );
}
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.8;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
}
.hero-badge {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 6px 18px;
  margin-bottom: 28px;
  animation: fadeUp 0.8s both;
}
.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.0;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  max-width: 860px;
}
.hero-title .line-1 { display: block; animation: fadeUp 0.8s 0.1s both; }
.hero-title .line-2 { display: block; animation: fadeUp 0.8s 0.2s both; }
.hero-title .line-accent {
  display: block;
  color: var(--gold);
  animation: fadeUp 0.8s 0.3s both;
}
.hero-sub {
  max-width: 600px;
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 40px;
  animation: fadeUp 0.8s 0.4s both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.5s both;
}
.hero-stats {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 60px auto 0;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid rgba(201,168,76,0.2);
  padding-top: 32px;
  animation: fadeUp 0.8s 0.6s both;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  padding: 0 32px;
}
.stat:first-child { padding-left: 0; }
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--gold);
  letter-spacing: -0.01em;
  line-height: 1;
}
.stat-lbl {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.stat-div {
  width: 1px;
  height: 40px;
  background: rgba(201,168,76,0.25);
  flex-shrink: 0;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.6), transparent);
  animation: scrollPulse 2s infinite;
}

/* ===================== BUTTONS ===================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}
.btn-primary.large { padding: 18px 36px; font-size: 1rem; }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 28px;
  border: 1.5px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
}
.btn-outline:hover { border-color: var(--white); color: var(--white); transform: translateY(-2px); }
.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 28px;
  border: 1.5px solid rgba(201,168,76,0.6);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-outline-gold:hover { border-color: var(--gold); background: rgba(201,168,76,0.1); transform: translateY(-2px); }
.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 28px;
  border: 1.5px solid var(--navy);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }
.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: gap var(--transition), opacity var(--transition);
  margin-top: 8px;
}
.btn-text:hover { gap: 10px; opacity: 0.85; }

/* ===================== SECTION UTILS ===================== */
.section-pad { padding: 100px 0; }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--navy); }

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}
.section-label.light { color: var(--gold); }

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.section-title.light { color: var(--white); }
.section-title em {
  font-style: italic;
  font-family: 'Playfair Display', serif;
  color: var(--gold);
}
.section-intro { max-width: 720px; margin-bottom: 56px; font-size: 1.05rem; color: var(--text-light); }

/* ===================== WHO WE ARE ===================== */
.section-who { padding: 100px 0; }
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.who-left p { color: var(--text-light); margin-bottom: 16px; font-size: 1.02rem; }
.who-right {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.pillar-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  transition: box-shadow var(--transition), transform var(--transition);
}
.pillar-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); transform: translateX(4px); }
.pillar-icon { flex-shrink: 0; width: 40px; }
.pillar-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}
.pillar-card p { font-size: 0.9rem; color: var(--text-light); margin: 0; line-height: 1.5; }

/* ===================== CATEGORIES ===================== */
.section-categories { background: var(--navy); }
.categories-header { padding: 80px 0 56px; }
.categories-header .section-title { color: var(--white); }
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.cat-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 48px 40px 40px;
  border-top: 3px solid transparent;
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: border-color var(--transition), background var(--transition);
  cursor: pointer;
}
.cat-card:last-child { border-right: none; }
.cat-card:hover { border-top-color: var(--gold); background: rgba(201,168,76,0.04); }
.cat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  opacity: 0.6;
}
.cat-icon { width: 48px; }
.cat-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: 0.02em;
}
.cat-card p { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.6; flex: 1; }
.cat-arrow {
  font-size: 1.2rem;
  color: var(--gold);
  opacity: 0;
  transition: opacity var(--transition), transform var(--transition);
  align-self: flex-start;
}
.cat-card:hover .cat-arrow { opacity: 1; transform: translateX(4px); }

/* ===================== WHY OWS ===================== */
.section-why { padding: 100px 0; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 56px;
  border: 1px solid var(--border);
}
.why-card {
  background: var(--white);
  padding: 40px 36px;
  position: relative;
  transition: background var(--transition);
}
.why-card:hover { background: var(--off-white); }
.why-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 16px;
  opacity: 0.7;
}
.why-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.why-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }
.why-card-cta {
  background: var(--navy) !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.why-cta-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--white) !important;
  line-height: 1.5;
  border-left: 2px solid var(--gold);
  padding-left: 16px;
}

/* ===================== SUPPLY MODEL ===================== */
.section-model { background: var(--navy-mid); padding: 100px 0; }
.section-model .section-title { color: var(--white); }
.model-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 56px;
  flex-wrap: wrap;
}
.model-step {
  flex: 1;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.step-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gold);
  background: rgba(201,168,76,0.06);
}
.model-step h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.model-step p { font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.5; }
.model-arrow {
  font-size: 1.5rem;
  color: var(--gold);
  opacity: 0.4;
  align-self: flex-start;
  margin-top: 18px;
  flex-shrink: 0;
}

/* ===================== STANDARDS ===================== */
.section-standards { background: var(--navy); padding: 40px 0; border-top: 1px solid rgba(255,255,255,0.06); }
.standards-inner { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.standards-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
  flex-shrink: 0;
}
.standards-logos { display: flex; flex-wrap: wrap; gap: 8px; }
.std-badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 4px 12px;
  text-transform: uppercase;
  transition: color var(--transition), border-color var(--transition);
}
.std-badge:hover { color: var(--gold); border-color: rgba(201,168,76,0.4); }

/* ===================== CTA SECTION ===================== */
.section-cta { background: var(--gold); padding: 80px 0; }
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-left h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 12px;
}
.cta-left p { color: rgba(13,27,46,0.7); max-width: 500px; font-size: 1rem; }
.cta-right { display: flex; gap: 16px; flex-wrap: wrap; }
.cta-right .btn-primary {
  background: var(--navy);
  color: var(--white);
}
.cta-right .btn-primary:hover { background: var(--navy-light); }
.cta-right .btn-outline-gold {
  color: var(--navy);
  border-color: rgba(13,27,46,0.4);
}
.cta-right .btn-outline-gold:hover { border-color: var(--navy); background: rgba(13,27,46,0.08); }

/* ===================== PAGE HERO ===================== */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 80px) 0 80px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  background-image:
    linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%),
    url('https://images.unsplash.com/photo-1486325212027-8081e485255e?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
}
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }
.page-hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.page-hero-sub {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  max-width: 560px;
}

/* ===================== STATS BAR ===================== */
.stats-bar {
  background: var(--navy);
  padding: 32px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.stats-bar .stat { flex: 0 0 auto; padding: 0 48px; text-align: center; }
.stats-bar .stat-num { color: var(--gold); }
.stats-bar .stat-lbl { color: rgba(255,255,255,0.5); }

/* ===================== ABOUT PAGE ===================== */
.about-statement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-stmt-left .section-title { margin-bottom: 24px; }
.about-stmt-left p { color: var(--text-light); margin-bottom: 16px; }
.lead-text { font-size: 1.1rem; color: var(--text) !important; font-weight: 500; }
.about-quote {
  margin-top: 28px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--navy);
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  background: var(--gold-pale);
  border-radius: 0 2px 2px 0;
}
.about-quote cite {
  display: block;
  font-style: normal;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 10px;
}
.about-pillars { display: flex; gap: 0; margin-bottom: 24px; }
.about-pillar {
  flex: 1;
  padding: 28px 24px;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ap-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  color: var(--gold);
  text-transform: uppercase;
}
.about-pillar ul { list-style: none; }
.about-pillar ul li {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  padding: 3px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.about-pillar ul li::before { content: '—'; color: var(--gold); font-weight: 700; font-size: 0.7rem; opacity: 0.6; }
.ap-divider { width: 1px; background: rgba(255,255,255,0.08); flex-shrink: 0; }
.about-italic-box {
  border: 1px solid var(--border);
  padding: 20px 24px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  border-left: 3px solid var(--gold);
}

/* TIMELINE */
.timeline { margin-top: 56px; position: relative; }
.timeline::before {
  content: '';
  position: absolute;
  left: 120px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.tl-item {
  display: grid;
  grid-template-columns: 120px 20px 1fr;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 48px;
  position: relative;
}
.tl-year {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--gold);
  text-align: right;
  padding-top: 4px;
}
.tl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--white);
  position: relative;
  z-index: 1;
  margin-top: 8px;
  flex-shrink: 0;
}
.tl-current .tl-dot { background: var(--gold); box-shadow: 0 0 0 4px rgba(201,168,76,0.2); }
.tl-content { padding-top: 2px; }
.tl-content h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.tl-content p { font-size: 0.9rem; color: var(--text-light); }
.tl-tagline {
  margin-top: 32px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-light);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: 16px 24px;
  max-width: 520px;
  margin-left: 168px;
}

/* LEADERSHIP */
.leaders-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 56px; }
.leader-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}
.leader-photo {
  height: 260px;
  background: var(--navy-light);
  position: relative;
  overflow: hidden;
}
.leader-photo-ns {
  background-image: url('https://ows.ae/wp-content/uploads/2026/04/nicolasv2.png');
  background-size: cover;
  background-position: center top;
}
.leader-photo-cds {
  background-image: url('https://ows.ae/wp-content/uploads/2026/04/claudiov2.png');
  background-size: cover;
  background-position: center top;
}
.leader-photo-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(transparent, rgba(13,27,46,0.8));
}
.leader-info { padding: 32px 36px; }
.leader-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
.leader-role {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.leader-info p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.65; margin-bottom: 12px; }
.leader-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-top: 12px;
  transition: color var(--transition);
}
.leader-linkedin:hover { color: var(--gold); }

/* ORIGIN */
.origin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.origin-img-block {
  aspect-ratio: 4/3;
  background: var(--navy-light);
  background-image: url('https://images.unsplash.com/photo-1590774672310-de08df61d8e9?auto=format&fit=crop&w=900&q=80');
  background-size: cover;
  background-position: center;
  position: relative;
}
.origin-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,46,0.6) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 28px;
}
.origin-img-overlay span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 4px 12px;
}
.origin-text .section-title { margin-bottom: 20px; }
.origin-text p { color: var(--text-light); margin-bottom: 16px; }
.origin-points { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.origin-pt { display: flex; align-items: center; gap: 12px; }
.opt-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.origin-pt span { font-size: 0.95rem; color: var(--navy); font-weight: 500; }

/* GLOBAL */
.global-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 48px; }
.global-text p { color: var(--text-light); margin-bottom: 16px; }
.global-nodes { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
.gn-card { display: flex; align-items: center; gap: 16px; padding: 16px 20px; border: 1px solid var(--border); }
.gn-flag { font-size: 1.5rem; }
.gn-info { display: flex; flex-direction: column; }
.gn-info strong { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; color: var(--navy); font-size: 1rem; text-transform: uppercase; letter-spacing: 0.04em; }
.gn-info span { font-size: 0.82rem; color: var(--text-light); }
.global-map-placeholder {
  height: 300px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}
.map-visual { position: relative; width: 100%; height: 100%; }
.map-node { position: absolute; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.map-canada { top: 35%; left: 18%; }
.map-uae { top: 55%; left: 58%; }
.map-europe { top: 30%; left: 48%; }
.map-asia { top: 45%; left: 78%; }
.map-dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.5); border: 2px solid rgba(255,255,255,0.3); }
.map-dot.gold { background: var(--gold); border-color: var(--gold); box-shadow: 0 0 8px rgba(201,168,76,0.5); }
.map-dot.small { width: 8px; height: 8px; }
.map-label { font-family: 'Barlow Condensed', sans-serif; font-size: 0.7rem; text-align: center; color: rgba(255,255,255,0.5); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.map-label small { display: block; font-size: 0.6rem; color: rgba(255,255,255,0.3); letter-spacing: 0.06em; }
.map-lines { position: absolute; inset: 0; width: 100%; height: 100%; }

/* WHY LIST */
.why-list-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.wl-item { display: flex; align-items: flex-start; gap: 16px; padding: 24px; background: var(--white); border: 1px solid var(--border); }
.wl-check {
  font-size: 1rem;
  color: var(--gold);
  font-weight: 700;
  width: 28px;
  height: 28px;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
}
.wl-item strong { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--navy); display: block; margin-bottom: 6px; }
.wl-item p { font-size: 0.88rem; color: var(--text-light); margin: 0; line-height: 1.55; }

/* ===================== PRODUCTS PAGE ===================== */
.products-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.pi-note {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  background: var(--off-white);
  border-left: 3px solid var(--gold);
}
.pi-note p { font-size: 0.9rem; color: var(--text-light); }
.cat-section-header { display: flex; gap: 32px; align-items: flex-start; margin-bottom: 56px; }
.cat-section-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.15;
  line-height: 1;
  flex-shrink: 0;
  margin-top: -8px;
}
.cat-section-header p { color: var(--text-light); max-width: 600px; }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card {
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid transparent;
  transition: border-top-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.section-alt .product-card { background: var(--white); }
.product-card:hover { border-top-color: var(--gold); box-shadow: 0 8px 32px rgba(0,0,0,0.07); transform: translateY(-2px); }
.pc-icon { margin-bottom: 16px; }
.product-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin-bottom: 10px;
}
.product-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; margin-bottom: 16px; }
.pc-standards {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}
.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.support-item { display: flex; gap: 16px; align-items: flex-start; padding: 24px; border: 1px solid var(--border); }
.si-icon { font-size: 1.2rem; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.support-item strong { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--navy); display: block; margin-bottom: 6px; }
.support-item p { font-size: 0.88rem; color: var(--text-light); margin: 0; }

/* ===================== MARKETS PAGE ===================== */
.geo-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 24px; margin-top: 48px; }
.geo-card { padding: 36px 32px; background: var(--white); border: 1px solid var(--border); border-top: 4px solid var(--border); transition: border-top-color var(--transition), box-shadow var(--transition); }
.geo-card:hover { border-top-color: var(--gold); box-shadow: 0 8px 32px rgba(0,0,0,0.07); }
.geo-primary { border-top-color: var(--gold); }
.geo-flag { font-size: 2rem; margin-bottom: 12px; }
.geo-card h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.4rem; color: var(--navy); text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 14px; }
.geo-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; margin-bottom: 20px; }
.geo-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.geo-tags span { font-size: 0.72rem; color: var(--gold); border: 1px solid rgba(201,168,76,0.3); padding: 3px 10px; font-family: 'Barlow Condensed', sans-serif; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.client-segments { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 56px; }
.segment-card { padding: 40px 32px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); }
.seg-num { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.75rem; letter-spacing: 0.18em; color: var(--gold); opacity: 0.6; margin-bottom: 16px; }
.seg-icon { margin-bottom: 20px; }
.segment-card h4 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.25rem; color: var(--white); text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 14px; }
.segment-card p { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.65; margin-bottom: 20px; }
.seg-examples { list-style: none; }
.seg-examples li { font-size: 0.82rem; color: rgba(255,255,255,0.35); padding: 4px 0; display: flex; align-items: center; gap: 8px; }
.seg-examples li::before { content: '—'; color: var(--gold); opacity: 0.5; font-size: 0.7rem; }
.project-types-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.pt-card { overflow: hidden; border: 1px solid var(--border); transition: box-shadow var(--transition), transform var(--transition); }
.pt-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.1); transform: translateY(-3px); }
.pt-bg { height: 160px; background: var(--navy-light); background-size: cover; background-position: center; }
.pt-bg-residential { background-image: url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?auto=format&fit=crop&w=800&q=80'); }
.pt-bg-industrial { background-image: url('https://images.unsplash.com/photo-1518709268805-4e9042af9f23?auto=format&fit=crop&w=800&q=80'); }
.pt-bg-data { background-image: url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?auto=format&fit=crop&w=800&q=80'); }
.pt-bg-infra { background-image: url('https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?auto=format&fit=crop&w=800&q=80'); }
.pt-bg-mep { background-image: url('https://images.unsplash.com/photo-1621905251918-48416bd8575a?auto=format&fit=crop&w=800&q=80'); }
.pt-bg-solar { background-image: url('https://images.unsplash.com/photo-1466611653911-95081537e5b7?auto=format&fit=crop&w=800&q=80'); }
.pt-info { padding: 24px; }
.pt-info h4 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--navy); margin-bottom: 8px; }
.pt-info p { font-size: 0.85rem; color: var(--text-light); line-height: 1.55; margin-bottom: 12px; }
.pt-ref { font-size: 0.72rem; color: var(--gold); font-family: 'Barlow Condensed', sans-serif; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.compliance-banner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.cb-left p { color: var(--text-light); margin-bottom: 14px; }
.standards-grid-mini { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.sgm-item { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.75rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--navy); border: 1px solid var(--border); padding: 10px 8px; text-align: center; background: var(--white); }

/* ===================== CAPABILITY PAGE ===================== */
.downloads-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 48px; }
.download-card { display: flex; gap: 32px; padding: 40px; background: var(--white); border: 1px solid var(--border); border-left: 4px solid var(--gold); transition: box-shadow var(--transition); }
.download-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.dc-icon { flex-shrink: 0; }
.dc-type { font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 8px; }
.dc-info h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.4rem; color: var(--navy); text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 12px; }
.dc-info p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; margin-bottom: 16px; }
.dc-meta { display: flex; gap: 8px; font-size: 0.75rem; color: var(--text-light); font-family: 'Barlow Condensed', sans-serif; letter-spacing: 0.06em; margin-bottom: 20px; }
.dc-btn { margin-top: 4px; }
.contents-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 48px; }
.contents-col h4 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--navy); margin-bottom: 20px; border-bottom: 2px solid var(--gold); padding-bottom: 10px; }
.contents-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.contents-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: var(--text-light); }
.contents-list li::before { content: '→'; color: var(--gold); font-size: 0.8rem; flex-shrink: 0; margin-top: 2px; }
.vendor-note { display: flex; gap: 32px; align-items: flex-start; padding: 40px; background: var(--off-white); border-left: 4px solid var(--gold); }
.vn-icon { flex-shrink: 0; padding-top: 4px; }
.vn-text h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.4rem; color: var(--navy); text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 12px; }
.vn-text p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 20px; line-height: 1.65; }

/* ===================== CONTACT PAGE ===================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.contact-info .section-title { margin-bottom: 36px; }
.ci-block { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.ci-block:last-of-type { border-bottom: none; }
.ci-icon { flex-shrink: 0; padding-top: 2px; }
.ci-block strong { display: block; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--navy); margin-bottom: 6px; }
.ci-block p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 4px; }
.ci-block p a { color: var(--text-light); transition: color var(--transition); }
.ci-block p a:hover { color: var(--gold); }
.ci-social strong { display: block; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--navy); margin-bottom: 12px; }
.ci-social-links { display: flex; gap: 16px; }
.ci-social-links a { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text-light); transition: color var(--transition); }
.ci-social-links a:hover { color: var(--gold); }
.contact-form-wrap .section-title { margin-bottom: 12px; }
.contact-form-wrap > p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 32px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  border-radius: var(--radius);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { align-self: flex-start; cursor: pointer; }
.form-note { font-size: 0.78rem; color: var(--text-light); line-height: 1.5; }
.section-map { }
.map-header { background: var(--navy); padding: 24px 0; }
.map-header h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 1rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.map-embed-wrap { height: 420px; background: var(--navy-light); }
.map-embed-wrap iframe { display: block; }
.next-steps { display: flex; align-items: flex-start; gap: 0; margin-top: 56px; }
.ns-step { flex: 1; text-align: center; padding: 0 24px; }
.ns-num { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 2rem; color: var(--gold); line-height: 1; margin-bottom: 12px; opacity: 0.7; }
.ns-step h4 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--navy); margin-bottom: 8px; }
.ns-step p { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; }
.ns-arrow { font-size: 1.5rem; color: var(--gold); opacity: 0.3; align-self: flex-start; margin-top: 12px; flex-shrink: 0; }

/* ===================== FOOTER ===================== */
#footer { background: var(--navy); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 48px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-brand .footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo span { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.8rem; color: var(--white); letter-spacing: 0.05em; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.65; margin-bottom: 10px; }
.footer-tag { font-family: 'Barlow Condensed', sans-serif; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold) !important; opacity: 0.7; }
.footer-col h5 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { font-size: 0.88rem; color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--gold); }
.footer-col address p { font-size: 0.88rem; color: rgba(255,255,255,0.45); line-height: 1.65; margin-bottom: 4px; }
.footer-col address a { color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer-col address a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a { color: rgba(255,255,255,0.35); transition: color var(--transition); }
.footer-social a:hover { color: var(--gold); }
.footer-bottom { padding: 24px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.25); }
.footer-bottom a { color: rgba(255,255,255,0.35); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* ===================== ANIMATIONS ===================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s, transform 0.7s;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1100px) {
  .who-grid, .about-statement-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .categories-grid { grid-template-columns: 1fr; }
  .cat-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .cat-card:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .leaders-grid, .downloads-grid, .contents-grid { grid-template-columns: 1fr; }
  .compliance-banner { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .stat { flex: 0 0 40%; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section-pad { padding: 64px 0; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0; background: var(--navy); padding: 20px; gap: 4px; box-shadow: 0 8px 24px rgba(0,0,0,0.4); }
  .nav-links.open { display: flex; }
  .nav-links a { color: rgba(255,255,255,0.8); padding: 12px 16px; width: 100%; display: block; }
  .nav-toggle { display: flex; }
  .hero { padding: calc(var(--nav-h) + 40px) 20px 80px; }
  .hero-stats { padding-top: 24px; }
  .stat { flex: 0 0 45%; padding: 0 16px; }
  .stat-div { display: none; }
  .model-steps { flex-direction: column; gap: 24px; }
  .model-arrow { transform: rotate(90deg); align-self: center; }
  .why-grid, .products-grid, .support-grid, .geo-grid, .client-segments, .project-types-grid { grid-template-columns: 1fr; }
  .why-grid { gap: 0; }
  .origin-grid, .global-grid { grid-template-columns: 1fr; gap: 40px; }
  .tl-item { grid-template-columns: 70px 16px 1fr; gap: 16px; }
  .tl-tagline { margin-left: 0; }
  .timeline::before { left: 70px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .about-pillars { flex-direction: column; }
  .ap-divider { width: 100%; height: 1px; }
  .standards-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cta-inner { flex-direction: column; }
  .next-steps { flex-direction: column; }
  .ns-arrow { transform: rotate(90deg); align-self: center; }
  .form-row { grid-template-columns: 1fr; }
  .stats-bar { flex-wrap: wrap; }
  .stats-bar .stat { flex: 0 0 45%; }
  .download-card { flex-direction: column; }
  .about-pillars { flex-direction: column; }
  .hero-title { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .page-hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .global-map-placeholder { height: 200px; }
  .why-list-grid { grid-template-columns: 1fr; }
}

/* ── FORM FEEDBACK MESSAGES (Contact Page) ── */
.form-message {
  padding: 16px 20px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.5;
}
.form-message--success {
  background: #e8f5e9;
  color: #2e7d32;
  border-left: 4px solid #43a047;
}
.form-message--error {
  background: #fdecea;
  color: #c62828;
  border-left: 4px solid #e53935;
}

/* ── ACCESSIBILITY: Focus styles ── */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ── WORDPRESS ADMIN BAR OFFSET ── */
body.admin-bar #navbar {
  top: 32px;
}
@media screen and (max-width: 782px) {
  body.admin-bar #navbar { top: 46px; }
}

/* ── WORDPRESS ALIGNMENT CLASSES ── */
.alignleft  { float: left;  margin-right: 24px; margin-bottom: 16px; }
.alignright { float: right; margin-left:  24px; margin-bottom: 16px; }
.aligncenter { display: block; margin: 0 auto 24px; text-align: center; }
.wp-caption  { max-width: 100%; }
.wp-caption-text { font-size: 0.8rem; color: var(--text-light); text-align: center; margin-top: 4px; }
