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

:root {
  --bg:         #0a0a0a;
  --bg2:        #0f0f0f;
  --bg3:        #111111;
  --bg4:        #161616;
  --bg5:        #1a1a1a;
  --border:     #1e1e1e;
  --border2:    #2a2a2a;
  --green:      #00ff87;
  --green2:     #00cc6a;
  --green-dim:  rgba(0,255,135,0.07);
  --green-glow: rgba(0,255,135,0.14);
  --text:       #c8c8c8;
  --text2:      #888;
  --text3:      #555;
  --white:      #efefef;
  --font-body:  'Inter', system-ui, sans-serif;
  --font-mono:  'JetBrains Mono', 'Courier New', monospace;
  --radius:     6px;
  --radius-lg:  10px;
  --nav-h:      60px;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--green); color: #000; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--green2); }

a { color: var(--green); text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .75; }
img { display: block; max-width: 100%; }

/* ============================================================
   LANG
============================================================ */
.lang-fr .en { display: none !important; }
.lang-en .fr { display: none !important; }

/* ============================================================
   ANIMATIONS
============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .4; }
}
@keyframes greenPulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--green-glow); }
  60%       { box-shadow: 0 0 0 7px transparent; }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NAV
============================================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(20px) saturate(130%);
  -webkit-backdrop-filter: blur(20px) saturate(130%);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 0 2rem;
}

.nav-logo {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .95rem;
  color: var(--white);
  letter-spacing: -.01em;
  margin-right: auto;
  white-space: nowrap;
  flex-shrink: 0;
  opacity: 1;
}
.nav-logo:hover { opacity: 1; }
.nav-logo span { color: var(--green); }

.nav-links {
  display: flex;
  gap: .1rem;
  list-style: none;
  margin-right: 1.5rem;
}
.nav-links a {
  color: var(--text2);
  font-size: .82rem;
  font-weight: 500;
  padding: .35rem .7rem;
  border-radius: var(--radius);
  transition: color .2s, background .2s;
  opacity: 1;
}
.nav-links a:hover {
  color: var(--white);
  background: var(--bg4);
  opacity: 1;
}
.nav-links a.active { color: var(--green); }

.nav-right {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}

.nav-status {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .75rem;
  color: var(--text2);
  font-weight: 500;
  white-space: nowrap;
}
.nav-status::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: greenPulse 2.4s ease infinite;
  flex-shrink: 0;
}

.lang-btn {
  background: none;
  border: 1px solid var(--border2);
  color: var(--text2);
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  padding: .28rem .6rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .2s;
  letter-spacing: .04em;
}
.lang-btn:hover, .lang-btn.active {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-dim);
}

/* ============================================================
   CONTAINER & SECTIONS
============================================================ */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0 5rem;
  position: relative;
}

.section-eyebrow {
  font-size: .7rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: .65rem;
  font-family: var(--font-mono);
}

.section-title-accent {
  display: inline-block;
  width: 28px;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
  margin-bottom: 1.1rem;
}

.section-title {
  font-family: var(--font-body);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: .85rem;
  line-height: 1.2;
  letter-spacing: -.02em;
  text-wrap: balance;
}

.section-desc {
  color: var(--text2);
  font-size: .95rem;
  max-width: 100%;
  line-height: 1.75;
  margin-bottom: 3rem;
}
.section-desc .text-link {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(0,255,135,.4);
  transition: color .2s, text-decoration-color .2s;
}
.section-desc .text-link:hover {
  color: var(--green);
  text-decoration-color: var(--green);
  opacity: 1;
}

/* ============================================================
   HERO
============================================================ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 280px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 6rem 0 6rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  font-weight: 600;
  color: var(--green);
  background: var(--green-dim);
  border: 1px solid rgba(0,255,135,.2);
  padding: .32rem .9rem;
  border-radius: 20px;
  letter-spacing: .04em;
  margin-bottom: 1.6rem;
  font-family: var(--font-mono);
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease infinite;
  flex-shrink: 0;
}

.hero-name {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: .5rem;
}
.hero-name .accent { color: var(--green); }

.hero-role {
  font-size: 1.05rem;
  color: var(--text2);
  font-weight: 500;
  margin-bottom: 1.75rem;
  letter-spacing: -.01em;
}
.hero-role strong { color: var(--white); font-weight: 700; }

.hero-tagline {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 2.25rem;
  max-width: 520px;
  border-left: 3px solid var(--green);
  padding-left: 1.1rem;
}

.hero-cta {
  display: flex;
  gap: .9rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn {
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  padding: .72rem 1.5rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  border: 1px solid transparent;
  letter-spacing: -.01em;
}
.btn-primary {
  background: var(--green);
  color: #000;
}
.btn-primary:hover {
  background: var(--green2);
  box-shadow: 0 4px 28px var(--green-glow);
  opacity: 1;
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--border2);
}
.btn-secondary:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-dim);
  opacity: 1;
}

.hero-clients {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.clients-label {
  font-size: .7rem;
  font-weight: 600;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-family: var(--font-mono);
}
.clients-list {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.client-tag {
  font-size: .75rem;
  font-weight: 500;
  color: var(--text3);
  border: 1px solid var(--border);
  padding: .25rem .65rem;
  border-radius: var(--radius);
  transition: all .2s;
  font-family: var(--font-mono);
  opacity: 1;
}
.client-tag:hover {
  border-color: var(--green);
  color: var(--green);
  opacity: 1;
}

/* Photo */
.hero-photo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  flex-shrink: 0;
}

.photo-frame {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 2px solid rgba(0,255,135,.3);
  overflow: hidden;
  position: relative;
  box-shadow:
    0 0 0 12px rgba(0,255,135,.05),
    0 24px 60px rgba(0,0,0,.75);
  flex-shrink: 0;
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg3);
}

.photo-badge {
  font-size: .72rem;
  font-weight: 600;
  background: var(--green);
  color: #000;
  padding: .35rem .85rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: .4rem;
  white-space: nowrap;
  letter-spacing: -.01em;
}
.photo-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #000;
  animation: pulse 2s ease infinite;
  flex-shrink: 0;
}

/* ============================================================
   ABOUT
============================================================ */
#about {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.about-text p {
  font-size: .95rem;
  color: var(--text2);
  line-height: 1.85;
  margin-bottom: .9rem;
}
.about-text p strong {
  color: var(--white);
  font-weight: 600;
}
.about-text p .hl { color: var(--green); font-weight: 500; }

.about-right { display: flex; flex-direction: column; gap: 0; }

.about-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-bottom: 2rem;
}
.metric-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-left: 3px solid var(--green);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
}
.metric-val {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: .3rem;
  letter-spacing: -.02em;
}
.metric-lbl {
  font-size: .78rem;
  color: var(--text2);
  line-height: 1.4;
}

.stack-eyebrow {
  font-size: .68rem;
  font-weight: 600;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .75rem;
  font-family: var(--font-mono);
}

.stack-group { margin-bottom: 1.1rem; }
.stack-group-label {
  font-size: .68rem;
  font-weight: 600;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .45rem;
  font-family: var(--font-mono);
}

.stack-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}

.stack-tag {
  font-family: var(--font-mono);
  font-size: .68rem;
  padding: .22rem .58rem;
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  color: var(--text2);
  background: var(--bg3);
  transition: all .2s;
  opacity: 1;
}
.stack-tag:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-dim);
  opacity: 1;
}
.stack-tag.primary {
  border-color: rgba(0,255,135,.3);
  color: var(--green);
  background: var(--green-dim);
}

/* ============================================================
   MISSIONS
============================================================ */
#needs {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.needs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.need-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--green);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.need-card:hover {
  border-color: rgba(0,255,135,.35);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,255,135,.06);
}

.need-icon {
  font-size: 1.3rem;
  margin-bottom: .7rem;
  opacity: .85;
}

.need-title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .5rem;
  line-height: 1.3;
  letter-spacing: -.01em;
}

.need-desc {
  font-size: .82rem;
  color: var(--text2);
  line-height: 1.65;
}
.need-desc .hl { color: var(--green); font-weight: 500; }

/* ============================================================
   EXPERIENCE
============================================================ */
#experience { background: var(--bg); }

.timeline {
  margin-top: 3rem;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 8px; bottom: 0;
  left: 13px;
  width: 1px;
  background: linear-gradient(to bottom, var(--green), var(--border2) 85%, transparent);
}

.timeline-entry {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 1.5rem;
  margin-bottom: 2.25rem;
  position: relative;
}
.timeline-entry:last-child { margin-bottom: 0; }

.timeline-dot-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: .5rem;
}

.timeline-dot {
  width: 13px; height: 13px;
  border-radius: 50%;
  border: 2px solid var(--green);
  background: var(--bg);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: background .2s, box-shadow .2s;
}
.timeline-entry:hover .timeline-dot {
  background: var(--green);
  box-shadow: 0 0 12px rgba(0,255,135,.5);
}

.timeline-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.75rem;
  transition: border-color .25s, background .25s;
}
.timeline-entry:hover .timeline-card {
  border-color: var(--border2);
  background: var(--bg3);
}

.timeline-meta {
  display: flex;
  align-items: baseline;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: .35rem;
}

.timeline-date {
  font-size: .74rem;
  color: var(--text3);
  font-weight: 500;
  font-family: var(--font-mono);
}

.timeline-sector {
  font-size: .7rem;
  color: var(--text3);
  font-weight: 500;
  background: var(--bg4);
  border: 1px solid var(--border2);
  padding: .12rem .45rem;
  border-radius: var(--radius);
  font-family: var(--font-mono);
}

.timeline-company {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.01em;
  margin-bottom: .2rem;
}
.timeline-company .sep { color: var(--text3); margin: 0 .4rem; font-weight: 400; }

.timeline-role {
  font-size: .82rem;
  color: var(--green);
  font-weight: 500;
  margin-bottom: .6rem;
  font-family: var(--font-mono);
}

.timeline-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--green-dim);
  border: 1px solid rgba(0,255,135,.2);
  border-radius: var(--radius);
  padding: .25rem .7rem;
  font-size: .76rem;
  color: var(--green);
  font-weight: 600;
  margin-bottom: .85rem;
  font-family: var(--font-mono);
}

.timeline-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .45rem;
  margin-bottom: 1rem;
}
.timeline-list li {
  font-size: .84rem;
  color: var(--text2);
  line-height: 1.6;
  display: flex;
  gap: .55rem;
}
.timeline-list li::before {
  content: '→';
  color: var(--green);
  flex-shrink: 0;
  opacity: .7;
  font-family: var(--font-mono);
}

.timeline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.timeline-tag {
  font-family: var(--font-mono);
  font-size: .67rem;
  padding: .18rem .55rem;
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  color: var(--text3);
  transition: all .2s;
  opacity: 1;
}
.timeline-tag:hover { border-color: var(--green); color: var(--green); opacity: 1; }

/* ============================================================
   APPROACH
============================================================ */
#approach { background: var(--bg); }

.approach-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  margin-top: 0.5rem;
}

.approach-steps::before {
  content: '';
  position: absolute;
  top: 2.6rem;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,255,135,0.3), rgba(0,255,135,0.3), transparent);
  z-index: 0;
}

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

.step-number {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--bg2);
  border: 1px solid rgba(0,255,135,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.step:first-child .step-number {
  background: rgba(0,255,135,0.1);
  border-color: var(--green);
  box-shadow: 0 0 24px rgba(0,255,135,0.15);
}

.step-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.step-title .step-accent { color: var(--green); }

.step-body {
  font-size: 0.845rem;
  color: var(--text2);
  line-height: 1.7;
}

.step-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  margin-top: 0.875rem;
}

.step-tag {
  padding: 0.2rem 0.6rem;
  background: var(--bg3);
  border-radius: 4px;
  font-size: 0.73rem;
  color: var(--text3);
  font-weight: 500;
}

.approach-result {
  margin-top: 3rem;
  padding: 1.5rem 2rem;
  background: rgba(0,255,135,0.04);
  border: 1px solid rgba(0,255,135,0.15);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.result-emoji { font-size: 2rem; flex-shrink: 0; }

.result-text {
  font-size: 0.925rem;
  color: var(--text2);
  line-height: 1.7;
}

.result-text strong { color: var(--white); }

/* ============================================================
   CONTENT
============================================================ */
#content {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.content-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  display: block;
  color: inherit;
}
.content-card:hover {
  border-color: rgba(0,255,135,.3);
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(0,255,135,.06);
  opacity: 1;
}

.content-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg3);
  position: relative;
}
.content-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .35s;
}
.content-card:hover .content-thumb img { transform: scale(1.04); }

.content-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg4);
  font-size: 2.2rem;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.35);
  transition: background .2s;
}
.content-card:hover .play-overlay { background: rgba(0,0,0,.18); }

.play-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s;
}
.content-card:hover .play-btn { transform: scale(1.1); }

.content-body { padding: 1.1rem 1.2rem 1.4rem; }

.content-type {
  font-size: .68rem;
  font-weight: 600;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .45rem;
  font-family: var(--font-mono);
}
.content-title {
  font-size: .92rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: .45rem;
  letter-spacing: -.01em;
}
.content-desc {
  font-size: .8rem;
  color: var(--text2);
  line-height: 1.55;
  margin-bottom: .85rem;
}
.content-link {
  font-size: .78rem;
  font-weight: 600;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.content-link::after { content: ' →'; }

/* ============================================================
   CONTACT
============================================================ */
#contact { text-align: center; }

.contact-inner {
  max-width: 620px;
  margin: 0 auto;
}

.contact-card {
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 2.5rem;
  text-align: left;
}

.contact-header {
  background: var(--bg3);
  border-bottom: 1px solid var(--border);
  padding: .85rem 1.5rem;
}
.contact-header-bar {
  display: flex;
  gap: .45rem;
}
.contact-header-bar span {
  width: 10px; height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.contact-header-bar span:nth-child(1) { background: #ff5f56; }
.contact-header-bar span:nth-child(2) { background: #ffbd2e; }
.contact-header-bar span:nth-child(3) { background: #27c93f; }

.contact-body {
  padding: 2rem 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-intro {
  font-size: .9rem;
  color: var(--text2);
  line-height: 1.75;
}
.contact-intro strong { color: var(--white); }

.contact-btns {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.contact-link-item {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  font-weight: 500;
  color: var(--text2);
  border: 1px solid var(--border2);
  padding: .4rem .9rem;
  border-radius: var(--radius);
  transition: all .2s;
  opacity: 1;
}
.contact-link-item:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-dim);
  opacity: 1;
}

/* ============================================================
   FOOTER
============================================================ */
footer {
  padding: 1.75rem 2rem;
  text-align: center;
  font-size: .78rem;
  color: var(--text3);
  border-top: 1px solid var(--border);
}
footer a { color: var(--text3); opacity: 1; }
footer a:hover { color: var(--green); opacity: 1; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .needs-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-steps { grid-template-columns: 1fr; gap: 1rem; }
  .content-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .approach-steps::before { display: none; }
  .step { align-items: flex-start; text-align: left; padding: 0; }
  .step-tags { justify-content: flex-start; }
}
@media (max-width: 700px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-photo-wrap { display: none; }
  .nav-links { display: none; }
  .nav-status { display: none; }
  .needs-grid { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .about-metrics { grid-template-columns: 1fr 1fr; }
  .section { padding: 4.5rem 0 3.5rem; }
  .contact-body { padding: 1.5rem 1.5rem 2rem; }
}
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero-badge { font-size: .68rem; }
  nav { padding: 0 1.25rem; }
}
