/* ============================================================
   NoviStaf — Editorial corporate site
   Palette and typography inspired by the Orange v3 pitch deck
   ============================================================ */

:root {
  /* Editorial palette — from deck v3 */
  --paper: #f5f1e8;          /* cream paper */
  --paper-2: #ede7d8;        /* darker cream */
  --paper-3: #e0d8c4;        /* darkest cream / dividers */
  --ink: #1a1a1a;            /* near-black */
  --ink-2: #3a3a3a;          /* body */
  --muted: #6b6660;          /* secondary text */
  --muted-2: #9a948c;        /* tertiary text */
  --brick: #c8362e;          /* signature red */
  --brick-soft: #f0d8d5;     /* red wash */
  --gold: #b8924a;           /* gold accent */
  --gold-soft: #f0e6d0;      /* gold wash */
  --human: #4a6fa5;          /* Human Layer blue */
  --human-soft: #dde5f0;     /* human wash */
  --line: rgba(26,26,26,0.10);
  --line-2: rgba(26,26,26,0.18);
  --shadow: 0 24px 60px -28px rgba(26,26,26,0.18);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.005em;
}
.serif { font-family: 'Fraunces', Georgia, serif; }
.mono  { font-family: 'JetBrains Mono', monospace; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { display: block; max-width: 100%; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 32px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245,241,232,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 32px;
  max-width: 1180px; margin: 0 auto;
}
.logo {
  display: flex; align-items: center; gap: 12px;
  font-weight: 600;
}
.logo-mark {
  width: 34px; height: 34px;
  background: var(--ink); border-radius: 8px;
  position: relative; overflow: hidden;
  flex-shrink: 0;
}
.logo-mark::before {
  content: ''; position: absolute;
  width: 0; height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 12px solid var(--brick);
  top: 9px; left: 9px;
}
.logo-mark::after {
  content: ''; position: absolute;
  width: 5px; height: 5px;
  background: var(--paper);
  border-radius: 50%;
  bottom: 6px; right: 6px;
}
.logo-stack { display: flex; flex-direction: column; line-height: 1; }
.logo-text {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.logo-text .v {
  color: var(--brick);
  font-style: italic;
  font-family: 'Fraunces', serif;
  font-weight: 500;
}
.logo-byline {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 3px;
}
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a {
  padding: 9px 14px;
  font-size: 14px;
  color: var(--ink-2);
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.nav-links a:hover { background: var(--paper-2); color: var(--ink); }
.nav-links a.active { color: var(--brick); font-weight: 500; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px; border-radius: 8px;
  font-size: 14px; font-weight: 500;
  transition: all 0.15s;
  font-family: inherit;
  white-space: nowrap;
}
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--brick); transform: translateY(-1px); }
.btn-ghost { color: var(--ink); }
.btn-ghost:hover { background: var(--paper-2); }
.btn-light { background: var(--paper); color: var(--ink); border: 1px solid var(--line-2); }
.btn-light:hover { border-color: var(--ink); }
.btn-lg { padding: 14px 26px; font-size: 15px; }
.btn-arrow::after { content: '→'; transition: transform 0.2s; }
.btn-arrow:hover::after { transform: translateX(3px); }

/* ============================================================
   COMMON SECTION ELEMENTS
   ============================================================ */
section { padding: 110px 0; position: relative; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--brick);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 600;
}
.section-tag::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--brick);
  display: inline-block;
}
.section-title {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.section-title em { font-style: italic; color: var(--brick); }
.section-sub {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 680px;
}
.section-header { margin-bottom: 64px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin-left: auto; margin-right: auto; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 90px 0 110px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute;
  top: -100px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,54,46,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 11px;
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.05em;
  margin-bottom: 32px;
  text-transform: uppercase;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--brick);
  border-radius: 50%;
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
.hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(44px, 5.6vw, 72px);
  line-height: 1.03;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}
.hero h1 em { font-style: italic; color: var(--brick); }
.hero-sub {
  font-size: 19px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 560px;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }

.hero-trust {
  margin-top: 64px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
  display: flex; gap: 56px;
}
.hero-trust-item .num {
  font-family: 'Fraunces', serif;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-trust-item .num em { font-style: italic; color: var(--brick); }
.hero-trust-item .label {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero editorial card on the right */
.hero-card {
  background: var(--paper);
  border: 1px solid var(--line-2);
  border-radius: 4px;
  padding: 36px 36px 32px;
  position: relative;
  box-shadow: var(--shadow);
}
.hero-card::before {
  content: ''; position: absolute;
  inset: 8px;
  border: 1px solid var(--paper-3);
  border-radius: 2px;
  pointer-events: none;
}
.hero-card-stamp {
  position: absolute;
  top: 18px; right: 18px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brick);
  border: 1px solid var(--brick);
  padding: 4px 9px;
  border-radius: 2px;
  font-weight: 600;
  transform: rotate(2deg);
  background: var(--paper);
}
.hero-card-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
  font-weight: 600;
}
.hero-card-title {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 26px;
  line-height: 1.25;
  margin-bottom: 24px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.hero-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-card-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 16px;
  background: var(--paper-2);
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.5;
}
.hero-card-list li .letter {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 26px;
  line-height: 1;
  font-weight: 500;
  color: var(--human);
  width: 26px;
  flex-shrink: 0;
}
.hero-card-list li strong { display: block; color: var(--ink); font-weight: 600; margin-bottom: 2px; }
.hero-card-list li span { color: var(--muted); font-size: 13px; }

/* ============================================================
   STORY / NARRATIVE SECTIONS
   ============================================================ */
.story {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.story-side .section-title { font-size: clamp(30px, 3.4vw, 42px); }
.story-content { font-size: 17px; line-height: 1.7; color: var(--ink-2); }
.story-content p { margin-bottom: 22px; }
.story-content p:last-child { margin-bottom: 0; }
.story-content p.lede {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  color: var(--ink);
  padding-left: 22px;
  border-left: 3px solid var(--brick);
  margin-bottom: 30px;
  letter-spacing: -0.01em;
}
.story-content strong { color: var(--ink); font-weight: 600; }
.story-content em { font-style: italic; color: var(--brick); }

/* ============================================================
   PILLARS GRID (THRIVE / how we work)
   ============================================================ */
.pillars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}
.pillar {
  background: var(--paper);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  transition: background 0.2s;
}
.pillar:hover { background: var(--paper-2); }
.pillar-letter {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--human);
  margin-bottom: 18px;
}
.pillar-name {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 10px;
}
.pillar-title {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 12px;
  color: var(--ink);
}
.pillar-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
}

/* ============================================================
   APPROACH STEPS
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 32px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.step::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid var(--paper-3);
  border-radius: 2px;
  pointer-events: none;
}
.step > * { position: relative; z-index: 1; }
.step-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 64px;
  line-height: 1;
  color: var(--brick);
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}
.step-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 600;
}
.step h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.step p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.6;
  flex: 1;
}
.step.thrive-step {
  background: var(--human-soft);
  border-color: var(--human);
}
.step.thrive-step::before { border-color: rgba(74,111,165,0.3); }
.step.thrive-step .step-num { color: var(--human); }

/* ============================================================
   PROMISE BLOCKS
   ============================================================ */
.promise {
  background: var(--ink);
  color: var(--paper);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.promise::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brick), transparent);
}
.promise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.promise h2 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.promise h2 em { font-style: italic; color: var(--brick); }
.promise p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(245,241,232,0.78);
  margin-bottom: 18px;
}
.promise-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.promise-list li {
  padding: 20px 24px;
  background: rgba(245,241,232,0.04);
  border: 1px solid rgba(245,241,232,0.10);
  border-radius: 4px;
  position: relative;
}
.promise-list li strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-style: italic;
  font-size: 19px;
  color: var(--paper);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.promise-list li span {
  font-size: 14px;
  color: rgba(245,241,232,0.65);
  line-height: 1.55;
}

/* ============================================================
   USE CASES (sector / role narratives)
   ============================================================ */
.cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.case {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.case:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.case-badge {
  align-self: flex-start;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.case-badge.growth { background: var(--gold-soft); color: var(--gold); }
.case-badge.uplift { background: var(--brick-soft); color: var(--brick); }
.case-badge.natural { background: var(--human-soft); color: var(--human); }
.case h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.case p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 20px;
}
.case-foot {
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--human);
  line-height: 1.5;
}

/* ============================================================
   QUOTE / TESTIMONIAL
   ============================================================ */
.quote-section {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.quote-card {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.quote-mark {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 96px;
  line-height: 0.4;
  color: var(--brick);
  margin-bottom: 24px;
}
.quote-text {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.35;
  letter-spacing: -0.015em;
  margin-bottom: 32px;
  color: var(--ink);
}
.quote-author {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.quote-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brick), var(--gold));
}
.quote-name {
  font-weight: 600;
  font-size: 15px;
  text-align: left;
}
.quote-role {
  font-size: 12px;
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-top: 1px solid var(--line);
  padding: 26px 0;
  cursor: pointer;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 21px;
  letter-spacing: -0.01em;
  line-height: 1.35;
}
.faq-q::after {
  content: '+';
  font-family: 'Inter Tight', sans-serif;
  font-weight: 300;
  font-size: 28px;
  color: var(--brick);
  transition: transform 0.2s;
  margin-left: 16px;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  font-size: 16px;
  color: var(--muted);
  margin-top: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s, margin 0.3s;
  line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 320px; margin-top: 16px; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  bottom: -300px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse, rgba(200,54,46,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.final-cta h2 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(40px, 5vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 26px;
}
.final-cta h2 em { font-style: italic; color: var(--brick); }
.final-cta p {
  font-size: 19px;
  color: rgba(245,241,232,0.7);
  margin-bottom: 40px;
}
.final-cta .btn-primary { background: var(--brick); color: var(--paper); }
.final-cta .btn-primary:hover { background: var(--paper); color: var(--ink); }
.final-cta .btn-light {
  background: transparent;
  color: var(--paper);
  border-color: rgba(245,241,232,0.22);
}
.final-cta .btn-light:hover { border-color: var(--paper); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--paper-2);
  padding: 70px 0 36px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}
.footer-brand { max-width: 320px; }
.footer-brand p {
  margin-top: 18px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}
.footer-col h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 11px; }
.footer-col a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--brick); }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px;
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.02em;
}
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--brick); }

/* ============================================================
   ABOUT / CONTACT specific
   ============================================================ */
.page-hero {
  padding: 90px 0 70px;
}
.page-hero .section-title { max-width: 800px; }
.page-hero .section-sub { font-size: 20px; max-width: 700px; }

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.value {
  padding: 32px 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  position: relative;
}
.value::before {
  content: '';
  position: absolute;
  top: 0; left: 28px; right: 28px;
  height: 2px;
  background: var(--brick);
}
.value-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--brick);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  font-weight: 600;
}
.value h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.value p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.65;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.contact-info p { font-size: 16px; color: var(--ink-2); line-height: 1.65; margin-bottom: 24px; }
.contact-channels { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.contact-channel {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: border-color 0.15s, transform 0.15s;
}
.contact-channel:hover { border-color: var(--brick); transform: translateY(-2px); }
.contact-channel-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 3px;
  font-weight: 600;
}
.contact-channel-value {
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
}

.contact-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 36px;
  position: relative;
}
.contact-form::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid var(--paper-3);
  border-radius: 2px;
  pointer-events: none;
}
.contact-form > * { position: relative; z-index: 1; }
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  font-weight: 600;
}
.form-row input, .form-row textarea, .form-row select {
  width: 100%;
  padding: 12px 14px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  transition: border-color 0.15s;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: none;
  border-color: var(--brick);
  background: var(--paper);
}
.form-row textarea { resize: vertical; min-height: 120px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .hero-grid, .story-grid, .promise-grid, .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .pillars { grid-template-columns: 1fr 1fr; }
  .cases, .values { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hero-trust { flex-wrap: wrap; gap: 28px; }
  .nav-links { display: none; }
  section { padding: 76px 0; }
  .promise { padding: 76px 0; }
  .final-cta { padding: 90px 0; }
}
@media (max-width: 600px) {
  .container, .container-narrow { padding: 0 22px; }
  .steps, .pillars { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .nav-cta .btn-ghost { display: none; }
}
