/* ─── Variables ─────────────────────────────────────────── */
:root {
  --lilac:      #C4A8E8;
  --lilac-dark: #A882D4;
  --lilac-light:#EDE4F8;
  --papaya:     #FF9A6C;
  --papaya-light:#FFE8DC;
  --bg:         #FAF8FF;
  --surface:    #F0EAFF;
  --text:       #2D2D3A;
  --text-muted: #7A7390;
  --white:      #FFFFFF;
  --radius-sm:  12px;
  --radius-md:  20px;
  --radius-lg:  32px;
  --shadow:     0 4px 24px rgba(122, 90, 190, 0.10);
  --shadow-lg:  0 12px 48px rgba(122, 90, 190, 0.16);
}

/* ─── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'DM Serif Display', serif;
  line-height: 1.2;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
p  { font-size: 1rem; color: var(--text-muted); }

/* ─── Layout helpers ─────────────────────────────────────── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 96px 0; }

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--lilac-dark);
  color: #fff;
  box-shadow: 0 4px 16px rgba(168, 130, 212, 0.35);
}
.btn-primary:hover { background: #9a6cc8; box-shadow: 0 8px 24px rgba(168, 130, 212, 0.45); }
.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 2px solid rgba(45, 45, 58, 0.18);
}
.btn-secondary:hover {
  background: var(--surface);
  border-color: var(--lilac);
  color: var(--lilac-dark);
}
.btn-papaya {
  background: var(--papaya);
  color: #fff;
  box-shadow: 0 4px 16px rgba(255, 154, 108, 0.30);
}
.btn-papaya:hover { background: #f0834f; box-shadow: 0 8px 24px rgba(255, 154, 108, 0.40); }

/* ─── Chip/badge ─────────────────────────────────────────── */
.chip {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--surface);
  color: var(--lilac-dark);
  margin-bottom: 16px;
}

/* ─── NAV ────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  background: rgba(250, 248, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(196, 168, 232, 0.2);
  transition: box-shadow 0.3s;
}
nav.scrolled {
  box-shadow: 0 2px 24px rgba(122, 90, 190, 0.10);
  border-bottom-color: rgba(196, 168, 232, 0.35);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  color: var(--text);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo .logo-text { color: var(--text); }
.nav-logo .logo-er { color: var(--lilac-dark); }
.nav-logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  padding: 8px 16px;
  border-radius: 100px;
  transition: background 0.15s, color 0.15s;
}
.nav-links a:not(.btn):hover {
  background: var(--surface);
  color: var(--lilac-dark);
}
.nav-cta { margin-left: 8px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0; bottom: 0;
  background: rgba(250, 248, 255, 0.97);
  backdrop-filter: blur(12px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  transition: opacity 0.25s;
}
.mobile-menu.open { display: flex; opacity: 1; }
.mobile-menu a {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--text);
}

/* ─── HERO ───────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 68px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 70% 40%, rgba(196, 168, 232, 0.25) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(255, 154, 108, 0.12) 0%, transparent 60%);
  pointer-events: none;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.hero-blob-1 {
  width: 500px; height: 500px;
  background: rgba(196, 168, 232, 0.22);
  top: -100px; right: -100px;
}
.hero-blob-2 {
  width: 300px; height: 300px;
  background: rgba(255, 154, 108, 0.14);
  bottom: 60px; left: -60px;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.hero-content h1 {
  margin-bottom: 24px;
  color: var(--text);
}
.hero-content h1 em {
  font-style: normal;
  color: var(--lilac-dark);
}
.hero-content p {
  font-size: 1.15rem;
  max-width: 540px;
  margin-bottom: 40px;
  color: var(--text);
  opacity: 0.72;
}
.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 72px;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(196, 168, 232, 0.25);
  border-radius: var(--radius-md);
  padding: 4px;
  width: fit-content;
  backdrop-filter: blur(8px);
}
.hero-stat {
  padding: 18px 32px;
  position: relative;
}
.hero-stat + .hero-stat::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(196, 168, 232, 0.4);
}
.hero-stat strong {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat span {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ─── MANIFESTO ──────────────────────────────────────────── */
#manifesto {
  background: #1E1B2E;
  color: var(--white);
  padding: 112px 0;
  position: relative;
  overflow: hidden;
}
#manifesto::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(196,168,232,0.12) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
#manifesto::after {
  content: '';
  position: absolute;
  bottom: -80px; left: 10%;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255,154,108,0.08) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
#manifesto .chip {
  background: rgba(196,168,232,0.15);
  color: var(--lilac);
  border: 1px solid rgba(196,168,232,0.25);
}
#manifesto h2 {
  color: var(--white);
  margin-bottom: 20px;
  max-width: 680px;
}
#manifesto .section-lead {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  max-width: 580px;
  margin-bottom: 64px;
  line-height: 1.75;
}
.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
.manifesto-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.manifesto-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(196,168,232,0.3);
  transform: translateY(-4px);
}
.manifesto-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.3rem;
  font-weight: 700;
}
.manifesto-icon.icon-time {
  background: rgba(196, 168, 232, 0.18);
  color: var(--lilac);
}
.manifesto-icon.icon-target {
  background: rgba(255, 154, 108, 0.15);
  color: #FF9A6C;
}
.manifesto-icon.icon-talk {
  background: rgba(100, 220, 180, 0.12);
  color: #64DCA8;
}
.manifesto-card h3 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: 1.1rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
}
.manifesto-card p {
  color: rgba(255,255,255,0.58);
  font-size: 0.9rem;
  line-height: 1.75;
}

/* ─── FOR COMPANIES ──────────────────────────────────────── */
#companies { background: var(--bg); }
.section-header { margin-bottom: 56px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { font-size: 1.05rem; max-width: 560px; }

.companies-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.companies-visual {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}
.companies-visual::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(196,168,232,0.4) 0%, transparent 70%);
  border-radius: 50%;
}
.audit-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border-radius: 100px;
  padding: 10px 20px;
  box-shadow: var(--shadow);
  margin-bottom: 32px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text);
}
.audit-badge .dot {
  width: 8px; height: 8px;
  background: var(--lilac-dark);
  border-radius: 50%;
}
.companies-visual h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.companies-visual p { font-size: 0.95rem; margin-bottom: 28px; }
.criteria-list { display: flex; flex-direction: column; gap: 12px; }
.criteria-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}
.criteria-item::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--lilac-dark);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  margin-top: 1px;
}

.companies-text h2 { margin-bottom: 16px; }
.companies-text > p { font-size: 1.05rem; margin-bottom: 32px; }
.highlight-box {
  background: var(--surface);
  border-left: 4px solid var(--lilac-dark);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin-bottom: 32px;
}
.highlight-box p {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text);
  font-weight: 500;
}

/* ─── FOR CANDIDATES ─────────────────────────────────────── */
#candidates {
  background: linear-gradient(160deg, var(--surface) 0%, var(--bg) 100%);
}
.candidates-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.candidates-text h2 { margin-bottom: 16px; }
.candidates-text > p { font-size: 1.05rem; margin-bottom: 36px; }

.trait-cards { display: flex; flex-direction: column; gap: 16px; }
.trait-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: var(--shadow);
  transition: transform 0.18s, box-shadow 0.18s;
}
.trait-card:hover { transform: translateX(6px); box-shadow: var(--shadow-lg); }
.trait-emoji {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--lilac-light) 0%, var(--surface) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  border: 1px solid rgba(196, 168, 232, 0.3);
}
.trait-card h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.trait-card p { font-size: 0.85rem; }

.candidates-visual {
  position: relative;
}
.candidates-quote {
  background: var(--text);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  position: relative;
}
.candidates-quote::before {
  content: '"';
  font-family: 'DM Serif Display', serif;
  font-size: 8rem;
  line-height: 0.7;
  color: rgba(196,168,232,0.2);
  position: absolute;
  top: 32px; left: 32px;
}
.candidates-quote blockquote {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--white);
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}
.candidates-quote p {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}
.red-flags {
  margin-top: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow);
}
.red-flags h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.red-flag-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.red-flag-items span {
  background: #FFF0F0;
  color: #C04040;
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* ─── OPEN POSITIONS ────────────────────────────────────── */
.open-positions {
  margin-top: 80px;
  padding-top: 64px;
  border-top: 1px solid rgba(196, 168, 232, 0.25);
}
.open-positions-header {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.open-positions-header .chip { margin-bottom: 0; }
.open-positions-header p {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.positions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.position-card {
  background: var(--white);
  border: 1px solid rgba(196, 168, 232, 0.2);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.position-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: rgba(196, 168, 232, 0.5);
}
.position-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.position-tag {
  display: inline-block;
  background: var(--surface);
  color: var(--lilac-dark);
  border-radius: 100px;
  padding: 4px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.position-location {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
}
.position-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--text);
  line-height: 1.2;
  margin: 0;
}
.position-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}
.position-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  padding: 0;
}
.position-details li {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  padding-left: 18px;
  position: relative;
}
.position-details li::before {
  content: '·';
  position: absolute;
  left: 6px;
  color: var(--lilac-dark);
  font-size: 1.1rem;
  line-height: 1;
  top: 1px;
}
.position-cta {
  margin-top: auto;
  align-self: flex-start;
  font-size: 0.85rem;
  padding: 10px 20px;
}

@media (max-width: 700px) {
  .positions-grid { grid-template-columns: 1fr; }
  .open-positions-header { flex-direction: column; gap: 8px; }
}

/* ─── PROCESS ────────────────────────────────────────────── */
#process { background: var(--bg); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(16.66% + 16px);
  right: calc(16.66% + 16px);
  height: 2px;
  background: linear-gradient(90deg, var(--lilac) 0%, var(--lilac-dark) 50%, var(--lilac) 100%);
  opacity: 0.45;
}
.process-step { text-align: center; padding: 0 16px; }
.step-number {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--lilac) 0%, var(--lilac-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: white;
  margin: 0 auto 28px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 8px var(--bg), 0 4px 16px rgba(168, 130, 212, 0.35);
}
.process-step h3 { margin-bottom: 10px; }
.process-step p { font-size: 0.9rem; }

/* ─── TEAM ───────────────────────────────────────────────── */
#team { background: var(--surface); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lilac) 0%, var(--lilac-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem;
  font-style: italic;
  color: white;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(168, 130, 212, 0.3);
}
.team-avatar.papaya {
  background: linear-gradient(135deg, #ffb899 0%, var(--papaya) 100%);
  box-shadow: 0 4px 16px rgba(255, 154, 108, 0.3);
}
.team-card h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.team-card .team-role {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--lilac-dark);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 16px;
}
.team-card p { font-size: 0.88rem; line-height: 1.6; margin-bottom: 20px; }
.linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  padding: 7px 14px;
  border-radius: 100px;
  border: 1px solid rgba(45,45,58,0.12);
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.linkedin-link:hover {
  color: #0A66C2;
  border-color: #0A66C2;
  background: rgba(10, 102, 194, 0.06);
}

/* ─── CONTACT ────────────────────────────────────────────── */
#contact { background: var(--bg); }
.contact-wrap {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.contact-wrap h2 { margin-bottom: 16px; }
.contact-wrap > p { font-size: 1.05rem; margin-bottom: 48px; }
.contact-card {
  background: var(--text);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(196,168,232,0.2) 0%, transparent 70%);
  border-radius: 50%;
}
.contact-card::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,154,108,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.contact-card > * { position: relative; z-index: 1; }
.contact-card h3 {
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 12px;
}
.contact-card p { color: rgba(255,255,255,0.6); margin-bottom: 32px; }
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 480px;
  margin: 0 auto;
}
.contact-form input,
.contact-form textarea {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.35); }
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--lilac);
  background: rgba(255,255,255,0.12);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form .btn-papaya { width: 100%; justify-content: center; font-size: 1rem; padding: 16px; }

/* ─── FOOTER ─────────────────────────────────────────────── */
footer {
  background: var(--text);
  color: rgba(255,255,255,0.45);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  color: var(--white);
}
.footer-logo span { color: var(--lilac); }
footer p { font-size: 0.82rem; }

/* ─── Scroll animations ──────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-inner { padding: 0 20px; }
  .manifesto-grid,
  .companies-layout,
  .candidates-layout,
  .team-grid { grid-template-columns: 1fr; }
  .companies-layout { direction: ltr; }
  .process-steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .process-steps::before { display: none; }
  .process-step { padding: 0; }
}

@media (max-width: 600px) {
  section { padding: 64px 0; }
  .container { padding: 0 16px; }
  .nav-inner { padding: 0 16px; }

  /* Typography */
  h1 { font-size: clamp(1.9rem, 9vw, 2.4rem); }
  h2 { font-size: clamp(1.6rem, 7vw, 2rem); }
  .hero-content p { font-size: 1rem; }

  /* Hero buttons — stack full-width */
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { justify-content: center; }

  /* Hero stats — 3 equal columns, full width */
  .hero-stats {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
  .hero-stat { padding: 14px 10px; text-align: center; }
  .hero-stat strong { font-size: 1.5rem; }
  .hero-stat span { font-size: 0.7rem; }
  .hero-stat + .hero-stat::before { display: block; top: 15%; bottom: 15%; }

  /* Process — left-align on mobile for readability */
  .process-step { text-align: left; }
  .step-number { margin-left: 0; margin-right: auto; }

  /* Position cards */
  .position-card { padding: 20px; }
  .position-meta { flex-wrap: wrap; gap: 6px; }
  .position-title { font-size: 1.25rem; }

  /* Manifesto section */
  #manifesto { padding: 80px 0; }

  /* Contact */
  .contact-card { padding: 32px 20px; }
  .contact-card h3 { font-size: 1.5rem; }

  /* Team cards — reduce padding */
  .team-card { padding: 28px 20px; }

  /* Open positions header */
  .open-positions { margin-top: 48px; padding-top: 40px; }
}
