<style>
/* ─── INDEX.HTML — PAGE-SPECIFIC STYLES ────────────────────────────────────── */
/* These styles work WITH shared.css to recreate the original index.html layout */

/* Hero Section */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--void);
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("images/HomePage/1.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  filter: saturate(0.2) contrast(1.1);
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 80% at 30% 50%, rgba(10,10,11,0.95) 0%, rgba(10,10,11,0.4) 70%, transparent 100%),
              linear-gradient(180deg, rgba(10,10,11,0.6) 0%, transparent 30%, transparent 70%, rgba(10,10,11,0.9) 100%);
  z-index: 1;
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 70% 50%, black 0%, transparent 70%);
}
.hero-ghost {
  position: absolute;
  right: -0.05em;
  bottom: -0.1em;
  font-family: var(--font-display);
  font-size: clamp(14rem, 28vw, 30rem);
  font-weight: 700;
  line-height: 0.85;
  color: rgba(255,255,255,0.022);
  letter-spacing: -0.04em;
  pointer-events: none;
  z-index: 1;
  white-space: nowrap;
}
.hero-topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--crimson), var(--gold), var(--teal-glow), transparent);
  z-index: 10;
}
.hero-content {
  position: relative;
  z-index: 5;
  padding: 0 4rem;
  max-width: 820px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.hero-eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--crimson-glow);
}
.hero-eyebrow-text {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--crimson-glow);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6.5vw, 7rem);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 2.2rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}
.hero-title .line-accent {
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 300;
  color: var(--gold);
  display: block;
}
.hero-title .line-sub {
  color: rgba(255,255,255,0.35);
  font-size: 0.62em;
  font-weight: 300;
  letter-spacing: 0.05em;
  display: block;
  margin-top: 0.5rem;
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.85;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}
.hero-actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}
.hero-trust {
  display: flex;
  gap: 3rem;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 1s forwards;
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.trust-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.trust-label {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.trust-divider {
  width: 1px;
  height: 40px;
  background: var(--border-mid);
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 4rem;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-dim);
  writing-mode: vertical-lr;
}
.scroll-bar {
  width: 1px;
  height: 64px;
  background: linear-gradient(180deg, var(--crimson-glow), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Imperative Band */
.imperative {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 0;
  overflow: hidden;
  position: relative;
}
.imperative::before {
  content: 'ACT NOW';
  position: absolute;
  font-family: var(--font-display);
  font-size: 14rem;
  font-weight: 700;
  color: rgba(255,255,255,0.015);
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  letter-spacing: 0.1em;
  pointer-events: none;
}
.imp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--border);
}
.imp-item {
  background: var(--surface);
  padding: 2.5rem 2.8rem;
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.imp-item:last-child { border-right: none; }
.imp-item:hover { background: var(--surface2); }
.imp-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  transition: background 0.3s;
}
.imp-item:nth-child(1):hover::after { background: var(--crimson-glow); }
.imp-item:nth-child(2):hover::after { background: var(--gold); }
.imp-item:nth-child(3):hover::after { background: var(--teal-glow); }
.imp-item:nth-child(4):hover::after { background: var(--amber); }
.imp-num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.6rem;
}
.imp-item:nth-child(1) .imp-num { color: var(--crimson-glow); }
.imp-item:nth-child(2) .imp-num { color: var(--gold); }
.imp-item:nth-child(3) .imp-num { color: var(--teal-light); }
.imp-item:nth-child(4) .imp-num { color: var(--amber); }
.imp-label {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}
.imp-body {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* What is AI Section */
.what-is-ai {
  padding: 9rem 0;
  background: var(--void);
}
.wia-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: start;
}
.wia-left {
  position: sticky;
  top: 8rem;
}
.wia-img-wrap {
  position: relative;
}
.wia-main-img {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--surface2);
  position: relative;
  overflow: hidden;
}
.wia-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  filter: saturate(0.25);
}
.wia-main-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--crimson), var(--gold), transparent);
  z-index: 2;
}
.wia-float-card {
  position: absolute;
  bottom: -2.5rem;
  right: -2.5rem;
  background: var(--crimson);
  padding: 2.2rem 2.5rem;
  min-width: 200px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  z-index: 3;
}
.wia-float-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.wia-float-label {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}
.wia-secondary-img {
  position: absolute;
  top: -2rem;
  right: -2rem;
  width: 45%;
  aspect-ratio: 1/1;
  background: var(--surface);
  border: 3px solid var(--black);
  overflow: hidden;
  z-index: 2;
}
.wia-secondary-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  filter: saturate(0.2) hue-rotate(340deg);
}
.wia-right p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 1.8rem;
}
.wia-right p strong { color: var(--text); }
.wia-right p em {
  font-style: italic;
  color: var(--gold);
}
.wia-callout {
  margin-top: 3rem;
  padding: 2rem 2.4rem;
  background: var(--surface);
  border-left: 3px solid var(--gold);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}
.wia-capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2.5rem;
}
.cap-pill {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-mid);
  color: var(--text-dim);
  transition: border-color 0.25s, color 0.25s;
  cursor: default;
}
.cap-pill:hover {
  border-color: var(--gold-dim);
  color: var(--text-muted);
}

/* Why Act Now Section */
.why-now {
  position: relative;
  overflow: hidden;
}
.why-now-bg {
  position: absolute;
  inset: 0;
  background: var(--surface);
}
.why-now-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  filter: saturate(0.1) hue-rotate(330deg);
}
.why-now-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--black) 0%, rgba(10,10,11,0.4) 40%, rgba(10,10,11,0.4) 60%, var(--black) 100%);
}
.why-now-content {
  position: relative;
  z-index: 2;
  padding: 9rem 4rem;
  max-width: 1280px;
  margin: 0 auto;
}
.why-now-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  margin-bottom: 6rem;
}
.risk-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-top: 2.5rem;
}
.risk-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.4rem 1.8rem;
  background: rgba(10,10,11,0.7);
  border-left: 0px solid var(--crimson-glow);
  transition: border-left-width 0.25s, background 0.25s;
  backdrop-filter: blur(4px);
}
.risk-item:hover {
  border-left-width: 3px;
  background: rgba(20,20,22,0.9);
}
.risk-icon {
  color: var(--crimson-glow);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  flex-shrink: 0;
  padding-top: 0.25rem;
}
.risk-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.risk-text strong {
  color: var(--text);
  display: block;
  margin-bottom: 0.2rem;
}
.why-now-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}
.wn-stat {
  background: rgba(10,10,11,0.8);
  backdrop-filter: blur(8px);
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.wn-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  transition: background 0.3s;
}
.wn-stat:nth-child(1):hover::before { background: var(--crimson-glow); }
.wn-stat:nth-child(2):hover::before { background: var(--gold); }
.wn-stat:nth-child(3):hover::before { background: var(--teal-glow); }
.wn-stat:hover { background: rgba(20,20,22,0.9); }
.wn-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--crimson-glow);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.wn-stat:nth-child(2) .wn-num { color: var(--gold); }
.wn-stat:nth-child(3) .wn-num { color: var(--teal-light); }
.wn-label {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.wn-source {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 0.8rem;
}

/* Why 2Create360 Section */
.why-us {
  padding: 9rem 0;
  background: var(--black);
}
.why-us-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: end;
  margin-bottom: 6rem;
}
.why-us-head-img {
  width: 100%;
  aspect-ratio: 21/9;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.why-us-head-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  filter: saturate(0.25);
}
.why-us-head-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, var(--black) 100%);
}
.why-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
}
.pillar {
  background: var(--surface);
  padding: 3rem 2.8rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.pillar:hover { background: var(--surface2); }
.pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--gold);
  transition: width 0.4s ease;
}
.pillar:hover::before { width: 100%; }
.pillar-icon {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(201,168,76,0.08);
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: color 0.3s;
}
.pillar:hover .pillar-icon { color: rgba(201,168,76,0.15); }
.pillar-num {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--crimson-glow);
  margin-bottom: 0.8rem;
}
.pillar-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.8rem;
  line-height: 1.2;
}
.pillar-body {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.pillar-body strong { color: var(--text); }

/* Framework Section */
.framework {
  padding: 9rem 0;
  background: var(--void);
  overflow: hidden;
}
.fw-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: end;
  margin-bottom: 5rem;
}
.fw-band {
  width: 100%;
  height: 240px;
  position: relative;
  overflow: hidden;
  background: var(--surface);
  margin-bottom: 5rem;
}
.fw-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  filter: saturate(0.15);
}
.fw-band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--void) 0%, transparent 20%, transparent 80%, var(--void) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.fw-band-text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 4rem);
  font-weight: 700;
  color: rgba(255,255,255,0.06);
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.fw-phases {
  display: grid;
  grid-template-columns: 1fr 60px 1fr 60px 1fr;
  gap: 0;
  align-items: start;
}
.fw-phase {
  background: var(--surface);
  padding: 3rem 2.5rem;
  position: relative;
}
.fw-connector {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 3rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: 1.2rem;
}
.fw-phase-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.fw-phase-dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  flex-shrink: 0;
}
.fw-phase:nth-child(1) .fw-phase-dot { border-color: var(--crimson-glow); color: var(--crimson-glow); }
.fw-phase:nth-child(3) .fw-phase-dot { border-color: var(--gold); color: var(--gold); }
.fw-phase:nth-child(5) .fw-phase-dot { border-color: var(--teal-glow); color: var(--teal-glow); }
.fw-phase-num {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.fw-phase-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}
.fw-phase-body {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.fw-phase-items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.fw-phase-item {
  display: flex;
  gap: 0.8rem;
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.5;
}
.fw-phase-item::before { content: '→'; flex-shrink: 0; }
.fw-phase:nth-child(1) .fw-phase-item::before { color: var(--crimson-glow); }
.fw-phase:nth-child(3) .fw-phase-item::before { color: var(--gold); }
.fw-phase:nth-child(5) .fw-phase-item::before { color: var(--teal-glow); }
.fw-phase-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--void);
  position: relative;
  overflow: hidden;
  margin-top: 2rem;
}
.fw-phase-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: saturate(0.2);
}

/* Human Section */
.human {
  padding: 9rem 0;
  background: var(--black);
  overflow: hidden;
  position: relative;
}
.human::before {
  content: 'PEOPLE';
  position: absolute;
  font-family: var(--font-display);
  font-size: 20rem;
  font-weight: 700;
  color: rgba(255,255,255,0.012);
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  letter-spacing: 0.06em;
  pointer-events: none;
}
.human-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}
.human-visual {
  position: relative;
}
.human-main-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--surface2);
  position: relative;
  overflow: hidden;
}
.human-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  filter: saturate(0.3);
}
.human-offset {
  position: absolute;
  bottom: -3rem;
  right: -3rem;
  width: 48%;
  aspect-ratio: 3/4;
  background: var(--surface);
  border: 4px solid var(--black);
  overflow: hidden;
}
.human-offset img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  filter: saturate(0.3);
}
.human-frame {
  position: absolute;
  bottom: -4.5rem;
  right: -4.5rem;
  width: 55%;
  aspect-ratio: 3/4;
  border: 1px solid var(--gold-dim);
  pointer-events: none;
}
.human-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 1.8rem;
}
.human-content p strong { color: var(--text); }
.human-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}
.h-pillar {
  padding: 1.5rem 1.6rem;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color 0.25s;
}
.h-pillar:hover { border-color: var(--gold-dim); }
.h-pillar-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.3rem;
}
.h-pillar-body {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.6;
}

/* Expertise Section */
.expertise {
  padding: 9rem 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.exp-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: end;
  margin-bottom: 5rem;
}
.exp-head-img {
  width: 100%;
  aspect-ratio: 16/6;
  background: var(--surface2);
  position: relative;
  overflow: hidden;
  align-self: stretch;
}
.exp-head-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: saturate(0.2);
}
.exp-head-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 50%, var(--surface) 100%);
}
.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}
.exp-item {
  background: var(--black);
  padding: 2.5rem 2.8rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  cursor: default;
}
.exp-item:hover { background: var(--surface2); }
.exp-item-line {
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--gold);
  transition: width 0.4s ease;
}
.exp-item:hover .exp-item-line { width: 100%; }
.exp-item-icon {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  color: rgba(201,168,76,0.15);
  margin-bottom: 1rem;
  line-height: 1;
}
.exp-item-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}
.exp-item-body {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Approach Section */
.approach {
  padding: 9rem 0;
  background: var(--void);
}
.approach-grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 7rem;
  align-items: center;
}
.approach-right {
  position: relative;
}
.approach-main-img {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--surface2);
  position: relative;
  overflow: hidden;
}
.approach-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  filter: saturate(0.25);
}
.approach-sliver {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  width: 12px;
  height: 60%;
  background: linear-gradient(180deg, var(--gold), transparent);
}
.approach-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3rem;
}
.a-feat {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.8rem 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, background 0.25s;
}
.a-feat:hover {
  border-color: var(--gold-dim);
  background: var(--surface2);
}
.a-feat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(201,168,76,0.12);
  line-height: 1;
  flex-shrink: 0;
  min-width: 2.5rem;
}
.a-feat-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.4rem;
}
.a-feat-body {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Global Section */
.global {
  padding: 7rem 0;
  background: var(--black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.global::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(139,26,26,0.06) 0%, transparent 70%);
}
.global-inner {
  position: relative;
  z-index: 2;
}
.global-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}
.global-num {
  font-family: var(--font-display);
  font-size: clamp(5rem, 14vw, 14rem);
  font-weight: 700;
  line-height: 0.9;
  color: #fff;
  letter-spacing: -0.03em;
}
.global-num span { color: var(--crimson-glow); }
.global-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: var(--text-muted);
  margin-top: 1rem;
  margin-bottom: 3rem;
}
.global-industries {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
  border: 1px solid var(--border);
  max-width: 900px;
  margin: 0 auto;
}
.g-ind {
  padding: 1rem 2rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  border-right: 1px solid var(--border);
  transition: color 0.2s, background 0.2s;
  cursor: default;
}
.g-ind:last-child { border-right: none; }
.g-ind:hover {
  color: var(--text-muted);
  background: var(--surface);
}

/* ─── FINAL CTA IMAGE SUBDUED ─────────────────────────────────────────────── */
/* Final CTA Section */
/* Final CTA text containment */
.fcta-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.fcta-sub {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.fcta-actions {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2rem 0 1.5rem;
}
.fcta-contact {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}
.fcta-contact a {
  color: var(--gold);
  text-decoration: none;
}
.fcta-contact a:hover {
  color: var(--crimson-glow);
}
/* Ensure .btn-outline has border */
.fcta-actions .btn-outline {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);

  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  padding: 1rem 2.4rem;
  cursor: pointer;
  
}

.fcta-actions .btn-outline:hover {
  border-color: var(--text-muted);
  color: var(--text);
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 12rem 0;
  text-align: center;
}

.fcta-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.fcta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: saturate(0.2) contrast(1.15);
}

/* Dark gradient overlay for depth */
.fcta-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, 
    rgba(10,10,11,0.4) 0%, 
    rgba(10,10,11,0.6) 50%, 
    rgba(10,10,11,0.85) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Ensure CTA content is above the overlay */
.final-cta .fcta-content {
  position: relative;
  z-index: 2;
}  

/* Ensure hero background doesn't leak into next section */
.hero {
  isolation: isolate;
}
.hero-bg {
  z-index: 0;
}
.hero-content {
  z-index: 2;
}
 