/* Shared wireframe primitives — mid-fi mix: real Slovak headlines in
   Poppins, structure shown as outlined boxes, brand colors hinted. */

:root {
  --ink: #251E14;
  --ink-2: #2B3527;
  --forest: #112018;
  --sage: #9FA085;
  --sage-soft: #c9cbb5;
  --warm: #F7F4EE;
  --warm-2: #efeae0;
  --neutral: #A7A19A;
  --line: #d8d2c6;
  --line-2: #c6bfb0;
  --muted: #8b8579;
  --photo-bg: #d6d8c4;
  --photo-bg-2: #c4c9b3;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 22px;
}

.wf {
  font-family: 'Poppins', 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--warm);
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: -0.005em;
}

.wf * { box-sizing: border-box; }

/* ───── Wireframe primitives ───── */

.wf-box {
  border: 1.25px dashed var(--line-2);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.35);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10.5px;
  text-align: center;
  padding: 8px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.wf-photo {
  background:
    linear-gradient(135deg, var(--photo-bg) 0%, var(--photo-bg-2) 100%);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 14px;
  color: rgba(17,32,24,0.55);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}

.wf-photo::before {
  /* Subtle airflow line motif on photo placeholders */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(120% 80% at 70% 30%, rgba(255,255,255,0.18), transparent 60%),
    repeating-linear-gradient(
      105deg,
      transparent 0,
      transparent 28px,
      rgba(255,255,255,0.18) 28px,
      rgba(255,255,255,0.18) 29.2px
    );
  pointer-events: none;
}

.wf-photo .wf-label {
  position: relative;
  z-index: 1;
  background: rgba(247,244,238,0.85);
  padding: 4px 8px;
  border-radius: 4px;
  color: var(--ink);
  font-weight: 500;
}

.wf-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 12.5px;
  font-weight: 500;
  background: linear-gradient(168deg, #1b3123 0%, var(--forest) 68%);
  color: var(--warm);
  letter-spacing: -0.005em;
  white-space: nowrap;
}

.wf-btn.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.wf-btn.light {
  background: var(--warm);
  color: var(--forest);
}

.wf-btn.sm {
  padding: 9px 16px;
  font-size: 11.5px;
}

/* ───── Subtle tactile press feedback on all buttons ───── */
.wf-btn {
  cursor: pointer;
  transition: transform 0.14s cubic-bezier(0.2, 0, 0.2, 1),
              box-shadow 0.14s ease,
              filter 0.14s ease;
}
.wf-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 6px 16px rgba(17,32,24,0.16);
}
.wf-btn:active {
  transform: translateY(1px) scale(0.985);
  filter: brightness(0.97);
  box-shadow: 0 1px 3px rgba(17,32,24,0.18);
  transition-duration: 0.05s;
}

.wf-pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(159,160,133,0.18);
  border: 1px solid rgba(159,160,133,0.45);
  font-size: 12px;
  color: var(--ink);
}

.wf-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(159,160,133,0.18);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 500;
}

.wf-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}

.wf-divider {
  height: 1px;
  background: var(--line);
  width: 100%;
}

.wf-sage-line {
  height: 1.5px;
  background: var(--sage);
  width: 40px;
}

.wf-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--sage);
  font-weight: 500;
}

/* Typography helpers */

.wf h1 { font-size: 48px; line-height: 1.08; font-weight: 600; letter-spacing: -0.02em; margin: 0; }
.wf h2 { font-size: 32px; line-height: 1.15; font-weight: 600; letter-spacing: -0.015em; margin: 0; }
.wf h3 { font-size: 19px; line-height: 1.25; font-weight: 600; margin: 0; }
.wf h4 { font-size: 14px; line-height: 1.3; font-weight: 600; margin: 0; }
.wf p { margin: 0; color: var(--ink); }
.wf p.muted { color: var(--muted); }
.wf small { font-size: 11px; color: var(--muted); }

/* Section wrappers */
.wf-section { padding: 56px 56px; }
.wf-section.tight { padding: 40px 56px; }
.wf-section.dark { background: var(--forest); color: var(--warm); }
.wf-section.dark .wf-eyebrow { color: var(--sage); }
.wf-section.dark p { color: rgba(247,244,238,0.78); }
.wf-section.dark .wf-btn { background: var(--warm); color: var(--forest); }
.wf-section.dark .wf-card { background: var(--ink-2); border-color: rgba(159,160,133,0.18); color: var(--warm); }

.wf-section.warm-2 { background: var(--warm-2); }

/* Form fields */
.wf-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.wf-field label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--muted);
}
.wf-input {
  height: 38px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 0 12px;
  font-size: 12px;
  display: flex;
  align-items: center;
  color: var(--neutral);
}
.wf-input.tall {
  height: 80px;
  padding: 12px;
  align-items: flex-start;
}
.wf-section.dark .wf-input {
  background: rgba(247,244,238,0.06);
  border-color: rgba(159,160,133,0.3);
  color: rgba(247,244,238,0.5);
}

/* ───── Real form inputs (interactive) ───── */
input.wf-input,
select.wf-input,
textarea.wf-input {
  font-family: inherit;
  color: var(--ink);
  width: 100%;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
input.wf-input::placeholder,
textarea.wf-input::placeholder {
  color: var(--neutral);
}
input.wf-input:focus,
select.wf-input:focus,
textarea.wf-input:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(17,32,24,0.08);
}
textarea.wf-input.tall {
  display: block;
  resize: vertical;
  height: 92px;
  padding: 12px;
  line-height: 1.5;
  font-size: 13px;
}
select.wf-input {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239FA085' stroke-width='1.8' stroke-linecap='round'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 36px;
  cursor: pointer;
}

button.wf-btn {
  font-family: inherit;
  border: none;
  cursor: pointer;
}
a.wf-btn { text-decoration: none; }

/* ───── FAQ accordion (native <details>) ───── */
.wf-faq-item {
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.wf-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  user-select: none;
}
.wf-faq-item summary::-webkit-details-marker { display: none; }
.wf-faq-item summary h4 {
  margin: 0;
  flex: 1;
}
.wf-faq-icon {
  color: var(--sage);
  font-size: 22px;
  line-height: 1;
  font-weight: 300;
  transition: transform 0.2s ease;
  flex-shrink: 0;
  margin-top: -2px;
}
.wf-faq-item[open] .wf-faq-icon { transform: rotate(45deg); }
.wf-faq-item > p {
  padding: 0 0 18px;
  margin: -4px 0 0;
  font-size: 14px;
  max-width: 640px;
}

/* ───── Smooth scroll + section offset for anchor jumps ───── */
.wf section[id] { scroll-margin-top: 24px; }
.wf-nav a:not(.wf-btn):hover { color: var(--forest); text-decoration: underline; text-underline-offset: 4px; text-decoration-color: rgba(17,32,24,0.3); }

/* ═══════════════════════════════════════════════════════════════════
   HERO (variant A) — text left, full-bleed photo right
   ═══════════════════════════════════════════════════════════════════ */
.wf-hero {
  display: grid;
  grid-template-columns: 44% 56%;
  align-items: stretch;
  min-height: 600px;
  position: relative;
}
.wf-hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: 64px 52px 64px max(56px, 6vw);
  z-index: 1;
}
.wf-hero-h1 {
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0;
  text-wrap: balance;
}
.wf-hero-h1 .accent { color: var(--sage); }
.wf-hero-lead {
  font-size: 16px;
  line-height: 1.6;
  color: #564d40;
  max-width: 430px;
  margin: 0;
}
.wf-hero-cta-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.wf-hero-cta-row .wf-btn {
  padding: 16px 26px;
  font-size: 14px;
}
.wf-hero-arrow { flex-shrink: 0; margin-bottom: 4px; }
.wf-hero-support {
  font-size: 13.5px;
  line-height: 1.45;
  color: #6f6759;
}

/* Full-bleed photo cell */
.wf-hero-photo {
  position: relative;
  min-height: 100%;
  background: linear-gradient(135deg, #c4c9b3 0%, #9FA085 45%, #2B3527 100%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  overflow: hidden;
}
.wf-hero-photo .wf-label {
  position: relative;
  z-index: 1;
  background: rgba(247,244,238,0.85);
  padding: 4px 8px;
  border-radius: 4px;
  color: var(--ink);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}
/* In hi-fi mode the photo cell shows the real image (set elsewhere); hide label */
body[data-fidelity="hifi"] .wf-hero-photo .wf-label { display: none; }
/* Airflow motif on the wireframe (non-hi-fi) version */
body:not([data-fidelity="hifi"]) .wf-hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(120% 80% at 70% 30%, rgba(255,255,255,0.18), transparent 60%),
    repeating-linear-gradient(105deg, transparent 0, transparent 28px, rgba(255,255,255,0.18) 28px, rgba(255,255,255,0.18) 29.2px);
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════════════
   TRUST BAR — full-width strip, circular badges, vertical dividers
   ═══════════════════════════════════════════════════════════════════ */
.wf-trustbar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 0;
  padding: 30px max(56px, 6vw);
  background: var(--warm-2);
  border-top: 1px solid var(--line);
}
.wf-trust-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 6px 36px;
  position: relative;
}
.wf-trust-item + .wf-trust-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 56px;
  width: 1px;
  background: var(--line-2);
}
.wf-trust-badge {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1.5px solid var(--sage);
  background: rgba(159,160,133,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  flex-shrink: 0;
}
.wf-trust-title { font-size: 15px; font-weight: 600; margin: 0 0 4px; }
.wf-trust-desc { font-size: 13px; line-height: 1.4; color: var(--muted); margin: 0; white-space: pre-line; }

/* ═══════════════════════════════════════════════════════════════════
   HOW IT WORKS — 3 step cards with photo visuals + reassurance strip
   ═══════════════════════════════════════════════════════════════════ */
.wf-how-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  margin-bottom: 40px;
}
.wf-how-title {
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 12px 0 0;
  max-width: 20ch;
  text-wrap: balance;
}
.wf-how-title .accent { color: var(--sage); }
.wf-how-sub {
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 280px;
  margin: 0 0 6px;
}

.wf-how-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 0;
}
.wf-how-connector {
  align-self: center;
  width: 46px;
  height: 0;
  border-top: 2px dashed var(--line-2);
  margin: -90px -2px 0;
}
.wf-how-card {
  background: #fff;
  border-radius: 22px;
  padding: 22px 22px 28px;
  box-shadow: 0 1px 2px rgba(17,32,24,0.04), 0 14px 34px rgba(17,32,24,0.05);
  display: flex;
  flex-direction: column;
}
.wf-how-visual { margin-bottom: 22px; }
.wf-how-visual img {
  width: 100%;
  height: auto;
  display: block;
}
.wf-how-visual-ph {
  position: relative;
  aspect-ratio: 3 / 2;
  margin-left: 8%;
  border-radius: 18px;
  background: linear-gradient(135deg, #c4c9b3 0%, #9FA085 55%, #2B3527 120%);
  display: flex;
  align-items: flex-end;
  padding: 12px;
  overflow: visible;
}
body[data-fidelity="hifi"] .wf-how-visual-ph .wf-label { display: none; }
.wf-how-num {
  position: absolute;
  top: -14px;
  left: -8%;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: var(--warm-2);
  color: var(--forest);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(17,32,24,0.08);
}
.wf-how-iconbadge {
  position: absolute;
  bottom: -16px;
  left: -8%;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--warm-2);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(17,32,24,0.08);
}
.wf-how-visual-ph .wf-label {
  position: relative;
  z-index: 1;
  background: rgba(247,244,238,0.85);
  padding: 4px 8px;
  border-radius: 4px;
  color: var(--ink);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
  margin-left: auto;
}
.wf-how-card-title { font-size: 19px; font-weight: 600; margin: 0 0 12px; letter-spacing: -0.01em; }
.wf-how-card-desc { font-size: 14px; line-height: 1.6; color: var(--muted); margin: 0; }

.wf-how-reassure {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
  padding: 28px 34px;
  background: rgba(255,255,255,0.5);
  border: 1px solid var(--line);
  border-radius: 20px;
}
.wf-how-reassure-left { display: flex; align-items: center; gap: 18px; }
.wf-how-shield {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: var(--forest);
  color: var(--warm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wf-how-reassure-strong { font-size: 18px; font-weight: 700; line-height: 1.25; margin: 0; color: var(--ink); letter-spacing: -0.01em; }
.wf-how-reassure-div { width: 1px; height: 52px; background: var(--line-2); }
.wf-how-reassure-text { font-size: 15px; line-height: 1.5; color: var(--ink-2); margin: 0; max-width: 480px; }
.wf-how-reassure-arrow { flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════════════
   SERVICES — intro + featured card · 4-card photo grid · reassurance strip
   ═══════════════════════════════════════════════════════════════════ */
.wf-serv { background: var(--warm); }
.wf-eyebrow--dot { display: inline-flex; align-items: center; gap: 8px; }
.wf-eyebrow--dot::before {
  content: none;
  width: 7px; height: 7px;
  border-radius: 999px;
  background: var(--sage);
  flex-shrink: 0;
}

/* ── Top row: intro (left) + featured card (right) ── */
.wf-serv-top {
  display: grid;
  grid-template-columns: 0.85fr 1.55fr;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 22px;
}
.wf-serv-intro {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 18px 24px 0 0;
}
.wf-serv-title {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 4px 0 0;
  max-width: 9ch;
  text-wrap: balance;
}
.wf-serv-title .accent { color: var(--sage); }
.wf-serv-lead {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 30ch;
  margin: 0;
}

/* Featured card — text left, full-bleed photo right */
.wf-serv-feature {
  position: relative;
  display: grid;
  grid-template-columns: minmax(230px, 0.8fr) 1.4fr;
  align-items: stretch;
  background: #fff;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(17,32,24,0.04), 0 18px 44px rgba(17,32,24,0.06);
}
.wf-serv-feature-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px 32px;
}
.wf .wf-serv-feature-title {
  font-size: 22px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 18px 0 12px;
}
.wf .wf-serv-feature-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
  max-width: 34ch;
}
.wf-serv-feature-photo {
  position: relative;
  overflow: hidden;
  min-height: 280px;
}
.wf-serv-feature-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

/* ── Badges ── */
.wf-serv-badge {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: var(--warm-2);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wf-serv-badge--solid {
  background: var(--forest);
  color: #fff;
}

/* ── 4-card photo grid ── */
.wf-serv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.wf-serv-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 24px;
  padding: 26px 24px 24px;
  box-shadow: 0 1px 2px rgba(17,32,24,0.04), 0 14px 34px rgba(17,32,24,0.05);
}
.wf-serv-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.wf .wf-serv-card-title {
  font-size: 19px;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
  white-space: pre-line;
}
.wf-serv-card-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 0 20px;
  flex: 1;
}
.wf-serv-card-photo {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}
.wf-serv-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Reassurance strip ── */
.wf-serv-strip {
  display: grid;
  grid-template-columns: auto auto 1px 1fr auto;
  align-items: center;
  gap: 26px;
  margin-top: 26px;
  padding: 30px 40px;
  background: var(--warm-2);
  border-radius: 24px;
}
.wf-serv-strip-badge {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--forest);
  color: var(--warm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wf-serv-strip-strong {
  font-size: 20px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
}
.wf-serv-strip-div {
  width: 1px;
  height: 52px;
  background: var(--line-2);
}
.wf-serv-strip-text {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
  max-width: 46ch;
}
.wf-serv-strip-arrow { flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════════════
   SEASONAL CAMPAIGN — responsive image banner (<picture>) + CTA
   ═══════════════════════════════════════════════════════════════════ */
.wf-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.wf-campaign { background: var(--warm); }
.wf-campaign-media {
  width: min(100%, 1180px);
  margin: 0 auto;
}
.wf-campaign-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 28px;
  box-shadow: 0 1px 2px rgba(17,32,24,0.04), 0 18px 44px rgba(17,32,24,0.06);
}
.wf-campaign-img--mobilefallback { display: none; }
.wf-campaign-cta {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

/* Real narrow viewports: <picture> already swaps to the vertical asset */
@media (max-width: 768px) {
  .wf-campaign-img { border-radius: 20px; }
  .wf-campaign-media { width: min(100%, 520px); }
}

/* Device-preview modes don't resize the viewport, so swap the asset by CSS */
.preview-shell[data-device="tablet"] .wf-campaign-media { width: min(100%, 760px); }
.preview-shell[data-device="mobile"] .wf-campaign-pic { display: none; }
.preview-shell[data-device="mobile"] .wf-campaign-img--mobilefallback {
  display: block;
  border-radius: 20px;
}
.preview-shell[data-device="mobile"] .wf-campaign-media { width: min(100%, 460px); }

/* ═══════════════════════════════════════════════════════════════════
   WHY NEXLY — centered editorial header · 5 value cards · dark CTA bar
   ═══════════════════════════════════════════════════════════════════ */
.wf-why { background: var(--warm); }
.wf-why-head {
  max-width: 840px;
  margin: 0 auto 46px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}
.wf-why-eyebrow { color: var(--sage); }
.wf .wf-why-title {
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 32px;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.005em;
  margin: 0;
  text-wrap: balance;
}
.wf .wf-why-title .line2 {
  display: block;
  color: var(--sage);
}
.wf .wf-why-sub {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 64ch;
  margin: 0;
}

.wf-why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.wf-why-card {
  background: #f2f0e7;
  border-radius: 22px;
  padding: 32px 22px 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.wf-why-card:nth-child(even) { background: #eaece0; }
.wf-why-badge {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: var(--forest);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wf-why-divider {
  width: 30px;
  height: 2px;
  border-radius: 2px;
  background: var(--sage);
  margin: 24px 0 18px;
}
.wf .wf-why-card-title {
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 19px;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.005em;
  margin: 0 0 14px;
  white-space: pre-line;
}
.wf .wf-why-card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* Dark forest CTA bar */
.wf-why-cta {
  position: relative;
  overflow: hidden;
  margin-top: 26px;
  padding: 30px 42px;
  background: var(--forest);
  border-radius: 24px;
  display: grid;
  grid-template-columns: auto 1px 1fr auto;
  align-items: center;
  gap: 34px;
}
.wf-why-cta-logo { position: relative; z-index: 1; }
.wf-why-cta-div {
  width: 1px;
  height: 56px;
  background: rgba(159,160,133,0.38);
}
.wf-why-cta-copy { position: relative; z-index: 1; }
.wf .wf-why-cta-strong {
  font-size: 19px;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--warm);
  margin: 0;
}
.wf .wf-why-cta-sub {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(247,244,238,0.72);
  margin: 7px 0 0;
}
.wf-why-cta-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 26px;
  border-radius: 14px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--warm);
  background: rgba(159,160,133,0.22);
  border: 1px solid rgba(159,160,133,0.5);
  white-space: nowrap;
  transition: background 0.15s, border-color 0.15s;
}
.wf-why-cta-btn:hover {
  background: rgba(159,160,133,0.34);
  border-color: rgba(159,160,133,0.7);
}
.wf-why-cta-btn span { font-size: 16px; }
.wf-why-cta-btn span[aria-hidden] { transition: transform 0.2s cubic-bezier(0.2,0,0.2,1); }
.wf-why-cta-btn:hover span[aria-hidden] { transform: translateX(4px); }
.wf-why-leaf {
  position: absolute;
  right: 30%;
  top: 50%;
  transform: translateY(-50%) rotate(12deg);
  z-index: 0;
  pointer-events: none;
}

/* ── Why Nexly — responsive ── */
@media (max-width: 980px) {
  .wf-why-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 620px) {
  .wf-why-grid { grid-template-columns: 1fr; }
}
.preview-shell[data-device="tablet"] .wf-why-grid { grid-template-columns: repeat(3, 1fr); }
.preview-shell[data-device="mobile"] .wf-why-grid { grid-template-columns: 1fr; gap: 14px !important; }
.preview-shell[data-device="mobile"] .wf-why-card { padding: 28px 22px 30px; }
.preview-shell[data-device="mobile"] .wf-why-cta {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  gap: 18px;
  padding: 30px 26px;
}
.preview-shell[data-device="mobile"] .wf-why-cta-div { display: none; }
.preview-shell[data-device="mobile"] .wf-why-leaf { right: 4%; opacity: 0.6; }

/* ═══════════════════════════════════════════════════════════════════
   INQUIRY FORM — conversion-focused non-binding quotation request
   ═══════════════════════════════════════════════════════════════════ */
.wf-ip { background: var(--warm); }
.wf-ip-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  grid-template-areas: "intro form" "aside form";
  grid-template-rows: auto 1fr;
  gap: 18px 48px;
  align-items: start;
  max-width: 1240px;
  margin: 0 auto;
}
.wf-ip-intro { grid-area: intro; }
.wf-ip-aside { grid-area: aside; display: flex; flex-direction: column; }
.wf-ip-right { grid-area: form; align-self: start; }

/* Intro */
.wf-ip-eyebrow { color: var(--sage); }
.wf .wf-ip-title {
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 32px;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 16px 0 0;
  text-wrap: balance;
}
.wf .wf-ip-title .line2 { display: block; color: var(--sage); }
.wf .wf-ip-lead {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin: 18px 0 0;
  max-width: 42ch;
}

/* Steps */
.wf-ip-steps { display: flex; align-items: flex-start; margin: 30px 0 0; }
.wf-ip-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  width: 96px;
  flex-shrink: 0;
}
.wf-ip-step-conn {
  flex: 1;
  height: 0;
  border-top: 2px dashed var(--line-2);
  margin-top: 38px;
  min-width: 16px;
}
.wf-ip-step-circle {
  position: relative;
  width: 76px;
  height: 76px;
  border-radius: 999px;
  background: #eef0e6;
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
}
.wf-ip-step-num {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--forest);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 3px var(--warm);
}
.wf-ip-step-label { font-size: 13px; font-weight: 500; line-height: 1.3; color: var(--ink); white-space: pre-line; }

/* Tip box */
.wf-ip-tip {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-top: 32px;
  padding: 20px 22px;
  background: rgba(159,160,133,0.14);
  border-radius: 16px;
}
.wf-ip-tip-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #fff;
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wf-ip-tip-title { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.wf .wf-ip-tip-text { font-size: 12.5px; line-height: 1.55; color: var(--muted); margin: 0; }

/* Figure + benefits */
.wf-ip-figure { position: relative; margin-top: 32px; }
.wf-ip-figure-img { display: block; width: 100%; height: 300px; object-fit: cover; border-radius: 22px; }
.wf-ip-benefits {
  position: relative;
  margin: -56px 14px 0;
  background: #fff;
  border-radius: 22px;
  padding: 26px 26px 22px;
  box-shadow: 0 1px 2px rgba(17,32,24,0.04), 0 18px 44px rgba(17,32,24,0.08);
}
.wf .wf-ip-benefits-title { font-family: 'Poppins', system-ui, sans-serif; font-size: 19px; font-weight: 600; margin: 0 0 14px; }
.wf-ip-benefit { display: flex; gap: 14px; align-items: flex-start; padding: 9px 0; }
.wf-ip-benefit-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(159,160,133,0.16);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wf-ip-benefit-h { font-size: 14px; font-weight: 600; color: var(--ink); }
.wf .wf-ip-benefit-p { font-size: 12.5px; line-height: 1.5; color: var(--muted); margin: 2px 0 0; }

/* Form card */
.wf-ip-right {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 34px;
  min-width: 0;
  box-shadow: 0 1px 2px rgba(17,32,24,0.04), 0 18px 50px rgba(17,32,24,0.06);
}
.wf-ip-form { display: flex; flex-direction: column; gap: 26px; }
.wf-ip-group { display: flex; flex-direction: column; }
.wf-ip-grouphead { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.wf-ip-groupicon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--forest);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wf .wf-ip-grouptitle { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; margin: 0; color: var(--ink); }
.wf-ip-grouptitle-note { font-weight: 500; color: var(--muted); font-size: 13px; }

.wf-ip-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.wf-ip-input--full { grid-column: 1 / -1; }

.wf-ip-input { position: relative; display: flex; align-items: center; }
.wf-ip-ic {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--sage);
  pointer-events: none;
  display: flex;
}
.wf-ip-ic svg { width: 18px; height: 18px; }
.wf-ip-ic--top { top: 17px; transform: none; }
.wf-ip-input input,
.wf-ip-input select,
.wf-ip-input textarea {
  width: 100%;
  font-family: inherit;
  font-size: 13.5px;
  color: var(--ink);
  background: #fbfaf6;
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 0 16px;
  height: 52px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}
.wf-ip-ic ~ input,
.wf-ip-ic ~ select,
.wf-ip-ic ~ textarea { padding-left: 44px; }
.wf-ip-input select { padding-right: 42px; color: var(--muted); cursor: pointer; }
.wf-ip-input textarea { height: auto; min-height: 96px; padding-top: 15px; padding-bottom: 15px; line-height: 1.5; resize: vertical; }
.wf-ip-input input::placeholder,
.wf-ip-input textarea::placeholder { color: var(--muted); }
.wf-ip-input input:focus,
.wf-ip-input select:focus,
.wf-ip-input textarea:focus {
  border-color: var(--forest);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(17,32,24,0.14);
}
.wf-ip-chev {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink-2);
  pointer-events: none;
  display: flex;
}
.wf-ip-chev svg { width: 18px; height: 18px; }

/* Choice cards */
.wf-ip-choices { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.wf-ip-choice { position: relative; cursor: pointer; display: block; min-width: 0; }
.wf-ip-choice input { position: absolute; opacity: 0; width: 0; height: 0; }
.wf-ip-choice-inner {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 22px 12px 18px;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  background: #fbfaf6;
  transition: border-color 0.15s, background 0.15s;
}
.wf-ip-choice-icon { color: var(--forest); display: flex; }
.wf-ip-choice-icon svg { width: 30px; height: 30px; }
.wf-ip-choice-label { font-size: 13px; font-weight: 600; line-height: 1.25; color: var(--ink); white-space: pre-line; }
.wf-ip-choice-check {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--forest);
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
}
.wf-ip-choice-check svg { width: 13px; height: 13px; }
.wf-ip-choice input:checked ~ .wf-ip-choice-inner { border-color: var(--forest); background: rgba(159,160,133,0.16); }
.wf-ip-choice input:checked ~ .wf-ip-choice-inner .wf-ip-choice-check { display: flex; }
.wf-ip-choice input:focus-visible ~ .wf-ip-choice-inner { box-shadow: 0 0 0 3px rgba(17,32,24,0.2); }

/* Photos */
.wf .wf-ip-photonote { font-size: 12.5px; line-height: 1.5; color: var(--muted); margin: 0 0 14px; }
.wf-ip-drop-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  padding: 30px 20px;
  border: 2px dashed var(--line-2);
  border-radius: 18px;
  background: rgba(159,160,133,0.06);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.wf-ip-drop-inner:hover { border-color: var(--forest); background: rgba(159,160,133,0.12); }
.wf-ip-drop.is-dragging .wf-ip-drop-inner,
.wf-ip-drop-inner:focus-within {
  border-color: var(--forest);
  background: rgba(159,160,133,0.16);
}
.wf-ip-drop-cam {
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background: rgba(159,160,133,0.18);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
}
.wf-ip-drop-t { font-size: 14px; font-weight: 600; color: var(--ink); }
.wf-ip-drop-s { font-size: 12px; color: var(--muted); }
.wf .wf-ip-photo-status {
  min-height: 18px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}
.wf .wf-ip-photo-status[data-state="error"] { color: #9b2c2c; }
.wf .wf-ip-photo-status[data-state="processing"] { color: var(--forest); }
.wf-ip-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 2px; }
.wf-ip-thumbs:empty { display: none; }
.wf-ip-thumb { position: relative; aspect-ratio: 4 / 3; border-radius: 12px; overflow: hidden; background: var(--warm-2); }
.wf-ip-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wf-ip-thumb-remove {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--forest);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.wf-ip-thumb-remove:hover { background: #253529; }
.wf-ip-thumb-remove:focus-visible { outline: 3px solid rgba(255,255,255,0.9); outline-offset: 2px; }
.wf-ip-thumb-remove svg { width: 14px; height: 14px; }
.wf .wf-ip-photohint { font-size: 11.5px; line-height: 1.5; color: var(--muted); margin: 12px 0 0; }

@media (max-width: 520px) {
  .wf-ip-thumbs { grid-template-columns: repeat(2, 1fr); }
}

/* GDPR + submit */
.wf-ip-gdpr { display: flex; gap: 12px; align-items: flex-start; cursor: pointer; }
.wf-ip-gdpr input { position: absolute; opacity: 0; width: 0; height: 0; }
.wf-ip-gdpr-box {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  border: 1.5px solid var(--line-2);
  background: #fff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  transition: background 0.15s, border-color 0.15s;
}
.wf-ip-gdpr-box svg { width: 13px; height: 13px; opacity: 0; }
.wf-ip-gdpr input:checked ~ .wf-ip-gdpr-box { background: var(--forest); border-color: var(--forest); }
.wf-ip-gdpr input:checked ~ .wf-ip-gdpr-box svg { opacity: 1; }
.wf-ip-gdpr input:focus-visible ~ .wf-ip-gdpr-box { box-shadow: 0 0 0 3px rgba(17,32,24,0.2); }
.wf-ip-gdpr-text { font-size: 12px; line-height: 1.55; color: var(--muted); }
.wf-ip-gdpr-text a { color: var(--forest); text-decoration: underline; text-underline-offset: 2px; }

.wf-ip-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  height: 62px;
  border: none;
  cursor: pointer;
  background: linear-gradient(168deg, #1d3525 0%, var(--forest) 70%);
  color: var(--warm);
  border-radius: 14px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  box-shadow: 0 4px 14px rgba(17,32,24,0.20), 0 16px 34px rgba(17,32,24,0.14), inset 0 1px 0 rgba(255,255,255,0.10);
  transition: transform 0.18s cubic-bezier(0.2,0,0.2,1), box-shadow 0.18s ease, filter 0.18s ease;
}
.wf-ip-submit:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 8px 20px rgba(17,32,24,0.24), 0 26px 50px rgba(17,32,24,0.18), inset 0 1px 0 rgba(255,255,255,0.14);
}
.wf-ip-submit:active {
  transform: translateY(1px) scale(0.99);
  filter: brightness(0.98);
  box-shadow: 0 1px 4px rgba(17,32,24,0.20), inset 0 1px 0 rgba(255,255,255,0.05);
  transition-duration: 0.06s;
}
.wf-ip-submit span { font-size: 18px; }
.wf-ip-submit span[aria-hidden] { transition: transform 0.2s cubic-bezier(0.2,0,0.2,1); }
.wf-ip-submit:hover span[aria-hidden] { transform: translateX(5px); }
.wf .wf-ip-afternote { font-size: 13px; line-height: 1.55; color: var(--ink-2); text-align: center; margin: 0 0 10px; }
.wf .wf-ip-reassure { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 12px; color: var(--muted); margin: 0; }
.wf-ip-direct-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 10px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}
.wf-ip-direct-contact a {
  color: var(--ink-2);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(17,32,24,0.3);
  text-underline-offset: 3px;
}
.wf-ip-direct-contact a:hover { color: var(--forest); text-decoration-color: currentColor; }
.wf-ip-direct-contact a:focus-visible { outline: 2px solid var(--forest); outline-offset: 3px; border-radius: 2px; }
.wf-ip-direct-separator { color: var(--line-2); }

/* Inquiry form — responsive */
@media (max-width: 900px) {
  .wf-ip-grid { grid-template-columns: minmax(0, 1fr); grid-template-areas: "intro" "form" "aside"; }
}
.preview-shell[data-device="tablet"] .wf-ip-grid {
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas: "intro" "form" "aside";
}
.preview-shell[data-device="mobile"] .wf-ip-grid {
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas: "intro" "form" "aside";
  gap: 26px;
}
.preview-shell[data-device="mobile"] .wf-ip-right { padding: 24px 20px; border-radius: 22px; }
.preview-shell[data-device="mobile"] .wf-ip-fields { grid-template-columns: 1fr; }
.preview-shell[data-device="mobile"] .wf-ip-steps { max-width: 360px; }





/* Header + footer */
.wf-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 56px;
  border-bottom: 1px solid var(--line);
  background: var(--warm);
  position: sticky;
  top: 0;
  z-index: 50;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease, padding 0.3s ease;
}
.wf-header.is-scrolled {
  background: rgba(247, 244, 238, 0.7);
  -webkit-backdrop-filter: blur(16px) saturate(1.5);
  backdrop-filter: blur(16px) saturate(1.5);
  border-bottom-color: rgba(17, 32, 24, 0.08);
}
.wf-header.is-scrolled::after { opacity: 1; }
.wf-header::after {
  /* Subtle shadow that fades in on scroll */
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: rgba(17,32,24,0.06);
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}
.wf-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
}
.wf-logo .mark {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--warm);
  font-size: 13px;
  font-weight: 600;
}
.wf-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 12.5px;
  color: var(--ink);
}
/* Language toggle SK | EN */
.wf-lang {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border-radius: 999px;
  background: rgba(17, 32, 24, 0.06);
  border: 1px solid rgba(17, 32, 24, 0.10);
}
.wf-lang button {
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 5px 10px;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  opacity: 0.62;
  transition: background 0.15s ease, color 0.15s ease, opacity 0.15s ease, transform 0.12s ease;
}
.wf-lang button:hover { opacity: 0.9; }
.wf-lang button:active { transform: translateY(1px); }
.wf-lang button.is-active {
  background: var(--forest);
  color: var(--warm);
  opacity: 1;
}

/* Hide the SK|EN toggle on mobile — header is tight there and language auto-detects */
.preview-shell[data-device="mobile"] .wf-lang { display: none; }
@media (max-width: 720px) { .wf-lang { display: none; } }

.wf-nav a:not(.wf-btn) {
  color: inherit;
  text-decoration: none;
  transition: transform 0.14s cubic-bezier(0.2, 0, 0.2, 1), opacity 0.14s ease;
}
.wf-nav a:not(.wf-btn):hover {
  opacity: 0.7;
}
.wf-nav a:not(.wf-btn):active {
  transform: translateY(1px);
  opacity: 0.55;
  transition-duration: 0.05s;
}

.wf-footer {
  padding: 40px 56px 28px;
  background: var(--forest);
  color: var(--warm);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 28px;
  font-size: 12px;
}
.wf-footer .wf-logo { color: var(--warm); }
.wf-footer .wf-logo .mark { background: var(--warm); color: var(--forest); }
.wf-footer p, .wf-footer a { color: rgba(247,244,238,0.7); text-decoration: none; }
.wf-footer a:hover { color: var(--warm); text-decoration: underline; text-underline-offset: 3px; }
.wf-footer h4 { color: var(--warm); margin-bottom: 10px; }

/* Tiny line icon */
.wf-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1.25px solid var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  flex-shrink: 0;
}
.wf-section.dark .wf-icon { border-color: var(--sage); color: var(--sage); }

/* Big number */
.wf-bignum {
  font-size: 64px;
  font-weight: 600;
  line-height: 1;
  color: var(--sage);
  letter-spacing: -0.04em;
}

/* Annotation chip (sketchy red) */
.wf-note {
  position: absolute;
  font-size: 9.5px;
  letter-spacing: 0.04em;
  color: #b54a2f;
  font-family: 'Caveat', 'Comic Sans MS', cursive;
  font-weight: 500;
  font-size: 13px;
  pointer-events: none;
}
.wf-note::before {
  content: "↳ ";
}

/* ═══════════════════════════════════════════════════════════════════
   TWEAKS — three expressive controls that reshape the design feel:
   data-fidelity · data-density · data-mood
   Applied on <body> so all 3 wireframes share the treatment.
   ═══════════════════════════════════════════════════════════════════ */

/* ───── Fidelity: SKETCH (low-fi, handwritten, monochrome) ───── */
body[data-fidelity="sketch"] .wf {
  filter: saturate(0.05);
  background: #f1eee7;
}
body[data-fidelity="sketch"] .wf-photo {
  background:
    repeating-linear-gradient(45deg, transparent 0, transparent 8px, rgba(60,50,40,0.08) 8px, rgba(60,50,40,0.08) 9px),
    #e3dfd6 !important;
  border: 1.5px dashed #a39c91;
}
body[data-fidelity="sketch"] .wf-photo::before { display: none; }
body[data-fidelity="sketch"] .wf-photo .wf-label {
  background: rgba(255,255,255,0.85);
  font-family: 'Caveat', cursive;
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
}
body[data-fidelity="sketch"] .wf-btn {
  background: #f7f4ee !important;
  color: #4a4239 !important;
  border: 1.5px dashed #6b6358 !important;
  font-family: 'Caveat', cursive;
  font-size: 15px !important;
  font-weight: 500;
}
body[data-fidelity="sketch"] .wf-card {
  background: #fdfbf6;
  border-style: dashed;
  border-color: #b8b0a3;
  box-shadow: 2px 2px 0 rgba(60,50,40,0.06);
}
body[data-fidelity="sketch"] .wf-section.dark { background: #3a3f35; }
body[data-fidelity="sketch"] .wf-footer { background: #3a3f35; }
body[data-fidelity="sketch"] h1,
body[data-fidelity="sketch"] h2 {
  font-family: 'Caveat', cursive;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
}
body[data-fidelity="sketch"] .wf-eyebrow {
  font-family: 'Caveat', cursive;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
}
body[data-fidelity="sketch"] .wf-pill,
body[data-fidelity="sketch"] .wf-tag {
  background: rgba(60,50,40,0.06);
  border: 1.5px dashed rgba(60,50,40,0.4) !important;
  font-family: 'Caveat', cursive;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
}
body[data-fidelity="sketch"] .wf-input {
  border-style: dashed;
  background: #fdfbf6;
}
body[data-fidelity="sketch"] .wf-icon {
  border-style: dashed;
}
body[data-fidelity="sketch"] .wf-bignum {
  font-family: 'Caveat', cursive;
  color: #6b6358;
}
body[data-fidelity="sketch"] .wf-sage-line { background: #6b6358; }

/* ───── Fidelity: HI-FI (real photos, saturated, polished) ───── */
body[data-fidelity="hifi"] .wf-photo {
  background-image:
    linear-gradient(160deg, rgba(43,53,39,0.15) 0%, rgba(17,32,24,0.45) 100%),
    radial-gradient(at 30% 20%, rgba(247,244,238,0.4), transparent 55%),
    linear-gradient(135deg, #c4c9b3 0%, #9FA085 45%, #2B3527 100%);
  box-shadow: 0 12px 32px rgba(17,32,24,0.12);
}

/* Real brand photo replaces the gradient in hi-fi mode for hero spots */
body[data-fidelity="hifi"] .wf-photo--hero,
body[data-fidelity="hifi"] .wf-photo--brand {
  background-image: url('assets/hero-living-room.png') !important;
  background-size: cover !important;
  background-position: 70% center !important;
  box-shadow: 0 12px 32px rgba(17,32,24,0.18);
}
/* Subtle warm-white feathering on the left edge of the hero photo, so it
   visually connects to the text column. Suppressed on mobile per brief. */
@media (min-width: 721px) {
  body[data-fidelity="hifi"] .wf-photo--hero {
    background-image:
      linear-gradient(90deg, rgba(247,244,238,0.55) 0%, rgba(247,244,238,0.18) 32%, rgba(247,244,238,0) 65%),
      url('assets/hero-living-room.png') !important;
  }
}
body[data-fidelity="hifi"] .wf-photo--hero::before,
body[data-fidelity="hifi"] .wf-photo--brand::before {
  display: none;
}
body[data-fidelity="hifi"] .wf-photo::before {
  background-image:
    radial-gradient(120% 80% at 70% 30%, rgba(255,255,255,0.18), transparent 60%),
    repeating-linear-gradient(105deg, transparent 0, transparent 60px, rgba(255,255,255,0.08) 60px, rgba(255,255,255,0.08) 61px);
}
body[data-fidelity="hifi"] .wf-photo .wf-label { display: none; }
body[data-fidelity="hifi"] .wf-box { display: none; }
body[data-fidelity="hifi"] .wf-card {
  border: 1px solid rgba(159,160,133,0.25);
  box-shadow:
    0 1px 2px rgba(17,32,24,0.04),
    0 10px 28px rgba(17,32,24,0.05);
}
body[data-fidelity="hifi"] .wf-section.dark .wf-card {
  border-color: rgba(159,160,133,0.22);
  box-shadow: 0 12px 32px rgba(0,0,0,0.18);
}
body[data-fidelity="hifi"] .wf-btn {
  box-shadow: 0 2px 6px rgba(17,32,24,0.16), 0 10px 26px rgba(17,32,24,0.12), inset 0 1px 0 rgba(255,255,255,0.10);
}
body[data-fidelity="hifi"] .wf-btn:hover {
  box-shadow: 0 6px 14px rgba(17,32,24,0.20), 0 18px 40px rgba(17,32,24,0.18), inset 0 1px 0 rgba(255,255,255,0.14);
}
body[data-fidelity="hifi"] .wf-btn:active {
  box-shadow: 0 1px 3px rgba(17,32,24,0.20), inset 0 1px 0 rgba(255,255,255,0.05);
}
body[data-fidelity="hifi"] .wf-icon {
  background: rgba(159,160,133,0.12);
  border-color: rgba(159,160,133,0.55);
}
body[data-fidelity="hifi"] .wf-input { background: #faf8f3; }
body[data-fidelity="hifi"] .wf-header {
  box-shadow: 0 1px 0 rgba(17,32,24,0.06);
  border-bottom: none;
}
body[data-fidelity="hifi"] .wf-pill {
  background: rgba(159,160,133,0.12);
  border-color: rgba(159,160,133,0.35);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.4);
}

/* ───── Density ───── */
body[data-density="compact"] .wf-section { padding: 36px 56px; }
body[data-density="compact"] .wf-section.tight { padding: 28px 56px; }
body[data-density="compact"] .wf-header { padding-top: 16px; padding-bottom: 16px; }
body[data-density="compact"] .wf-footer { padding-top: 28px; padding-bottom: 20px; }
body[data-density="compact"] .wf h1 { font-size: 34px; }
body[data-density="compact"] .wf h2 { font-size: 23px; }

body[data-density="airy"] .wf-section { padding: 88px 64px; }
body[data-density="airy"] .wf-section.tight { padding: 64px 64px; }
body[data-density="airy"] .wf-header { padding: 32px 64px; }
body[data-density="airy"] .wf-footer { padding: 64px 64px 36px; }
body[data-density="airy"] .wf h1 { font-size: 44px; }
body[data-density="airy"] .wf h2 { font-size: 30px; }

/* ───── Mood: EDITORIAL — high contrast, warm-2 sections flip to ink ───── */
body[data-mood="editorial"] .wf-section.warm-2 {
  background: var(--ink);
  color: var(--warm);
}
body[data-mood="editorial"] .wf-section.warm-2 h2,
body[data-mood="editorial"] .wf-section.warm-2 h3,
body[data-mood="editorial"] .wf-section.warm-2 h4 { color: var(--warm); }
body[data-mood="editorial"] .wf-section.warm-2 p { color: rgba(247,244,238,0.78); }
body[data-mood="editorial"] .wf-section.warm-2 p.muted { color: rgba(247,244,238,0.6); }
body[data-mood="editorial"] .wf-section.warm-2 .wf-card {
  background: var(--ink-2);
  border-color: rgba(159,160,133,0.18);
  color: var(--warm);
}
body[data-mood="editorial"] .wf-section.warm-2 .wf-pill {
  background: rgba(159,160,133,0.18);
  border-color: rgba(159,160,133,0.35);
  color: var(--warm);
}
body[data-mood="editorial"] .wf-section.warm-2 .wf-btn {
  background: var(--warm);
  color: var(--forest);
}
body[data-mood="editorial"] .wf-section.warm-2 .wf-divider { background: rgba(159,160,133,0.25); }
body[data-mood="editorial"] .wf-section.warm-2 small { color: rgba(247,244,238,0.5); }

/* ───── Mood: FOREST — sage-forward, olive-tinted warm bg, deeper accents ───── */
body[data-mood="forest"] .wf {
  background: #e8e8db;
}
body[data-mood="forest"] .wf-header { background: #e8e8db; }
body[data-mood="forest"] .wf-section.warm-2 { background: #d8dac3; }
body[data-mood="forest"] .wf-card { background: #faf8f0; border-color: rgba(159,160,133,0.35); }
body[data-mood="forest"] .wf-eyebrow { color: var(--forest); }
body[data-mood="forest"] .wf-sage-line { background: var(--forest); height: 2px; }
body[data-mood="forest"] .wf-icon {
  border-color: var(--forest);
  color: var(--forest);
}
body[data-mood="forest"] .wf-pill {
  background: rgba(17,32,24,0.06);
  border-color: rgba(17,32,24,0.25);
}
body[data-mood="forest"] .wf-tag {
  background: rgba(17,32,24,0.08);
  color: var(--forest);
}
body[data-mood="forest"] .wf-input { background: #faf8f0; border-color: rgba(159,160,133,0.45); }
body[data-mood="forest"] .wf-divider { background: rgba(17,32,24,0.12); }
body[data-mood="forest"] .wf-bignum { color: var(--forest); opacity: 0.75; }

/* ═══════════════════════════════════════════════════════════════════
   DEVICE PREVIEW — data-device on .preview-shell constrains width and
   collapses grids so you can see the site as it'd look on phone/tablet.
   ═══════════════════════════════════════════════════════════════════ */

.preview-shell {
  transition: max-width 0.25s ease, margin 0.25s ease, border-radius 0.25s ease;
}

.preview-shell[data-device="desktop"] {
  max-width: none;
  margin: 0;
}

.preview-shell[data-device="tablet"] {
  max-width: 820px;
  margin: 76px auto 48px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 28px 72px rgba(17,32,24,0.18), 0 0 0 1px rgba(17,32,24,0.08);
}

.preview-shell[data-device="mobile"] {
  max-width: 390px;
  margin: 76px auto 48px;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 28px 72px rgba(17,32,24,0.2), 0 0 0 8px #1a1a1a, 0 0 0 9px rgba(17,32,24,0.15);
}

/* ───── Tablet: gentle adjustments ───── */
.preview-shell[data-device="tablet"] .wf-section,
.preview-shell[data-device="tablet"] .wf-header,
.preview-shell[data-device="tablet"] .wf-footer {
  padding-left: 36px !important;
  padding-right: 36px !important;
}

.preview-shell[data-device="tablet"] .wf-nav { gap: 14px; font-size: 11.5px; }

/* On tablet, 5-col customer grids become 3-col, bento 6-col becomes 3-col */
.preview-shell[data-device="tablet"] .wf div[style*="repeat(5"] {
  grid-template-columns: repeat(3, 1fr) !important;
}

/* ───── Mobile: collapse everything to single column ───── */
.preview-shell[data-device="mobile"] .wf { font-size: 13.5px; }

.preview-shell[data-device="mobile"] .wf-section,
.preview-shell[data-device="mobile"] .wf-header,
.preview-shell[data-device="mobile"] .wf-footer {
  padding-left: 22px !important;
  padding-right: 22px !important;
  padding-top: 36px !important;
  padding-bottom: 36px !important;
}

.preview-shell[data-device="mobile"] .wf-header {
  padding-top: 14px !important;
  padding-bottom: 14px !important;
  flex-wrap: nowrap;
  gap: 10px;
}
.preview-shell[data-device="mobile"] .wf-header .wf-header-cta {
  padding: 8px 14px;
  font-size: 11.5px;
  white-space: nowrap;
}

.preview-shell[data-device="mobile"] .wf-footer {
  padding-top: 32px !important;
  padding-bottom: 22px !important;
}

/* Override the per-section <section style="..."> paddings too */
.preview-shell[data-device="mobile"] section[style*="padding"] {
  padding-left: 22px !important;
  padding-right: 22px !important;
}

/* Hide desktop nav links — show only the logo + CTA */
.preview-shell[data-device="mobile"] .wf-nav a:not(.wf-btn) { display: none; }
.preview-shell[data-device="mobile"] .wf-nav { gap: 0; }

/* Collapse ANY inline grid-template-columns to a single column */
.preview-shell[data-device="mobile"] .wf div[style*="grid-template-columns"],
.preview-shell[data-device="mobile"] .wf section div[style*="grid-template-columns"] {
  grid-template-columns: 1fr !important;
  gap: 16px !important;
}

/* Cancel grid-column spans (bento layout) */
.preview-shell[data-device="mobile"] .wf div[style*="grid-column"],
.preview-shell[data-device="mobile"] .wf div[style*="grid-row"] {
  grid-column: auto !important;
  grid-row: auto !important;
}

/* Footer collapses too (its grid is in CSS, not inline) */
.preview-shell[data-device="mobile"] .wf-footer {
  grid-template-columns: 1fr !important;
  gap: 18px !important;
}

/* Typography shrinks on mobile */
.preview-shell[data-device="mobile"] .wf h1 { font-size: 34px !important; line-height: 1.1; }
.preview-shell[data-device="mobile"] .wf h2 { font-size: 26px !important; }
.preview-shell[data-device="mobile"] .wf h3 { font-size: 18px !important; }
.preview-shell[data-device="mobile"] .wf-bignum { font-size: 48px !important; }

/* Form fields full-width on mobile */
.preview-shell[data-device="mobile"] .wf-field { grid-column: 1 / -1 !important; }

/* Aspect ratios — make hero photos taller, not wider */
.preview-shell[data-device="mobile"] .wf-photo[style*="aspect-ratio: 16"] {
  aspect-ratio: 4 / 3 !important;
}

/* Responsive logo: shrink to mobileHeight when device-preview is mobile */
.preview-shell[data-device="mobile"] .nexly-logo-responsive {
  height: var(--nexly-logo-mh, 64px) !important;
}

/* ───── Hero + trust bar on device-preview mobile ───── */
.preview-shell[data-device="mobile"] .wf-hero {
  grid-template-columns: 1fr;
  min-height: 0;
}
.preview-shell[data-device="mobile"] .wf-hero-text {
  padding: 26px 22px 22px;
  gap: 18px;
}
.preview-shell[data-device="mobile"] .wf-hero-h1 { font-size: 34px; max-width: none; }
.preview-shell[data-device="mobile"] .wf-hero-lead { font-size: 14.5px; }
.preview-shell[data-device="mobile"] .wf-hero-arrow { display: none; }
.preview-shell[data-device="mobile"] .wf-hero-cta-row { gap: 14px; }
.preview-shell[data-device="mobile"] .wf-hero-photo {
  margin: 0 22px 6px;
  min-height: 240px;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  background-size: cover !important;
  background-position: center !important;
}
.preview-shell[data-device="mobile"] .wf-hero-photo.wf-photo--hero {
  background-image: url('assets/hero-living-room.png') !important;
}
.preview-shell[data-device="mobile"] .wf-trustbar {
  grid-template-columns: 1fr;
  gap: 22px;
  padding: 28px 22px;
}
.preview-shell[data-device="mobile"] .wf-trust-item { padding: 0; }
.preview-shell[data-device="mobile"] .wf-trust-item + .wf-trust-item::before { display: none; }

/* How it works on device-preview mobile */
.preview-shell[data-device="mobile"] .wf-how-head { grid-template-columns: 1fr; gap: 14px; margin-bottom: 28px; }
.preview-shell[data-device="mobile"] .wf-how-sub { max-width: none; }
.preview-shell[data-device="mobile"] .wf-how-grid { grid-template-columns: 1fr; gap: 28px; }
.preview-shell[data-device="mobile"] .wf-how-connector { display: none; }
.preview-shell[data-device="mobile"] .wf-how-reassure {
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 24px;
  text-align: left;
}
.preview-shell[data-device="mobile"] .wf-how-reassure-div { display: none; }
.preview-shell[data-device="mobile"] .wf-how-reassure-arrow { display: none; }

/* Photo strip in C — make it portrait-friendly */
.preview-shell[data-device="mobile"] .wf-photo[style*="aspect-ratio: 16 / 7"] {
  aspect-ratio: 4 / 3 !important;
}

/* Hide the 3-pill subtext line in C hero (overflow on mobile) */
.preview-shell[data-device="mobile"] .wf div[style*="space-between"][style*="letter-spacing"] {
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

/* Background frame so the mobile preview has nice surrounding */
body:has(.preview-shell[data-device="mobile"]),
body:has(.preview-shell[data-device="tablet"]) {
  background: linear-gradient(180deg, #ebe6dc 0%, #d9d4c8 100%) !important;
}

/* ───── Services section — responsive ───── */
.preview-shell[data-device="tablet"] .wf-serv-top { grid-template-columns: 1fr; gap: 22px; }
.preview-shell[data-device="tablet"] .wf-serv-title { max-width: none; }
.preview-shell[data-device="tablet"] .wf-serv-grid { grid-template-columns: repeat(2, 1fr); }

.preview-shell[data-device="mobile"] .wf-serv-top { grid-template-columns: 1fr; gap: 18px; }
.preview-shell[data-device="mobile"] .wf-serv-intro { padding: 0; gap: 12px; }
.preview-shell[data-device="mobile"] .wf-serv-title { max-width: none; }
.preview-shell[data-device="mobile"] .wf-serv-feature { grid-template-columns: 1fr; }
.preview-shell[data-device="mobile"] .wf-serv-feature-body { padding: 26px 22px 20px; }
.preview-shell[data-device="mobile"] .wf-serv-feature-photo {
  position: relative;
  aspect-ratio: 16 / 10;
}
.preview-shell[data-device="mobile"] .wf-serv-grid { grid-template-columns: 1fr; gap: 16px !important; }
.preview-shell[data-device="mobile"] .wf-serv-card-desc { margin-bottom: 16px; }
.preview-shell[data-device="mobile"] .wf-serv-strip {
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 24px;
}
.preview-shell[data-device="mobile"] .wf-serv-strip-div { display: none; }
.preview-shell[data-device="mobile"] .wf-serv-strip-arrow { display: none; }

/* ───── Privacy policy page ───── */
.privacy-shell {
  min-height: 100vh;
  height: auto;
  overflow: visible;
  background: var(--warm);
}

.privacy-hero {
  padding: 82px max(56px, 6vw) 72px;
  background:
    radial-gradient(circle at 88% 14%, rgba(159,160,133,0.24), transparent 34%),
    linear-gradient(145deg, #f7f4ee 0%, #eee9dd 100%);
  border-bottom: 1px solid var(--line);
}

.privacy-hero-inner,
.privacy-layout {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.privacy-hero-inner { max-width: 850px; }
.privacy-hero .wf-eyebrow { margin-bottom: 18px; }
.privacy-hero h1 {
  max-width: 780px;
  color: var(--forest);
  text-wrap: balance;
}
.privacy-lead {
  max-width: 760px;
  margin-top: 22px !important;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-2) !important;
}
.privacy-effective {
  display: inline-flex;
  margin-top: 24px;
  padding: 7px 12px;
  border: 1px solid rgba(17,32,24,0.12);
  border-radius: 999px;
  background: rgba(255,255,255,0.56);
  color: var(--muted);
  font-size: 11.5px;
  font-weight: 500;
}

.privacy-main {
  padding: 64px max(56px, 6vw) 80px;
}
.privacy-layout {
  display: grid;
  grid-template-columns: minmax(210px, 0.34fr) minmax(0, 1fr);
  gap: 58px;
  align-items: start;
}
.privacy-aside {
  position: sticky;
  top: 112px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.privacy-summary {
  padding: 24px;
  border-radius: 18px;
  background: var(--forest);
  color: var(--warm);
  box-shadow: 0 12px 32px rgba(17,32,24,0.11);
}
.privacy-summary h2 {
  margin: 0 0 12px;
  color: var(--warm);
  font-size: 17px;
}
.privacy-summary p {
  color: rgba(247,244,238,0.76);
  font-size: 12.5px;
  line-height: 1.65;
}
.privacy-contact-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.52);
  font-size: 12px;
  line-height: 1.65;
}
.privacy-contact-card strong { color: var(--forest); }
.privacy-contact-card a { color: var(--forest); font-weight: 600; }

.privacy-article {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.privacy-section {
  padding: 34px 36px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,0.62);
  box-shadow: 0 8px 24px rgba(37,30,20,0.035);
  scroll-margin-top: 104px;
}
.privacy-section h2 {
  margin: 0 0 18px;
  color: var(--forest);
  font-size: 23px;
}
.privacy-section h3 {
  margin: 22px 0 7px;
  color: var(--ink-2);
  font-size: 15px;
}
.privacy-section p,
.privacy-section li {
  font-size: 13.5px;
  line-height: 1.75;
  color: #514a40;
}
.privacy-section p + p { margin-top: 13px; }
.privacy-section ul {
  margin: 12px 0 0;
  padding-left: 21px;
}
.privacy-section li + li { margin-top: 8px; }
.privacy-section a {
  color: var(--forest);
  font-weight: 600;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.privacy-note {
  margin-top: 18px !important;
  padding: 16px 18px;
  border-left: 3px solid var(--sage);
  border-radius: 0 10px 10px 0;
  background: rgba(159,160,133,0.12);
}
.privacy-data {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 14px;
  background: var(--warm-2);
  font-size: 12.5px;
  line-height: 1.6;
}
.privacy-data strong { color: var(--forest); }
.privacy-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}
.privacy-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--warm);
  text-decoration: none;
}
.privacy-links a::after { content: "↗"; color: var(--sage); }
.privacy-links a:hover { border-color: var(--sage); }

@media (max-width: 840px) {
  .privacy-hero { padding: 58px 36px 52px; }
  .privacy-main { padding: 44px 36px 64px; }
  .privacy-layout { grid-template-columns: 1fr; gap: 28px; }
  .privacy-aside { position: static; }
  .privacy-aside { display: grid; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .privacy-hero { padding: 44px 22px 40px; }
  .privacy-hero h1 { font-size: 36px; }
  .privacy-lead { font-size: 15px; }
  .privacy-main { padding: 32px 22px 52px; }
  .privacy-aside { grid-template-columns: 1fr; }
  .privacy-section { padding: 27px 22px; border-radius: 16px; }
  .privacy-section h2 { font-size: 20px; }
  .privacy-links { grid-template-columns: 1fr; }
}
