/* ═══════════════════════════════════════════════════════════════
   HID_EN — Shared Stylesheet
   Trading name of LexLadder Limited · Found Group · 2026
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Syncopate:wght@700&family=Cormorant+Garamond:ital,wght@1,300&family=DM+Mono:wght@300;400&display=swap');

/* ─── Reset ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ─── Tokens ───────────────────────────────────────────────────── */
:root {
  --void:       #0A0A0F;
  --deep:       #111118;
  --surface:    #16161F;
  --lifted:     #1D1D28;
  --stroke:     #2E2E42;
  --violet:     #7B5CF0;
  --violet-lt:  #A78BFA;
  --gold:       #C9A96E;
  --pale:       #D8D8EE;
  --near-white: #EEEEF8;
  --muted:      #6B6B88;
  --body-max:   720px;
  --wide-max:   1200px;
}

/* ─── Base ─────────────────────────────────────────────────────── */
html { font-size: 16px; scroll-behavior: smooth; }

body {
  background-color: var(--void);
  color: var(--near-white);
  font-family: 'DM Mono', monospace;
  font-weight: 300;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── Typography ───────────────────────────────────────────────── */
.wordmark {
  font-family: 'Syncopate', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--near-white);
}
.wordmark .gap { color: var(--violet); }

.headline {
  font-family: 'Syncopate', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--near-white);
  line-height: 1.15;
}

.editorial {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  color: var(--pale);
  line-height: 1.45;
}

.label {
  font-family: 'DM Mono', monospace;
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.body-copy {
  font-family: 'DM Mono', monospace;
  font-weight: 300;
  color: var(--pale);
  line-height: 1.85;
}

.gold-text { color: var(--gold); }
.violet-text { color: var(--violet); }

/* ─── Layout ───────────────────────────────────────────────────── */
.container {
  max-width: var(--wide-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.container--narrow {
  max-width: var(--body-max);
  margin: 0 auto;
  padding: 0 2rem;
}

section { padding: 7.5rem 0; }

/* ─── Navigation ───────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, border-bottom 0.4s ease;
}

nav.scrolled {
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--stroke);
}

.nav-wordmark {
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: 'DM Mono', monospace;
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active { color: var(--near-white); }

/* Services dropdown */
.nav-services { position: relative; }

.nav-services-toggle {
  font-family: 'DM Mono', monospace;
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s ease;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.nav-services-toggle:hover { color: var(--near-white); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  transform: translateX(-50%);
  background: var(--lifted);
  border: 1px solid var(--stroke);
  padding: 1.25rem 1.5rem;
  min-width: 200px;
  display: none;
  flex-direction: column;
  gap: 0.9rem;
}

.nav-dropdown.open { display: flex; }

.nav-dropdown a {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: var(--pale);
  white-space: nowrap;
}

.nav-dropdown a:hover { color: var(--near-white); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 201;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--near-white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* ─── Hero ─────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--void);
  position: relative;
  overflow: hidden;
  padding: 9rem 2rem 6rem;
}

.hero-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.45;
}

.hero-inner {
  max-width: var(--wide-max);
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-wordmark {
  font-size: clamp(3.5rem, 10vw, 8rem);
  display: inline-block;
  margin-bottom: 2.5rem;
  position: relative;
}

.hero-strapline {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  margin-bottom: 1.5rem;
  max-width: 640px;
}

.hero-sub {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3rem;
}

.hero-rule {
  width: 40px;
  height: 1px;
  background: var(--violet);
  margin-top: 2rem;
}

.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.35;
  z-index: 2;
}

.scroll-hint span {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-hint-line {
  width: 1px;
  height: 32px;
  background: var(--muted);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(0.6); }
}

/* ─── Ghost D animation ────────────────────────────────────────── */
.wm-ghost-d {
  position: absolute;
  display: inline-block;
  font-family: 'Syncopate', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0;
  pointer-events: none;
  z-index: 10;
  white-space: nowrap;
  top: 0;
}

/* ─── Sections ─────────────────────────────────────────────────── */
.section-label {
  margin-bottom: 3rem;
  display: block;
}

.section-rule {
  width: 32px;
  height: 2px;
  background: var(--violet);
  margin-bottom: 2rem;
}

.section-rule--gold { background: var(--gold); }

/* ─── Proposition ──────────────────────────────────────────────── */
.proposition {
  background: var(--deep);
  border-top: 1px solid var(--stroke);
}

.proposition p {
  font-size: 0.95rem;
  color: var(--pale);
  line-height: 1.9;
  margin-bottom: 1.75rem;
  max-width: var(--body-max);
}

.proposition p:last-child { margin-bottom: 0; }

.pull-quote {
  border-left: 2px solid var(--violet);
  padding-left: 2rem;
  margin: 3rem 0;
  max-width: 640px;
}

.pull-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  color: var(--pale);
  line-height: 1.5;
}

/* ─── Service Cards ────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-top: 3px solid var(--violet);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.service-card:hover { background: var(--lifted); }

.service-card--retained { border-top-color: var(--violet-lt); }
.service-card--embedded { border-top-color: var(--gold); }

.service-card-name {
  font-family: 'Syncopate', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--near-white);
}

.service-card-tag {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--pale);
  line-height: 1.4;
}

.service-card-body {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.85;
  flex: 1;
}

.service-card-link {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--violet);
  transition: color 0.25s ease;
  margin-top: auto;
}

.service-card--retained .service-card-link { color: var(--violet-lt); }
.service-card--embedded .service-card-link { color: var(--gold); }

.service-card-link:hover { color: var(--near-white); }

/* ─── Who We Work With ─────────────────────────────────────────── */
.who-we-work {
  background: var(--surface);
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
}

.who-we-work p {
  font-size: 0.92rem;
  color: var(--pale);
  line-height: 1.9;
  margin-bottom: 1.5rem;
  max-width: var(--body-max);
}

.functions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2.5rem;
}

.function-item {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--stroke);
  padding-bottom: 0.4rem;
}

/* ─── How It Works ─────────────────────────────────────────────── */
.how-it-works { background: var(--void); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 4rem;
  margin-top: 3.5rem;
  max-width: 900px;
}

.step-label {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 0.75rem;
  display: block;
}

.step p {
  font-size: 0.88rem;
  color: var(--pale);
  line-height: 1.85;
}

/* ─── Case Study ───────────────────────────────────────────────── */
.case-study-section { background: var(--deep); }

.case-study-card {
  border-left: 3px solid var(--violet);
  padding: 2.5rem 2.5rem 2.5rem 3rem;
  background: var(--surface);
  max-width: 760px;
}

.case-study-industry {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 1.5rem;
  display: block;
}

.case-study-card p {
  font-size: 0.88rem;
  color: var(--pale);
  line-height: 1.9;
  margin-bottom: 1.25rem;
}

.case-study-card p:last-child { margin-bottom: 0; }

/* ─── About / Founder ──────────────────────────────────────────── */
.about-section { background: var(--surface); border-top: 1px solid var(--stroke); }

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

.about-copy p {
  font-size: 0.92rem;
  color: var(--pale);
  line-height: 1.9;
  margin-bottom: 1.5rem;
  max-width: var(--body-max);
}

.founder-card {
  background: var(--lifted);
  border: 1px solid var(--stroke);
  padding: 0;
  overflow: hidden;
}

.founder-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(20%) contrast(1.05);
}

.founder-info {
  padding: 1.5rem;
  border-top: 1px solid var(--stroke);
}

.founder-name {
  font-family: 'Syncopate', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--near-white);
  margin-bottom: 0.4rem;
}

.founder-title {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── Contact Form ─────────────────────────────────────────────── */
.contact-section { background: var(--void); }

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

.contact-intro p {
  font-size: 0.9rem;
  color: var(--pale);
  line-height: 1.9;
  margin-bottom: 1.25rem;
}

.form-group { margin-bottom: 1.5rem; }

.form-label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--stroke);
  color: var(--near-white);
  font-family: 'DM Mono', monospace;
  font-weight: 300;
  font-size: 0.85rem;
  padding: 0.85rem 1rem;
  min-height: 44px;
  outline: none;
  transition: border-color 0.25s ease;
  -webkit-appearance: none;
  border-radius: 0;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus { border-color: var(--violet); }

.form-textarea { min-height: 120px; resize: vertical; }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6B88' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-select option { background: var(--surface); }

.form-submit {
  font-family: 'DM Mono', monospace;
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--near-white);
  border: 1px solid var(--stroke);
  padding: 1rem 2.5rem;
  min-height: 44px;
  transition: border-color 0.25s ease, color 0.25s ease;
  cursor: pointer;
  background: none;
}

.form-submit:hover {
  border-color: var(--violet);
  color: var(--violet);
}

.form-submit--gold:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.form-note {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-top: 1rem;
  line-height: 1.7;
}

/* ─── Service Page Hero ────────────────────────────────────────── */
.service-hero {
  min-height: 65vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--void);
  padding: 9rem 2rem 5rem;
  border-bottom: 1px solid var(--stroke);
}

.service-hero-inner {
  max-width: var(--wide-max);
  margin: 0 auto;
  width: 100%;
}

.service-hero-label {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 1.25rem;
  display: block;
}

.service-hero-label--gold { color: var(--gold); }

.service-hero-headline {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: 1.5rem;
  max-width: 800px;
}

.service-hero-strapline {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  margin-bottom: 1.5rem;
  max-width: 560px;
}

.service-hero-sub {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── Service Page Body ────────────────────────────────────────── */
.service-body { background: var(--deep); }

.service-body p {
  font-size: 0.92rem;
  color: var(--pale);
  line-height: 1.9;
  margin-bottom: 1.5rem;
  max-width: var(--body-max);
}

.service-body p:last-child { margin-bottom: 0; }

.service-process { background: var(--void); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 4rem;
  margin-top: 3.5rem;
  max-width: 900px;
}

.process-step-label {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 0.75rem;
  display: block;
}

.process-step-label--gold { color: var(--gold); }

.process-step p {
  font-size: 0.88rem;
  color: var(--pale);
  line-height: 1.85;
}

/* ─── CTA Section ──────────────────────────────────────────────── */
.cta-section {
  background: var(--void);
  border-top: 1px solid var(--stroke);
  text-align: center;
  padding: 6rem 2rem;
}

.cta-section .headline {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.cta-section p {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.cta-btn {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--near-white);
  border: 1px solid var(--stroke);
  padding: 1rem 2.5rem;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.cta-btn:hover { border-color: var(--violet); color: var(--violet); }
.cta-btn--gold:hover { border-color: var(--gold); color: var(--gold); }

/* ─── Talent / Jobs Page ───────────────────────────────────────── */
.talent-hero { background: var(--void); }
.talent-body { background: var(--deep); border-top: 1px solid var(--stroke); }

.talent-form-section { background: var(--surface); border-top: 1px solid var(--stroke); }

.talent-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.talent-form-grid .form-group--full { grid-column: 1 / -1; }

.file-upload-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px dashed var(--stroke);
  padding: 1.25rem 1rem;
  cursor: pointer;
  transition: border-color 0.25s ease;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}

.file-upload-label:hover { border-color: var(--violet); color: var(--pale); }

.file-upload-input { display: none; }

.form-confirmation {
  display: none;
  background: var(--lifted);
  border: 1px solid var(--violet);
  border-left: 3px solid var(--violet);
  padding: 2rem 2.5rem;
  margin-top: 2rem;
}

.form-confirmation p {
  font-size: 0.88rem;
  color: var(--pale);
  line-height: 1.8;
}

.form-error {
  display: none;
  background: var(--lifted);
  border: 1px solid #8B3A3A;
  border-left: 3px solid #C0504D;
  padding: 1.25rem 2rem;
  margin-top: 1rem;
  font-size: 0.82rem;
  color: #E88080;
  line-height: 1.7;
}

/* ─── Jobs Page ────────────────────────────────────────────────── */
.jobs-iframe-container {
  background: var(--surface);
  border: 1px solid var(--stroke);
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

.jobs-iframe-container iframe {
  width: 100%;
  min-height: 600px;
  border: none;
  display: block;
}

.jobs-placeholder {
  padding: 5rem 2rem;
  text-align: center;
  border: 1px dashed var(--stroke);
}

.jobs-placeholder p {
  font-size: 0.88rem;
  color: var(--muted);
  max-width: 480px;
  margin: 1.5rem auto 2.5rem;
  line-height: 1.8;
}

/* ─── Footer ───────────────────────────────────────────────────── */
footer {
  background: var(--void);
  border-top: 1px solid var(--stroke);
  padding: 3rem 2rem;
}

.footer-inner {
  max-width: var(--wide-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
}

.footer-brand .wordmark { font-size: 1rem; }

.footer-legal {
  margin-top: 1rem;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  line-height: 1.8;
}

.footer-legal a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.footer-legal a:hover { color: var(--pale); }

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.25rem;
}

.footer-linkedin {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--stroke);
  color: var(--near-white);
  transition: border-color 0.25s ease;
}

.footer-linkedin:hover { border-color: var(--violet); }

.footer-linkedin svg {
  width: 16px;
  height: 16px;
  fill: var(--near-white);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s ease;
}

.footer-links a:hover { color: var(--pale); }

/* ─── Fade-up Animation ────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-d1 { transition-delay: 0.1s; }
.fade-up-d2 { transition-delay: 0.2s; }
.fade-up-d3 { transition-delay: 0.35s; }
.fade-up-d4 { transition-delay: 0.5s; }

/* ─── Landing Page Overrides ───────────────────────────────────── */
.landing-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--void);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.landing-hero-inner {
  max-width: 860px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.landing-problem {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--pale);
  line-height: 1.5;
  margin-top: 2rem;
  max-width: 680px;
  font-family: 'DM Mono', monospace;
  font-weight: 300;
}

.landing-section { background: var(--deep); border-top: 1px solid var(--stroke); }
.landing-section p {
  font-size: 0.92rem;
  color: var(--pale);
  line-height: 1.9;
  margin-bottom: 1.5rem;
  max-width: var(--body-max);
}

.landing-cta-section {
  background: var(--surface);
  border-top: 1px solid var(--stroke);
  padding: 6rem 2rem;
}

.landing-cta-inner { max-width: 560px; margin: 0 auto; }

.landing-cta-inner .headline {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  margin-bottom: 2rem;
  text-align: center;
}

.landing-cta-inner .form-group { margin-bottom: 1rem; }

/* ─── Responsive ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .founder-card { max-width: 320px; }
  .contact-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .steps-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .process-steps { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  section { padding: 5rem 0; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--void);
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 199;
    list-style: none;
  }
  .nav-links.open a,
  .nav-links.open .nav-services-toggle {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: var(--pale);
  }
  .nav-dropdown { position: static; transform: none; background: none; border: none; padding: 0.5rem 0 0; }
  .nav-toggle { display: flex; }
  .talent-form-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-right { align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero { padding: 7rem 1.5rem 5rem; }
  .container, .container--narrow { padding: 0 1.5rem; }
  .service-hero { padding: 7rem 1.5rem 4rem; }
}
