/* ============================================
   Oubaitori Group — Oubaitori | styles.css
   Shared stylesheet for all pages
   ============================================ */

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

:root {
  --ink: #0a0a0f;
  --paper: #f5f2ed;
  --cream: #ebe7df;
  --gold: #c9a84c;
  --gold-light: #e4d5a0;
  --gold-dark: #a8893a;
  --crimson: #b8344f;
  --teal: #2a7a6e;
  --slate: #3d3d4a;
  --mist: #d4d0c8;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.15);
  --transition: .3s ease;
  --max-w: 1200px;
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'DM Sans', sans-serif; color: var(--ink); background: var(--paper); overflow-x: hidden; }

/* ─── SCROLL PROGRESS ─── */
#progress-bar {
  position: fixed; top: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 9999; width: 0%; transition: width .1s linear;
  pointer-events: none;
}

/* ─── SCROLL TO TOP ─── */
#scroll-top {
  position: fixed; bottom: 7rem; right: 1.5rem;
  width: 42px; height: 42px; background: var(--ink); color: var(--gold);
  border: 1px solid rgba(201,168,76,.3); cursor: pointer;
  display: none; align-items: center; justify-content: center;
  font-size: 1.1rem; z-index: 998; transition: all var(--transition);
}
#scroll-top:hover { background: var(--gold); color: var(--ink); }
#scroll-top.visible { display: flex; }

/* ─── WHATSAPP FLOAT ─── */
#wa-btn {
  position: fixed; bottom: 2rem; right: 1.5rem;
  width: 50px; height: 50px; background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; z-index: 998;
  box-shadow: 0 4px 15px rgba(37,211,102,.4); font-size: 1.6rem;
  transition: transform var(--transition);
}
#wa-btn:hover { transform: scale(1.1); }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1rem 3rem; display: flex; align-items: center; justify-content: space-between;
  background: rgba(10,10,15,.97); backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0,0,0,.2); transition: padding var(--transition);
}
nav.scrolled { padding: .7rem 3rem; }
.nav-logo {
  font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700;
  color: var(--gold); text-decoration: none; letter-spacing: .08em; flex-shrink: 0;
}
.nav-logo span { color: var(--white); font-weight: 400; }
.nav-links { display: flex; gap: 1.5rem; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,.65); text-decoration: none; font-size: .8rem;
  font-weight: 500; letter-spacing: .06em; text-transform: uppercase;
  transition: color var(--transition); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold); transform: scaleX(0);
  transition: transform var(--transition); transform-origin: center;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  background: var(--gold) !important; color: var(--ink) !important;
  padding: .45rem 1.2rem !important; font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--white) !important; }
.nav-dd { position: relative; }
.nav-dd .dd-menu {
  display: none; position: absolute; top: calc(100% + .8rem); left: -1rem;
  background: rgba(10,10,15,.98); backdrop-filter: blur(20px);
  min-width: 270px; padding: .8rem 0;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 20px 50px rgba(0,0,0,.5); z-index: 100;
}
.nav-dd:hover .dd-menu { display: block; }
.dd-menu a {
  display: flex; align-items: center; gap: .6rem;
  padding: .55rem 1.2rem; font-size: .78rem;
  color: rgba(255,255,255,.6); text-transform: none; letter-spacing: .02em;
}
.dd-menu a::after { display: none; }
.dd-menu a:hover { color: var(--gold); background: rgba(201,168,76,.05); }
.dd-menu-divider { height: 1px; background: rgba(255,255,255,.06); margin: .4rem 0; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; }
.hamburger span { width: 26px; height: 2px; background: var(--white); transition: all var(--transition); }

/* ─── LANGUAGE SWITCHER ─── */
.lang-switcher {
  display: flex; gap: .35rem; align-items: center; margin-left: .8rem;
}
.lang-btn {
  background: transparent; border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.5); font-size: .65rem; font-weight: 600;
  padding: .3rem .55rem; cursor: pointer; font-family: 'DM Sans', sans-serif;
  letter-spacing: .04em; transition: all var(--transition); white-space: nowrap;
}
.lang-btn:hover { border-color: var(--gold); color: var(--gold); }
.lang-btn.active {
  background: var(--gold); color: var(--ink);
  border-color: var(--gold); font-weight: 700;
}

/* ─── PAGE HEADER ─── */
.page-header {
  padding: 10rem 3rem 5rem; background: var(--ink);
  text-align: center; position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201,168,76,.07), transparent 60%);
}
.page-header::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 80%, rgba(42,122,110,.04), transparent 50%);
}
.page-header > * { position: relative; z-index: 1; }
.page-header h1 {
  font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--white); font-weight: 800; margin-bottom: 1rem; line-height: 1.1;
}
.page-header p {
  font-size: 1.05rem; color: rgba(255,255,255,.5);
  max-width: 620px; margin: 0 auto; line-height: 1.75; font-weight: 300;
}
.breadcrumb {
  margin-top: 1.8rem; font-size: .72rem; color: rgba(255,255,255,.3);
  letter-spacing: .04em;
}
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ─── COMMON TYPOGRAPHY ─── */
.section-tag {
  font-size: .65rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: .8rem; display: block;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  color: var(--ink); margin-bottom: .8rem; font-weight: 700; line-height: 1.15;
}
.section-sub {
  font-size: .95rem; color: var(--slate);
  max-width: 600px; line-height: 1.85; font-weight: 300;
}
.prose { font-size: .93rem; color: var(--slate); line-height: 1.9; font-weight: 300; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose p { margin-bottom: 1.1rem; }
.prose p:last-child { margin-bottom: 0; }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--gold); color: var(--ink); padding: .85rem 2.2rem;
  text-decoration: none; font-weight: 600; font-size: .88rem;
  letter-spacing: .04em; transition: all var(--transition); border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}
.btn-primary:hover {
  background: var(--ink); color: var(--gold);
  transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201,168,76,.25);
}
.btn-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  border: 1px solid rgba(255,255,255,.3); color: var(--white);
  padding: .85rem 2.2rem; text-decoration: none; font-weight: 500;
  font-size: .88rem; transition: all var(--transition); background: transparent;
  font-family: 'DM Sans', sans-serif; cursor: pointer;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-dark {
  display: inline-flex; align-items: center; gap: .5rem;
  border: 1px solid var(--ink); color: var(--ink); padding: .85rem 2.2rem;
  text-decoration: none; font-weight: 500; font-size: .88rem;
  transition: all var(--transition); background: transparent;
  font-family: 'DM Sans', sans-serif; cursor: pointer;
}
.btn-dark:hover { background: var(--ink); color: var(--gold); }

/* ─── LAYOUT ─── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 3rem; }
.section { padding: 5rem 3rem; max-width: var(--max-w); margin: 0 auto; }
.section-full { padding: 5rem 0; }
.section-full .container { padding: 0 3rem; }
.section-center { text-align: center; margin-bottom: 3rem; }
.section-center .section-sub { margin: 0 auto; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.divider { height: 1px; background: var(--mist); margin: 2.5rem 0; }
.alt-bg { background: var(--white); }
.cream-bg { background: var(--cream); }
.dark-bg { background: var(--ink); }

/* ─── CARDS ─── */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 1.3rem; margin-top: 2rem; }
.service-card {
  padding: 1.8rem; background: var(--white); border: 1px solid var(--mist);
  transition: all var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card h4 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--ink); margin-bottom: .45rem; }
.service-card p { font-size: .83rem; color: var(--slate); line-height: 1.65; font-weight: 300; }
.service-card .sc-icon { font-size: 1.6rem; margin-bottom: .9rem; }

/* ─── VENTURE CARDS (Homepage) ─── */
.ventures-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.venture-card {
  background: var(--white); border: 1px solid var(--mist);
  border-top: 4px solid var(--mist); text-decoration: none;
  display: flex; flex-direction: column; padding: 2rem;
  transition: all var(--transition); position: relative;
}
.venture-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.venture-card .vc-icon { font-size: 2rem; margin-bottom: 1rem; }
.venture-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--ink); margin-bottom: .5rem; font-weight: 700; }
.venture-card p { font-size: .83rem; color: var(--slate); line-height: 1.65; font-weight: 300; flex: 1; }
.venture-card .vc-footer { margin-top: 1.3rem; padding-top: 1rem; border-top: 1px solid var(--mist); display: flex; justify-content: space-between; align-items: center; }
.venture-card .vc-sector { font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; color: var(--slate); font-weight: 600; }
.venture-card .vc-arrow { font-size: 1rem; color: var(--mist); transition: all var(--transition); }
.venture-card:hover .vc-arrow { color: var(--gold); transform: translateX(4px); }

/* ─── COMPANY ACCENT COLORS ─── */
.accent-teal { border-top-color: #2a7a6e !important; }
.accent-crimson { border-top-color: #b8344f !important; }
.accent-brown { border-top-color: #8b5e3c !important; }
.accent-orange { border-top-color: #c77b2e !important; }
.accent-blue { border-top-color: #4a7fb5 !important; }
.accent-purple { border-top-color: #7a5fa0 !important; }
.accent-green { border-top-color: #5a8f3d !important; }
.accent-gold { border-top-color: #c9a84c !important; }

/* ─── SECTOR FILTER ─── */
.sector-filter { display: flex; gap: .5rem; flex-wrap: wrap; margin: 0 0 2.5rem; justify-content: center; }
.sf-btn {
  padding: .38rem 1.1rem; border: 1px solid var(--mist); font-size: .72rem;
  color: var(--slate); background: transparent; cursor: pointer;
  transition: all var(--transition); font-family: 'DM Sans', sans-serif;
  font-weight: 500; letter-spacing: .05em; text-transform: uppercase;
}
.sf-btn:hover, .sf-btn.active { background: var(--ink); color: var(--gold); border-color: var(--ink); }
.venture-card.hidden { display: none; }

/* ─── STATS ─── */
.stats-strip {
  display: flex; gap: 0; flex-wrap: wrap;
  background: var(--white); border-top: 1px solid var(--mist); border-bottom: 1px solid var(--mist);
}
.stat-item {
  flex: 1; min-width: 140px; padding: 2.5rem 2rem;
  text-align: center; border-right: 1px solid var(--mist);
}
.stat-item:last-child { border-right: none; }
.stat-val { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 800; color: var(--ink); line-height: 1; }
.stat-val .gold { color: var(--gold); }
.stat-lbl { font-size: .68rem; color: var(--slate); text-transform: uppercase; letter-spacing: .12em; margin-top: .4rem; font-weight: 500; }

/* ─── STATS ROW (company pages) ─── */
.stats-row { display: flex; gap: 1.5rem; flex-wrap: wrap; margin: 2rem 0; }
.stat-box {
  text-align: center; padding: 1.6rem 2rem; background: var(--cream);
  flex: 1; min-width: 120px; border: 1px solid var(--mist);
}
.stat-box .val { font-family: 'Playfair Display', serif; font-size: 1.9rem; font-weight: 700; color: var(--ink); }
.stat-box .val span { color: var(--gold); }
.stat-box .lbl { font-size: .67rem; color: var(--slate); text-transform: uppercase; letter-spacing: .1em; margin-top: .25rem; font-weight: 500; }

/* ─── SPLIT SECTION ─── */
.split-section { display: grid; grid-template-columns: 1fr 1fr; }
.split-panel { padding: 5rem 4rem; display: flex; flex-direction: column; justify-content: center; }
.split-dark { background: var(--ink); }
.split-dark .section-title { color: var(--white); }
.split-dark .prose, .split-dark p, .split-dark .section-sub { color: rgba(255,255,255,.55); }
.split-light { background: var(--cream); }
.split-light .section-title { color: var(--ink); }

/* ─── WHY US ─── */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.why-item { padding: 2.8rem 2rem; border-right: 1px solid var(--mist); border-bottom: 1px solid var(--mist); }
.why-item:nth-child(4n) { border-right: none; }
.why-num { font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 800; color: rgba(201,168,76,.15); line-height: 1; margin-bottom: .6rem; }
.why-item h4 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--ink); margin-bottom: .5rem; }
.why-item p { font-size: .82rem; color: var(--slate); line-height: 1.65; font-weight: 300; }

/* ─── TRUST STRIP ─── */
.trust-strip {
  background: var(--ink); padding: 2rem 3rem;
  display: flex; gap: 0; justify-content: center; align-items: center;
  flex-wrap: wrap;
}
.trust-item { text-align: center; padding: 1rem 2.5rem; border-right: 1px solid rgba(255,255,255,.08); }
.trust-item:last-child { border-right: none; }
.trust-item .t-label { font-size: .6rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: .3rem; font-weight: 600; }
.trust-item .t-val { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--gold); }

/* ─── HIGHLIGHT BOX ─── */
.highlight-box {
  padding: 1.4rem 1.6rem; border-left: 3px solid var(--gold);
  background: var(--cream); margin: 1.2rem 0;
}
.highlight-box h4 { font-family: 'Playfair Display', serif; font-size: .95rem; color: var(--ink); margin-bottom: .3rem; }
.highlight-box p { font-size: .84rem; color: var(--slate); line-height: 1.6; font-weight: 300; }

/* ─── TAGS ─── */
.tags { display: flex; flex-wrap: wrap; gap: .4rem; margin: 1.2rem 0; }
.tag { font-size: .68rem; padding: .28rem .75rem; background: var(--cream); color: var(--slate); letter-spacing: .04em; font-weight: 500; border: 1px solid var(--mist); }

/* ─── VALUES GRID ─── */
.values-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.2rem; }
.value-item { padding: 1.5rem; background: var(--white); border: 1px solid var(--mist); border-top: 3px solid var(--gold); }
.value-item h4 { font-family: 'Playfair Display', serif; font-size: .95rem; margin-bottom: .35rem; color: var(--ink); }
.value-item p { font-size: .81rem; color: var(--slate); line-height: 1.6; font-weight: 300; }

/* ─── LEADER GRID ─── */
.leader-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.leader-card { text-align: center; padding: 2.2rem 1.5rem; border: 1px solid var(--mist); background: var(--paper); transition: all var(--transition); }
.leader-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.leader-avatar {
  width: 75px; height: 75px; border-radius: 50%; background: var(--ink);
  margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--gold); font-family: 'Playfair Display', serif; font-weight: 700;
  border: 2px solid rgba(201,168,76,.3);
}
.leader-name { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--ink); margin-bottom: .2rem; }
.leader-role { font-size: .7rem; color: var(--gold); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; margin-bottom: .6rem; }
.leader-desc { font-size: .8rem; color: var(--slate); line-height: 1.6; font-weight: 300; }

/* ─── TIMELINE ─── */
.timeline { position: relative; padding-left: 2.8rem; margin-top: 2rem; }
.timeline::before { content: ''; position: absolute; left: 10px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--gold), var(--mist)); }
.tl-item { position: relative; margin-bottom: 2.2rem; padding-left: 1.5rem; }
.tl-item::before {
  content: ''; position: absolute; left: -2.8rem; top: .4rem;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--white); border: 3px solid var(--gold); z-index: 1;
}
.tl-year { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--gold); margin-bottom: .2rem; }
.tl-title { font-weight: 600; font-size: .94rem; color: var(--ink); margin-bottom: .2rem; }
.tl-desc { font-size: .83rem; color: var(--slate); line-height: 1.6; font-weight: 300; }

/* ─── INDUSTRIES ─── */
.ind-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(175px, 1fr)); gap: 1.2rem; margin-top: 2rem; }
.ind-item { padding: 1.6rem 1.2rem; text-align: center; border: 1px solid var(--mist); background: var(--white); transition: all var(--transition); }
.ind-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.ind-icon { font-size: 2rem; margin-bottom: .7rem; }
.ind-item h4 { font-size: .84rem; font-weight: 600; color: var(--ink); margin-bottom: .2rem; }
.ind-item p { font-size: .7rem; color: var(--slate); font-weight: 300; line-height: 1.5; }

/* ─── PROCESS STEPS ─── */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; counter-reset: step; }
.process-step {
  padding: 2.5rem 2rem; background: var(--white); counter-increment: step;
  position: relative; border: 1px solid var(--mist); border-right: none;
}
.process-step:last-child { border-right: 1px solid var(--mist); }
.process-step::before {
  content: counter(step, decimal-leading-zero);
  font-family: 'Playfair Display', serif; font-size: 2.5rem;
  font-weight: 800; color: rgba(201,168,76,.12);
  position: absolute; top: .8rem; right: 1rem;
}
.process-step h4 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--ink); margin-bottom: .5rem; }
.process-step p { font-size: .82rem; color: var(--slate); line-height: 1.6; font-weight: 300; }
.process-step .ps-num { font-size: .65rem; letter-spacing: .2em; color: var(--gold); text-transform: uppercase; font-weight: 700; margin-bottom: .5rem; display: block; }

/* ─── CONTACT FORM ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; margin-top: 2rem; }
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.ci { padding: 1.3rem 1.5rem; background: var(--white); border: 1px solid var(--mist); border-left: 3px solid var(--gold); }
.ci h4 { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: .35rem; }
.ci p { font-size: .9rem; color: var(--slate); line-height: 1.55; }
.ci a { color: var(--teal); text-decoration: none; }
.ci a:hover { text-decoration: underline; }
.form-field { margin-bottom: 1.3rem; }
.form-field label { display: block; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--slate); font-weight: 600; margin-bottom: .45rem; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%; padding: .8rem 1rem; border: 1px solid var(--mist);
  background: var(--white); font-family: 'DM Sans', sans-serif;
  font-size: .9rem; color: var(--ink); outline: none; transition: border-color var(--transition);
  appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--gold); }
.form-field textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ─── FAQ / ACCORDION ─── */
.faq-list { margin-top: 1.5rem; }
.faq-item { border-bottom: 1px solid var(--mist); }
.faq-q {
  width: 100%; text-align: left; padding: 1.2rem 0;
  background: none; border: none; font-family: 'DM Sans', sans-serif;
  font-size: .9rem; font-weight: 600; color: var(--ink); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
}
.faq-q .faq-icon { font-size: 1.4rem; color: var(--gold); font-weight: 300; flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-q .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s ease; }
.faq-a-inner { padding-bottom: 1.2rem; font-size: .85rem; color: var(--slate); line-height: 1.75; font-weight: 300; }
.faq-item.open .faq-a { max-height: 400px; }

/* ─── CTA BANNER ─── */
.cta-banner { padding: 5rem 3rem; text-align: center; background: var(--cream); }
.cta-banner .section-sub { margin: .8rem auto 2rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── DARK CTA ─── */
.dark-cta {
  padding: 6rem 3rem; text-align: center;
  background: var(--ink); position: relative; overflow: hidden;
}
.dark-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,.06), transparent 70%);
}
.dark-cta > * { position: relative; z-index: 1; }
.dark-cta .section-title { color: var(--white); }
.dark-cta .section-sub { color: rgba(255,255,255,.5); margin: .8rem auto 2.5rem; }

/* ─── COMPANY NAV ─── */
.company-nav { display: flex; gap: .5rem; flex-wrap: wrap; margin: 2rem 0; }
.company-nav a {
  padding: .4rem 1rem; border: 1px solid var(--mist); font-size: .76rem;
  color: var(--slate); text-decoration: none; transition: all var(--transition); font-weight: 500;
}
.company-nav a:hover, .company-nav a.current { background: var(--ink); color: var(--gold); border-color: var(--ink); }

/* ─── FOOTER ─── */
footer { background: var(--ink); padding: 4rem 3rem 2rem; color: rgba(255,255,255,.5); }
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-brand p { margin-top: .8rem; font-size: .82rem; line-height: 1.7; color: rgba(255,255,255,.35); max-width: 280px; font-weight: 300; }
.footer-social { display: flex; gap: .6rem; margin-top: 1.2rem; }
.footer-social a {
  width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4); text-decoration: none; font-size: .85rem;
  transition: all var(--transition);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 { font-size: .67rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; font-weight: 700; }
.footer-col a { display: block; color: rgba(255,255,255,.4); text-decoration: none; font-size: .82rem; margin-bottom: .5rem; transition: color var(--transition); font-weight: 300; }
.footer-col a:hover { color: var(--gold); padding-left: .3rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .8rem;
}
.footer-bottom p { font-size: .7rem; color: rgba(255,255,255,.22); }
.footer-bottom a { color: rgba(255,255,255,.35); text-decoration: none; font-size: .7rem; }
.footer-bottom a:hover { color: var(--gold); }

/* ─── REVEAL ANIMATIONS ─── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-item:nth-child(2n) { border-right: none; }
  .why-item:nth-child(4n) { border-right: 1px solid var(--mist); }
  .split-section { grid-template-columns: 1fr; }
  .split-panel { padding: 3.5rem 3rem; }
}
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; }
  .three-col { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-step { border-right: none; border-bottom: none; border: 1px solid var(--mist); }
}
@media (max-width: 768px) {
  nav { padding: .8rem 1.2rem; }
  nav.scrolled { padding: .7rem 1.2rem; }
  .nav-links {
    display: none; position: fixed; inset: 0;
    background: rgba(10,10,15,.98); flex-direction: column;
    align-items: center; justify-content: center; gap: 1.8rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: .95rem; }
  .hamburger { display: flex; }
  .lang-switcher { position: absolute; top: .8rem; right: 3.5rem; }
  .nav-dd .dd-menu { position: static; min-width: auto; border: 0; box-shadow: none; padding: 0 0 0 1rem; display: block; background: transparent; }
  .section { padding: 3.5rem 1.5rem; }
  .container { padding: 0 1.5rem; }
  .page-header { padding: 7.5rem 1.5rem 3.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .leader-grid { grid-template-columns: 1fr 1fr; }
  .ind-grid { grid-template-columns: 1fr 1fr; }
  .stats-strip { flex-wrap: wrap; }
  .stat-item { min-width: 150px; border-bottom: 1px solid var(--mist); }
  .trust-strip { flex-direction: column; gap: 1rem; }
  .trust-item { border-right: none; padding: .5rem 0; }
  .why-grid { grid-template-columns: 1fr; }
  .why-item { border-right: none !important; }
  .split-panel { padding: 3rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner, .dark-cta { padding: 3.5rem 1.5rem; }
  footer { padding: 3rem 1.5rem 1.5rem; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; gap: .4rem; }
}
@media (max-width: 480px) {
  .ventures-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .three-col { grid-template-columns: 1fr; }
  .leader-grid { grid-template-columns: 1fr; }
  .ind-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { min-width: 100%; }
}
