/* ============================================================
   FEATURES PAGE — NET ATELIER
   "Warm Architectural Minimalism"
   ============================================================ */

/* ---- TOKENS ---- */
:root {
  --bg:               #FAF8F5;
  --bg-alt:           #F0EDE8;
  --bg-parchment:     #E8E4DD;
  --surface:          #FFFFFF;
  --primary:          #1B3D2F;
  --primary-muted:    #4A6358;
  --accent:           #C67B5C;
  --accent-hover:     #B36A4D;
  --text-headline:    #2C2C2C;
  --text-body:        #2C2C2C;
  --text-secondary:   #6B6560;
  --text-muted:       #9A9590;
  --border:           #E8E4DD;
  --shadow-card:      0 2px 8px rgba(44,44,44,0.04), 0 8px 24px rgba(44,44,44,0.06);
  --shadow-hover:     0 4px 12px rgba(44,44,44,0.06), 0 16px 32px rgba(44,44,44,0.08);
  --max-width:        1200px;
  --card-padding:     32px;
  --card-radius:      2px;
}

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

html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--text-body);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ---- TYPOGRAPHY UTILITIES ---- */
.overline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.body-lg {
  font-size: 18px;
  line-height: 28px;
  color: var(--text-secondary);
}

.body-txt {
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.005em;
  color: var(--text-secondary);
}

.caption {
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.005em;
  color: var(--text-muted);
}

/* ---- LAYOUT UTILITIES ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.section-header {
  max-width: 640px;
  margin-bottom: 64px;
}

.section-h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 44px;
  letter-spacing: -0.005em;
  color: var(--text-headline);
  margin-top: 12px;
}

.section-sub {
  margin-top: 16px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 16px 32px;
  border-radius: 0;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  min-height: 44px;
}

.btn-primary {
  background: var(--primary);
  color: #FAF8F5;
  border-color: var(--primary);
}
.btn-primary:hover {
  background: #152f23;
  border-color: #152f23;
}
.btn-primary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-secondary:hover {
  background: rgba(27,61,47,0.05);
}
.btn-secondary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.btn-accent {
  background: var(--accent);
  color: #FAF8F5;
  border-color: var(--accent);
}
.btn-accent:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}
.btn-accent:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 80px;
  background: transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 1px solid transparent;
}

.nav--scrolled {
  background: #FAF8F5;
  border-bottom-color: var(--border);
  box-shadow: 0 1px 0 rgba(44,44,44,0.04);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 20px;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  margin: 0 auto;
}

.nav-link {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}
.nav-link:hover { color: var(--text-headline); }
.nav-link--active {
  color: var(--text-headline);
  border-bottom-color: var(--text-headline);
}
.nav-link:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

.nav-cta { flex-shrink: 0; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
  padding: 0;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-headline);
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav-hamburger:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.nav-mobile-menu {
  display: none;
  background: #FAF8F5;
  border-top: 1px solid var(--border);
  padding: 0 40px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.nav-mobile-menu.is-open {
  max-height: 400px;
  padding: 24px 40px;
}

.nav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}

.nav-mobile-cta { display: inline-flex; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(180deg, #FAF8F5 0%, #F0EDE8 100%);
  padding: 200px 40px 120px;
  text-align: center;
}

.hero-inner {
  max-width: 820px;
  margin: 0 auto;
}

.hero-overline {
  margin-bottom: 24px;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-weight: 300;
  font-size: 64px;
  line-height: 72px;
  letter-spacing: -0.015em;
  color: var(--text-headline);
  margin-bottom: 28px;
}

.hero-sub {
  max-width: 640px;
  margin: 0 auto 44px;
  color: var(--text-secondary);
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FEATURE GRID
   ============================================================ */
.feature-grid-section {
  background: var(--bg);
  padding: 96px 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--surface);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}
.feature-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}
.feature-card:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* Abstract visual strips */
.feature-card-strip {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  gap: 8px;
  flex-shrink: 0;
}

/* AI strip */
.feature-card-strip--ai { background: linear-gradient(135deg, #F0EDE8 0%, #E8E4DD 100%); }
.feature-card-strip--ai .strip-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--primary); flex-shrink: 0; }
.feature-card-strip--ai .strip-line { flex: 1; height: 1px; background: var(--primary-muted); opacity: 0.4; }
.feature-card-strip--ai .strip-pill {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--surface);
  background: var(--primary);
  padding: 4px 10px;
  border-radius: 20px;
  flex-shrink: 0;
}

/* Budgeting strip */
.feature-card-strip--budgeting { background: #F0EDE8; align-items: flex-end; padding-bottom: 20px; }
.strip-bar { width: 100%; background: var(--primary); border-radius: 1px 1px 0 0; flex: 1; }
.strip-bar--sm  { height: 48px; opacity: 0.35; }
.strip-bar--md  { height: 72px; opacity: 0.55; }
.strip-bar--lg  { height: 92px; opacity: 0.75; }
.strip-bar--xl  { height: 116px; opacity: 0.9; }

/* Concept strip */
.feature-card-strip--concept { background: #F0EDE8; gap: 4px; padding: 20px 28px; }
.strip-tile { flex: 1; height: 100%; background: var(--bg-parchment); border-radius: 1px; }
.strip-tile--accent { background: #D4A882; }
.strip-tile--muted  { background: var(--primary-muted); opacity: 0.3; }

/* Import strip */
.feature-card-strip--import { background: #F0EDE8; }
.strip-doc {
  width: 56px;
  height: 96px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}
.strip-doc--accent { background: rgba(27,61,47,0.06); border-color: var(--primary-muted); }
.strip-doc-line { height: 2px; background: var(--bg-parchment); border-radius: 1px; width: 100%; }
.strip-doc-line--short { width: 60%; }
.strip-arrow-icon {
  font-size: 18px;
  color: var(--primary-muted);
  flex-shrink: 0;
}

/* Invoicing strip */
.feature-card-strip--invoicing { background: #F0EDE8; flex-direction: column; justify-content: center; gap: 10px; padding: 28px 32px; }
.strip-row { width: 100%; height: 14px; background: var(--bg-parchment); border-radius: 1px; }
.strip-row--accent { background: rgba(198,123,92,0.25); }
.strip-row--total { background: var(--primary); opacity: 0.25; height: 14px; }

/* Proposals strip */
.feature-card-strip--proposals { background: #F0EDE8; }
.strip-header-mock {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}
.strip-logo-sq { width: 32px; height: 32px; background: var(--primary); opacity: 0.8; border-radius: 1px; flex-shrink: 0; }
.strip-header-lines { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.strip-hl { height: 3px; background: var(--primary); border-radius: 1px; }
.strip-hl--wide { width: 80%; opacity: 0.5; }
.strip-hl--narrow { width: 45%; opacity: 0.3; }

/* Specs strip */
.feature-card-strip--specs { background: #F0EDE8; flex-direction: column; gap: 16px; padding: 28px 32px; }
.strip-spec-row { display: flex; align-items: center; gap: 12px; width: 100%; }
.strip-swatch { width: 36px; height: 36px; border-radius: 1px; flex-shrink: 0; }
.strip-swatch--warm { background: #D4A882; }
.strip-swatch--cool { background: var(--primary-muted); opacity: 0.6; }
.strip-spec-lines { display: flex; flex-direction: column; gap: 5px; flex: 1; }
.strip-sl { height: 2px; background: var(--bg-parchment); border-radius: 1px; width: 100%; }
.strip-sl--short { width: 50%; }
.strip-sl--mid   { width: 70%; }

/* Card body */
.feature-card-body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.feature-card-route {
  margin-bottom: 10px;
  color: var(--text-muted);
}

.feature-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  color: var(--text-headline);
  margin-bottom: 10px;
}

.feature-card-copy {
  font-size: 15px;
  line-height: 24px;
  color: var(--text-secondary);
  flex: 1;
}

.feature-card-arrow {
  display: inline-block;
  margin-top: 18px;
  font-size: 16px;
  color: var(--text-muted);
  transition: transform 0.2s ease, color 0.2s ease;
}
.feature-card:hover .feature-card-arrow {
  transform: translateX(4px);
  color: var(--primary);
}

/* ============================================================
   WORKFLOW STRIP
   ============================================================ */
.workflow-section {
  background: var(--bg-alt);
  padding: 96px 0;
}

.workflow-flow {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 48px;
  overflow-x: auto;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.workflow-flow::-webkit-scrollbar { display: none; }

.workflow-node {
  flex-shrink: 0;
}

.workflow-node-inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-card);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  text-decoration: none;
  min-height: 44px;
  white-space: nowrap;
}
.workflow-node-inner:hover {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
  transform: translateY(-1px);
}
.workflow-node-inner:hover .workflow-node-label { color: #FAF8F5; }
.workflow-node-inner:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.workflow-node-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--text-headline);
  transition: color 0.2s ease;
}

.workflow-connector {
  flex: 1;
  min-width: 24px;
  max-width: 48px;
  height: 1px;
  background: var(--bg-parchment);
  position: relative;
  flex-shrink: 0;
}
.workflow-connector::after {
  content: '';
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-right: 1px solid var(--bg-parchment);
  border-top: 1px solid var(--bg-parchment);
  transform: translateY(-50%) rotate(45deg);
}

.workflow-caption {
  max-width: 580px;
  font-size: 16px;
  line-height: 26px;
  color: var(--text-secondary);
  letter-spacing: 0.005em;
}

/* ============================================================
   SNAPSHOTS
   ============================================================ */
.snapshots-section {
  background: var(--bg);
  padding: 96px 0;
}

.snapshot-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 64px 0;
  border-top: 1px solid var(--border);
}
.snapshot-row:first-of-type { border-top: none; padding-top: 0; }

.snapshot-row--reverse .snapshot-copy { order: 2; }
.snapshot-row--reverse .snapshot-visual { order: 1; }

.snapshot-copy { display: flex; flex-direction: column; gap: 0; }

.snapshot-h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 36px;
  color: var(--text-headline);
  margin-top: 14px;
  margin-bottom: 20px;
}

.snapshot-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 28px;
}

.snapshot-link {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}
.snapshot-link:hover { color: var(--accent); }
.snapshot-link:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* --- MOCKUP CARDS --- */
.snapshot-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mockup-card {
  background: var(--surface);
  border-radius: 4px;
  box-shadow: var(--shadow-hover);
  overflow: hidden;
  width: 100%;
  max-width: 420px;
  border: 1px solid var(--border);
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.mockup-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
}

.mockup-title-text {
  margin-left: 8px;
  color: var(--text-muted);
}

/* Import mockup */
.mockup-drop-zone {
  border: 1.5px dashed var(--border);
  border-radius: 2px;
  margin: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.mockup-drop-icon { color: var(--text-muted); }

.mockup-drop-text { color: var(--text-muted); }

.mockup-import-cards {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 16px 16px;
}

.mockup-import-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: var(--bg);
  border-radius: 2px;
  border: 1px solid var(--border);
}

.mockup-import-thumb {
  width: 32px;
  height: 32px;
  border-radius: 2px;
  flex-shrink: 0;
}
.mockup-import-thumb--ppt  { background: linear-gradient(135deg, #D04E2C 0%, #E8764F 100%); }
.mockup-import-thumb--canva { background: linear-gradient(135deg, #7C5CBF 0%, #9B7FD4 100%); }

.mockup-import-info { flex: 1; display: flex; flex-direction: column; gap: 5px; }

.mockup-import-badge {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 3px 8px;
  border-radius: 20px;
  flex-shrink: 0;
  background: rgba(27,61,47,0.1);
  color: var(--primary);
}
.mockup-import-badge--pending {
  background: rgba(198,123,92,0.12);
  color: var(--accent);
}

/* Shared line stands */
.mockup-line {
  height: 8px;
  background: var(--border);
  border-radius: 1px;
}
.mockup-line--wide   { width: 90%; }
.mockup-line--med    { width: 65%; }
.mockup-line--short  { width: 40%; }
.mockup-line--price  { width: 56px; flex-shrink: 0; margin-left: auto; }
.caption-line        { height: 6px; opacity: 0.6; }

/* Spec mockup */
.mockup-spec-block {
  padding: 16px;
}

.mockup-spec-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.mockup-swatch {
  width: 36px;
  height: 36px;
  border-radius: 2px;
  flex-shrink: 0;
}
.mockup-swatch--warm { background: #D4A882; }
.mockup-swatch--cool { background: var(--primary-muted); opacity: 0.5; }
.mockup-swatch--neutral { background: var(--bg-parchment); }
.mockup-swatch--sm { width: 24px; height: 24px; }

.mockup-ai-chip {
  margin-left: auto;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(27,61,47,0.08);
  color: var(--primary);
  flex-shrink: 0;
}

.mockup-spec-rows { display: flex; flex-direction: column; gap: 12px; }

.mockup-spec-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mockup-spec-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  width: 64px;
  flex-shrink: 0;
}

/* Invoice mockup */
.mockup-invoice { padding: 16px; }

.mockup-invoice-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.mockup-invoice-studio { display: flex; flex-direction: column; gap: 6px; }

.mockup-invoice-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  white-space: nowrap;
}

.mockup-invoice-rows { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }

.mockup-invoice-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mockup-invoice-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.mockup-total-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  text-transform: uppercase;
  font-size: 11px;
}

.mockup-total-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  color: var(--primary);
  font-size: 14px;
}

/* ============================================================
   TRUST / CTA
   ============================================================ */
.trust-section {
  background: var(--bg-alt);
  padding: 96px 0;
}

.trust-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: 0 40px;
}

.trust-headline {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 44px;
  letter-spacing: -0.005em;
  color: var(--text-headline);
  margin-top: 16px;
  margin-bottom: 24px;
}

.trust-body {
  margin-bottom: 44px;
}

.trust-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--primary);
  padding: 64px 0 40px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(250,248,245,0.12);
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 20px;
  color: #FAF8F5;
  letter-spacing: -0.01em;
  display: block;
  margin-bottom: 16px;
  text-decoration: none;
}

.footer-tagline {
  font-size: 14px;
  line-height: 22px;
  color: rgba(250,248,245,0.55);
  max-width: 280px;
}

.footer-nav {
  display: flex;
  gap: 64px;
}

.footer-nav-col { display: flex; flex-direction: column; gap: 20px; }

.footer-nav-heading {
  color: rgba(250,248,245,0.45);
  margin-bottom: 4px;
}

.footer-nav-col ul { display: flex; flex-direction: column; gap: 12px; }

.footer-link {
  font-size: 14px;
  line-height: 22px;
  color: rgba(250,248,245,0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-link:hover { color: #FAF8F5; }
.footer-link:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal { color: rgba(250,248,245,0.35); }

.footer-legal-links {
  display: flex;
  gap: 24px;
}

.footer-legal-link {
  color: rgba(250,248,245,0.35);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-legal-link:hover { color: rgba(250,248,245,0.6); }
.footer-legal-link:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.reveal-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-item {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}
.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-section,
  .reveal-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .nav-inner  { padding: 0 32px; }
  .hero       { padding: 180px 32px 96px; }

  .hero-headline { font-size: 52px; line-height: 60px; }

  .feature-grid { grid-template-columns: repeat(2, 1fr); }

  .workflow-flow { gap: 0; }

  .snapshot-row { gap: 48px; }
}

/* Mobile */
@media (max-width: 768px) {
  .container { padding: 0 24px; }

  .nav-links  { display: none; }
  .nav-cta    { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile-menu { display: block; }
  .nav-inner  { padding: 0 24px; }

  .hero { padding: 160px 24px 80px; }
  .hero-headline { font-size: 40px; line-height: 48px; }
  .hero-sub { font-size: 17px; }

  .section-h2 { font-size: 28px; line-height: 36px; }
  .section-header { margin-bottom: 40px; }

  .feature-grid { grid-template-columns: 1fr; gap: 16px; }
  .feature-grid-section { padding: 64px 0; }

  .workflow-section { padding: 64px 0; }
  .workflow-flow { flex-wrap: nowrap; }
  .workflow-connector { min-width: 16px; max-width: 24px; }
  .workflow-caption { font-size: 15px; }

  .snapshots-section { padding: 64px 0; }
  .snapshot-row {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 48px 0;
  }
  .snapshot-row--reverse .snapshot-copy { order: 1; }
  .snapshot-row--reverse .snapshot-visual { order: 2; }
  .snapshot-h3 { font-size: 24px; line-height: 32px; }

  .trust-section { padding: 64px 0; }
  .trust-inner { padding: 0 24px; }
  .trust-headline { font-size: 28px; line-height: 36px; }

  .footer-top {
    flex-direction: column;
    gap: 40px;
    padding-bottom: 40px;
  }
  .footer-nav { gap: 40px; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .footer-inner { padding: 0 24px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 32px; line-height: 40px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { text-align: center; }
  .trust-ctas { flex-direction: column; align-items: stretch; }
  .trust-ctas .btn { text-align: center; }
  .footer-nav { flex-direction: column; gap: 32px; }
  .nav-mobile-menu { padding-left: 24px; padding-right: 24px; }
  .nav-mobile-menu.is-open { padding: 24px; }
}
