/* Nazoku site styles — shared across all pages */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark:   #161616;
  --dark2:  #1F1F1F;
  --cream:  #E8E2D4;
  --cream2: #F2EDE5;
  --page:   #F7F6F3;
  --slate:  #3D3D45;
  --mid:    #8B8B96;
  --rule:   #DDDBD7;
  --surface: #ffffff;
  --surface-soft: #F7F6F3;
  --text:   #161616;
  --text-mid: #3D3D45;
  --text-soft: #8B8B96;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, Helvetica, sans-serif;
  background: var(--page);
  color: var(--slate);
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 60px;
  background: rgba(22,22,22,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-brand {
  font-size: 15px; font-weight: 800; letter-spacing: 0.16em;
  color: #fff; text-decoration: none; text-transform: uppercase;
}
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.5);
  text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--cream); }
.nav-cta {
  font-size: 12px; font-weight: 700; letter-spacing: 0.05em;
  color: var(--dark); background: var(--cream);
  padding: 9px 20px; text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--cream2); }

/* ── HERO ── */
.hero {
  background: var(--dark);
  padding: 160px 48px 120px;
  position: relative; overflow: hidden;
  min-height: 92vh;
  display: flex; align-items: center;
}
.hero.compact { min-height: auto; padding: 140px 48px 90px; }

.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero::before {
  content: '';
  position: absolute; top: -200px; left: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(232,226,212,0.07) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--cream);
  opacity: 0.7; margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: '';
  display: block; width: 24px; height: 1px;
  background: var(--cream); opacity: 0.5;
}

.hero h1 {
  font-size: clamp(48px, 7.5vw, 88px);
  font-weight: 800; line-height: 1.0;
  color: #fff; letter-spacing: -0.03em;
  margin-bottom: 28px;
  max-width: 780px;
}
.hero.compact h1 { font-size: clamp(40px, 6vw, 72px); }
.hero h1 em { font-style: italic; color: var(--cream); }

.hero-sub {
  font-size: 17px; line-height: 1.7; font-weight: 400;
  color: rgba(255,255,255,0.45);
  max-width: 540px; margin-bottom: 44px;
}

.hero-actions {
  display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
  margin-bottom: 80px;
}
.hero.compact .hero-actions { margin-bottom: 0; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cream); color: var(--dark);
  font-size: 14px; font-weight: 700; letter-spacing: 0.03em;
  padding: 15px 32px; text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--cream2); transform: translateY(-1px); }
/* Inverse button for light-bg sections — flips in dark mode so it stays visible */
.btn-inverse {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--dark); color: var(--cream);
  font-size: 14px; font-weight: 700; letter-spacing: 0.03em;
  padding: 15px 32px; text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  border: none; cursor: pointer;
}
.btn-inverse:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.6);
  font-size: 14px; font-weight: 500;
  padding: 15px 28px; text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--cream); color: var(--cream); }

.hero-stats {
  display: flex; gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 40px;
}
.hero-stat {
  flex: 1;
  padding-right: 40px;
  border-right: 1px solid rgba(255,255,255,0.08);
  margin-right: 40px;
}
.hero-stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.hero-stat-num {
  font-size: 36px; font-weight: 800; color: var(--cream);
  letter-spacing: -0.02em; line-height: 1;
  margin-bottom: 6px;
}
.hero-stat-label {
  font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em; text-transform: uppercase;
}

/* ── TICKER ── */
.ticker {
  background: var(--cream);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-inner {
  display: inline-flex; gap: 48px;
  animation: scroll 20s linear infinite;
}
.ticker-item {
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--dark);
  display: flex; align-items: center; gap: 20px;
  flex-shrink: 0;
}
.ticker-item::after { content: '◆'; font-size: 6px; }
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── SECTION BASE ── */
section { padding: 100px 48px; }
.inner { max-width: 1100px; margin: 0 auto; }
.eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--mid);
  margin-bottom: 16px;
}
.section-h {
  font-size: clamp(30px, 4vw, 48px); font-weight: 800;
  color: var(--text); line-height: 1.1; letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-h em { font-style: italic; color: var(--cream-text, #8B7355); }
.section-p {
  font-size: 16px; line-height: 1.75; color: var(--mid);
  max-width: 540px; margin-bottom: 48px;
}

/* ── PROBLEM / WHAT I FIX ── */
.fix-section { background: var(--page); }
.fix-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px; align-items: start;
}
.fix-left { position: sticky; top: 100px; }
.fix-left .section-h { font-size: clamp(28px, 3.5vw, 40px); }
.fix-grid { display: flex; flex-direction: column; gap: 0; }
.fix-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
  display: grid; grid-template-columns: 48px 1fr; gap: 20px;
  align-items: start;
}
.fix-item:first-child { border-top: 1px solid var(--rule); }
.fix-num {
  font-size: 12px; font-weight: 700; color: var(--mid);
  padding-top: 3px; letter-spacing: 0.05em;
}
.fix-title {
  font-size: 16px; font-weight: 700; color: var(--text);
  margin-bottom: 6px; line-height: 1.3;
}
.fix-desc { font-size: 14px; line-height: 1.7; color: var(--mid); }

/* ── PROCESS ── */
.process-section { background: var(--dark); }
.process-section .eyebrow { color: rgba(255,255,255,0.3); }
.process-section .section-h { color: #fff; }
.process-section .section-p { color: rgba(255,255,255,0.35); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.07);
}
.process-card {
  background: var(--dark);
  padding: 36px 32px;
  transition: background 0.2s;
}
.process-card:hover { background: var(--dark2); }
.process-n {
  font-size: 40px; font-weight: 800; color: var(--cream);
  opacity: 0.25; line-height: 1; margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.process-title {
  font-size: 15px; font-weight: 700; color: #fff;
  margin-bottom: 10px; line-height: 1.3;
}
.process-desc {
  font-size: 13px; line-height: 1.7;
  color: rgba(255,255,255,0.6);
}

/* ── WHO IT'S FOR ── */
.for-section { background: var(--page); }
.for-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--rule);
  border: 1px solid var(--rule);
  margin-top: 48px;
}
.for-card { background: var(--page); padding: 36px 32px; }
.for-card-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--mid);
  margin-bottom: 12px;
}
.for-card-title {
  font-size: 20px; font-weight: 800; color: var(--text);
  line-height: 1.2; margin-bottom: 12px; letter-spacing: -0.01em;
}
.for-card-body { font-size: 14px; line-height: 1.7; color: var(--text-mid); }
.for-card-body strong { color: var(--text); font-weight: 600; }

/* ── SCOPE ── */
.scope-section { background: #111111; }
.scope-section .eyebrow { color: rgba(255,255,255,0.3); }
.scope-section .section-h { color: #fff; }
.scope-section .section-p { color: rgba(255,255,255,0.6); }

.scope-list {
  display: flex; flex-direction: column; gap: 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.scope-item {
  display: flex; align-items: baseline; gap: 32px;
  padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.scope-item-n {
  font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.2);
  letter-spacing: 0.08em; flex-shrink: 0; width: 32px;
}
.scope-item-title {
  font-size: 20px; font-weight: 700; color: #fff;
  flex: 0 0 240px; line-height: 1.2;
}
.scope-item-desc {
  font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.6);
  flex: 1;
}

/* ── BIG CTA ── */
.cta-section {
  background: var(--cream);
  padding: 120px 48px;
  text-align: center;
}
.cta-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(22,22,22,0.4);
  margin-bottom: 20px;
}
.cta-h {
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 800; color: var(--dark);
  line-height: 1.0; letter-spacing: -0.03em;
  margin-bottom: 20px; max-width: 760px; margin-left: auto; margin-right: auto;
}
.cta-sub {
  font-size: 16px; line-height: 1.7; color: rgba(22,22,22,0.55);
  max-width: 480px; margin: 0 auto 40px;
}
.btn-dark {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--dark); color: var(--cream);
  font-size: 14px; font-weight: 700; letter-spacing: 0.03em;
  padding: 17px 36px; text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  border: none; cursor: pointer;
}
.btn-dark:hover { opacity: 0.85; transform: translateY(-1px); }
.cta-scarcity {
  margin-top: 28px;
  font-size: 13px; color: rgba(22,22,22,0.45);
  letter-spacing: 0.01em;
}
.cta-scarcity strong { color: rgba(22,22,22,0.7); }
.cta-tripwire {
  margin-top: 48px;
  padding: 28px 36px;
  border: 1.5px solid rgba(22,22,22,0.12);
  display: inline-block;
  max-width: 520px;
  text-align: left;
  font-size: 14px; line-height: 1.7;
  color: rgba(22,22,22,0.6);
}
.cta-tripwire strong { color: var(--dark); }
.cta-tripwire-label {
  display: block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(22,22,22,0.35);
  margin-bottom: 8px;
}
.cta-tripwire a {
  display: block; margin-top: 16px;
  font-size: 13px; font-weight: 700; color: var(--dark);
  text-decoration: none; letter-spacing: 0.02em;
}
.cta-tripwire a:hover { opacity: 0.6; }

/* ── PROSE BLOCK (used on About/Services) ── */
.prose-section { background: var(--page); padding: 100px 48px; }
.prose-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 280px 1fr;
  gap: 80px; align-items: start;
}
.prose-aside {
  position: sticky; top: 100px;
}
.prose-aside .eyebrow { margin-bottom: 16px; }
.prose-aside h2 {
  font-size: clamp(28px, 3.5vw, 40px); font-weight: 800;
  color: var(--text); line-height: 1.1; letter-spacing: -0.02em;
}
.prose {
  font-size: 17px; line-height: 1.8; color: var(--slate);
  max-width: 660px;
}
.prose p { margin-bottom: 22px; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--text); font-weight: 600; }
.prose h3 {
  font-size: 22px; font-weight: 800; color: var(--text);
  letter-spacing: -0.01em; margin-top: 48px; margin-bottom: 14px;
  line-height: 1.25;
}
.prose h3:first-child { margin-top: 0; }
.prose ul {
  list-style: none; padding: 0;
  margin: 0 0 24px 0;
}
.prose li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  line-height: 1.65;
}
.prose li::before {
  content: '◆';
  position: absolute; left: 0; top: 1px;
  color: var(--cream-text, #8B7355);
  font-size: 10px;
}

/* ── CONTACT FORM ── */
.contact-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.contact-info .eyebrow { margin-bottom: 16px; }
.contact-info h2 {
  font-size: clamp(32px, 4vw, 48px); font-weight: 800;
  color: var(--text); line-height: 1.1; letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.contact-info p {
  font-size: 16px; line-height: 1.75; color: var(--mid);
  margin-bottom: 28px; max-width: 460px;
}
.contact-meta {
  margin-top: 40px;
  border-top: 1px solid var(--rule);
  padding-top: 28px;
}
.contact-meta-row {
  display: flex; flex-direction: column; gap: 4px;
  margin-bottom: 18px;
}
.contact-meta-row:last-child { margin-bottom: 0; }
.contact-meta-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--mid);
}
.contact-meta-value {
  font-size: 15px; color: var(--text); font-weight: 500;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--rule);
  padding: 40px;
}
.form-row {
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 22px;
}
.form-row label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--text);
}
.form-row input,
.form-row select,
.form-row textarea {
  font-family: inherit; font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--rule);
  background: var(--surface-soft);
  color: var(--text);
  transition: border-color 0.2s, background 0.2s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--cream);
  background: var(--surface);
}
.form-row textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%;
  background: var(--dark); color: var(--cream);
  font-family: inherit; font-size: 14px; font-weight: 700;
  letter-spacing: 0.03em;
  padding: 16px;
  border: none; cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
}
.form-submit:hover { opacity: 0.88; transform: translateY(-1px); }
.form-submit:disabled { opacity: 0.5; cursor: wait; transform: none; }
.form-note {
  font-size: 12px; color: var(--mid); line-height: 1.6;
  margin-top: 16px;
}
.form-status {
  font-size: 14px; padding: 12px 14px;
  margin-top: 18px; line-height: 1.5;
  display: none;
}
.form-status.show { display: block; }
.form-status.success { background: #E5EFE5; color: #1F4023; border: 1px solid #C8DBC9; }
.form-status.error { background: #F5E6E6; color: #6A1F1F; border: 1px solid #DBC8C8; }

/* ── 404 ── */
.notfound {
  min-height: 80vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 48px 80px;
  background: var(--page);
}
.notfound-inner { max-width: 520px; }
.notfound-num {
  font-size: 96px; font-weight: 800; color: var(--text);
  letter-spacing: -0.04em; line-height: 1;
  margin-bottom: 12px;
}
.notfound h1 {
  font-size: 28px; font-weight: 800; color: var(--text);
  letter-spacing: -0.02em; margin-bottom: 16px;
}
.notfound p {
  font-size: 16px; line-height: 1.75; color: var(--mid);
  margin-bottom: 36px;
}
.notfound .btn-primary {
  background: var(--dark); color: var(--cream);
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  padding: 64px 48px 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 64px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-brand {
  font-size: 18px; font-weight: 800; letter-spacing: 0.14em;
  color: #fff; text-transform: uppercase;
}
.footer-tag {
  font-size: 13px; line-height: 1.7;
  color: rgba(255,255,255,0.4); max-width: 280px;
  margin-top: 4px;
}
.footer-col-h {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 14px; color: rgba(255,255,255,0.65);
  text-decoration: none; transition: color 0.2s;
}
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  padding-top: 28px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: rgba(255,255,255,0.3);
}

/* ── FAQ ── */
.faq-section {
  background: var(--dark);
  padding: 100px 48px;
}
.faq-wrap {
  max-width: 720px;
  margin: 0 auto;
}
.faq-head {
  margin-bottom: 56px;
}
.faq-head .eyebrow {
  letter-spacing: 0.28em;
  color: #8A8682;
}
.faq-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: #E8E2D4;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-top: 12px;
}
.faq-list {
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.faq-item:first-child {
  border-top: 1px solid rgba(255,255,255,0.12);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 0;
  cursor: pointer;
  gap: 24px;
  user-select: none;
}
.faq-q-text {
  font-size: 16px;
  font-weight: 600;
  color: #E8E2D4;
  line-height: 1.45;
  font-family: 'Inter', -apple-system, Helvetica, sans-serif;
}
.faq-plus {
  font-size: 22px;
  font-weight: 300;
  color: #8A8682;
  flex-shrink: 0;
  line-height: 1;
  width: 22px;
  text-align: center;
}
.faq-a {
  font-size: 15px;
  line-height: 1.8;
  color: #8A8682;
  padding: 4px 0 28px;
}

/* ── RESULTS ── */
.results-section {
  background: var(--dark2);
  padding: 100px 48px;
}
.results-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.results-head {
  margin-bottom: 64px;
}
.results-section .eyebrow {
  color: rgba(255,255,255,0.3);
}
.results-section .section-h {
  color: #fff;
  margin-top: 12px;
}
.results-note {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  margin-top: 10px;
  font-style: italic;
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  overflow: hidden;
}
.results-stat {
  background: var(--dark2);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.results-stat-num {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: #E8E2D4;
  letter-spacing: -0.03em;
  line-height: 1;
}
.results-stat-label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}
.results-stat-context {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* ── HAMBURGER ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: rgba(255,255,255,0.65);
  transition: transform 0.2s, opacity 0.2s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  nav { padding: 0 24px; }
  .nav-hamburger { display: flex; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 60px; left: 0; right: 0;
    background: rgba(22,22,22,0.98);
    backdrop-filter: blur(8px);
    padding: 8px 24px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    z-index: 99;
  }
  .nav-links.open a {
    padding: 16px 0;
    font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.7);
  }
  .nav-links.open a:last-child { border-bottom: none; }
  .hero { padding: 120px 24px 80px; min-height: auto; }
  .hero.compact { padding: 110px 24px 60px; }
  .hero-stats { flex-direction: column; gap: 28px; }
  .hero-stat { border-right: none; margin-right: 0; padding-right: 0; }
  section { padding: 72px 24px; }
  .fix-layout { grid-template-columns: 1fr; gap: 40px; }
  .fix-left { position: static; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .for-grid { grid-template-columns: 1fr; }
  .scope-item { flex-wrap: wrap; gap: 8px; }
  .scope-item-title { flex: 0 0 100%; }
  .faq-section { padding: 72px 24px; }
  footer { padding: 48px 24px 32px; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; padding-bottom: 32px; }
  .cta-section { padding: 80px 24px; }
  .prose-section { padding: 72px 24px; }
  .prose-grid { grid-template-columns: 1fr; gap: 36px; }
  .prose-aside { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 28px; }
}
