/* ==========================================================================
   VIBEBUILT — Swiss International Typographic Style
   vibebuilt.de · unified stylesheet
   Helvetica/sans only · flush-left · generous whitespace · accent sparingly
   ========================================================================== */
/* —— 1. Design tokens —— */
:root {
  --bg: #ffffff;
  --bg-2: #f7f7f7;
  --fg: #111111;
  --fg-2: #333333;
  --fg-3: #666666;
  --line: rgba(17, 17, 17, 0.18);
  --line-2: rgba(17, 17, 17, 0.08);
  --accent: #e30613;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: "SFMono-Regular", Menlo, Consolas, monospace;
  --maxw: 1120px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 2px;
}

/* —— 2. Reset + body base —— */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

html,
body {
  background: var(--bg);
  color: var(--fg);
}

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.005em;
  text-align: left;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

ul,
ol {
  list-style: none;
}

::selection {
  background: var(--accent);
  color: #fff;
}

/* —— 3. Layout —— */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

main {
  display: block;
}

/* —— 4. Typography —— */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.08;
}

h2 {
  font-size: clamp(26px, 3.2vw, 36px);
  line-height: 1.12;
}

h3 {
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.18;
}

.display {
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.05;
  font-size: clamp(32px, 4.5vw, 52px);
}

.h2 {
  font-family: var(--sans);
  font-size: clamp(26px, 3.2vw, 36px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 500;
}

.h3 {
  font-family: var(--sans);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  font-weight: 500;
}

p {
  max-width: 68ch;
}

.lede {
  margin-top: 20px;
  max-width: 58ch;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.55;
  color: var(--fg-2);
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
}

.meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-3);
}

.meta strong {
  color: var(--fg);
  font-weight: 500;
}

.tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-3);
}

.body {
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg-2);
}

.index,
.card-kicker,
.surface-kicker {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
}

/* —— 5. Navigation —— */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--bg);
  border-bottom: 1px solid var(--line-2);
  color: var(--fg);
  transition: transform 0.35s ease;
}

.nav.nav-hidden {
  transform: translateY(-110%);
}

.logo {
  font-family: var(--sans);
  font-size: 17px;
  letter-spacing: -0.04em;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
}

.logo span {
  font-weight: 500;
  letter-spacing: 0.02em;
  font-size: 10px;
  margin-left: 4px;
  color: var(--fg-2);
  vertical-align: middle;
}

.nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav ul a {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-2);
  transition: color 0.2s;
}

.nav ul a:hover {
  color: var(--fg);
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--fg);
  border-radius: var(--radius);
  background: var(--fg);
  color: var(--bg);
  white-space: nowrap;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.contact-pill:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* —— 6. Buttons —— */
.btn,
.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: var(--radius);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--fg);
  background: transparent;
  color: var(--fg);
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
}

.btn.primary,
.btn-primary {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}

.btn.primary:hover,
.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.btn.ghost,
.btn-ghost {
  background: transparent;
  color: var(--fg);
}

.btn.ghost:hover,
.btn-ghost:hover {
  background: var(--fg);
  color: var(--bg);
}

.btn[disabled] {
  opacity: 0.65;
  cursor: wait;
}

.btn .arrow {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* —— 7. Hero landing —— */
.hero {
  padding: clamp(120px, 16vw, 148px) 0 clamp(48px, 7vw, 80px);
}

.breadcrumbs {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 24px;
}

.breadcrumbs a:hover {
  color: var(--fg);
}

.hero-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.proof-strip {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line-2);
}

.proof-strip span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-3);
}

.surface {
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid var(--line);
  background: var(--bg-2);
  border-radius: var(--radius);
}

.surface p {
  margin-top: 12px;
  color: var(--fg-2);
}

/* —— 8. Hero home —— */
.hero-minimal {
  padding-top: clamp(96px, 14vw, 132px);
  padding-bottom: clamp(40px, 6vw, 64px);
}

.hero-kicker {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin: 0 0 18px;
}

.hero-title,
.hero-title-solo {
  max-width: 22em;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 500;
  margin: 0 0 20px;
}

.hero-lede {
  max-width: 52ch;
  margin: 0 0 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 24px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-3);
}

.proof-row-minimal {
  padding-top: 20px;
  border-top: 1px solid var(--line-2);
}

.proof-row-minimal strong {
  color: var(--fg);
  font-weight: 500;
}

/* —— 9. Sections —— */
.section {
  padding: clamp(64px, 8vw, 96px) 0;
}

.section-alt {
  background: var(--bg-2);
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
}

.section-tight {
  padding: clamp(48px, 6vw, 72px) 0;
}

.section-head {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 20px;
  align-items: start;
  margin-bottom: 32px;
}

.section-head p {
  margin-top: 10px;
  max-width: 64ch;
  color: var(--fg-2);
}

.section-head.compact {
  margin-bottom: 24px;
}

.section-split {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.sec-head-minimal {
  margin-bottom: clamp(24px, 4vw, 36px);
  max-width: 640px;
}

.sec-head-minimal .h2 {
  margin: 0;
}

.sec-sub {
  margin: 10px 0 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--fg-3);
  max-width: 56ch;
}

/* —— 10. Cards —— */
.grid {
  display: grid;
  gap: 20px;
}

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

.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.result,
.hub-card,
.related-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--bg);
  border-radius: var(--radius);
  min-height: 100%;
  transition: border-color 0.25s, transform 0.25s;
}

.card h3,
.result h3,
.hub-card strong,
.related-card strong {
  font-family: var(--sans);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.card p,
.result p,
.hub-card p,
.related-card p {
  color: var(--fg-2);
  font-size: 15px;
  line-height: 1.55;
}

.hub-card:hover,
.related-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.go {
  margin-top: auto;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-3);
}

.hub-group + .hub-group {
  margin-top: 48px;
}

/* —— 11. Homepage blocks —— */
.specialty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-2);
  border: 1px solid var(--line-2);
}

.specialty-card {
  background: var(--bg);
  padding: clamp(28px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 280px;
  transition: background 0.25s;
}

.specialty-card:hover {
  background: var(--bg-2);
}

.specialty-card.is-featured {
  background: var(--fg);
  color: var(--bg);
}

.specialty-card.is-featured p,
.specialty-card.is-featured .specialty-num {
  color: rgba(255, 255, 255, 0.65);
}

.specialty-card.is-featured h3 {
  color: #fff;
}

.specialty-card.is-featured .specialty-go {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}

.specialty-num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--fg-3);
}

.specialty-card h3 {
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.15;
  font-weight: 500;
}

.specialty-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-3);
  flex: 1;
}

.specialty-go {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding-top: 14px;
  border-top: 1px solid var(--line-2);
}

.region-band {
  background: var(--bg-2);
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1px;
  background: var(--line-2);
  border: 1px solid var(--line-2);
}

.region-card {
  grid-column: span 4;
  background: var(--bg);
  padding: clamp(24px, 3.5vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.25s;
}

.region-card:hover {
  background: var(--bg-2);
}

.region-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.region-card h3 {
  font-size: clamp(20px, 2.2vw, 24px);
  line-height: 1.15;
  font-weight: 500;
}

.region-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-3);
  flex: 1;
}

.region-link {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.region-link::after {
  content: "→";
  transition: transform 0.2s;
}

.region-card:hover .region-link::after {
  transform: translateX(3px);
}

.about-compact {
  display: grid;
  grid-template-columns: minmax(200px, 260px) 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}

.about-compact-media img {
  width: 100%;
  display: block;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
}

.about-compact-text .body {
  margin: 0 0 14px;
}

.about-links a {
  color: var(--fg);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.about-compact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line-2);
}

.pkg {
  padding: clamp(28px, 3vw, 40px);
  border-right: 1px solid var(--line-2);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 380px;
  position: relative;
  background: var(--bg);
  transition: background 0.25s;
}

.pkg:last-child {
  border-right: 0;
}

.pkg:hover {
  background: var(--bg-2);
}

.pkg.featured {
  background: var(--bg-2);
}

.pkg .sub {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--fg-3);
  text-transform: uppercase;
}

.pkg .name {
  font-family: var(--sans);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
}

.pkg .price {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--fg);
  margin-top: 4px;
}

.pkg .price .from {
  color: var(--fg-3);
  margin-right: 6px;
}

.pkg ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
  flex: 1;
}

.pkg ul li {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 10px;
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.5;
  padding: 8px 0;
  border-top: 1px solid var(--line-2);
}

.pkg ul li::before {
  content: "+";
  font-family: var(--mono);
  color: var(--accent);
  font-size: 14px;
}

.pkg .cta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 0;
  border-top: 1px solid var(--fg);
  color: var(--fg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: padding-left 0.25s;
}

.pkg .cta:hover {
  padding-left: 6px;
}

.pkg .badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--accent);
  padding: 5px 8px;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
}

.pkg-note {
  margin-top: 16px;
  color: var(--fg-3);
}

/* —— 12. FAQ —— */
.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line-2);
}

.faq-item {
  border-bottom: 1px solid var(--line-2);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

/* Landing: plain summary */
.faq-list:not(.faq-list-compact) .faq-item summary {
  padding: 20px 0;
  font-family: var(--sans);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.faq-list:not(.faq-list-compact) .faq-item > div {
  padding-bottom: 20px;
  max-width: 68ch;
}

.faq-list:not(.faq-list-compact) .faq-item p {
  color: var(--fg-2);
  line-height: 1.6;
}

/* Homepage: .faq-q + .plus */
.faq-q {
  width: 100%;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  text-align: left;
  font-family: var(--sans);
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--fg);
  transition: color 0.2s;
}

.faq-q:hover {
  color: var(--fg-2);
}

.faq-q .plus {
  flex-shrink: 0;
  font-family: var(--mono);
  font-size: 18px;
  font-weight: 400;
  color: var(--fg-3);
  transition: transform 0.3s, color 0.3s;
}

.faq-item[open] .faq-q .plus {
  transform: rotate(45deg);
  color: var(--accent);
}

.faq-a {
  padding: 0 0 20px;
  color: var(--fg-2);
  font-size: 15px;
  line-height: 1.65;
  max-width: 64ch;
}

.faq-list-compact .faq-q {
  font-size: 16px;
  padding: 16px 0;
}

.faq-list-compact .faq-a {
  font-size: 15px;
  padding-bottom: 16px;
}

/* —— 13. Contact —— */
.contact-section {
  background: var(--bg-2);
}

.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: start;
}

.contact-channels {
  display: flex;
  flex-direction: column;
}

.channel {
  padding: 20px 0;
  border-top: 1px solid var(--line-2);
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 14px;
  align-items: center;
}

.channel:last-child {
  border-bottom: 1px solid var(--line-2);
}

.channel .k {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--fg-3);
  text-transform: uppercase;
}

.channel .v {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.channel .go {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--fg-3);
  text-transform: uppercase;
  margin-top: 0;
}

.channel:hover .go {
  color: var(--accent);
}

form.lead {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line-2);
  background: var(--bg);
  border-radius: var(--radius);
}

form.lead .field {
  display: flex;
  flex-direction: column;
  padding: 18px;
  border-bottom: 1px solid var(--line-2);
  position: relative;
}

form.lead .field.full {
  grid-column: span 2;
}

form.lead .field:nth-child(odd):not(.full) {
  border-right: 1px solid var(--line-2);
}

form.lead .field label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--fg-3);
  text-transform: uppercase;
  margin-bottom: 6px;
}

form.lead .field input,
form.lead .field textarea,
form.lead .field select {
  font: inherit;
  color: var(--fg);
  background: transparent;
  border: 0;
  outline: none;
  padding: 4px 0;
  font-size: 16px;
}

form.lead .field textarea {
  resize: vertical;
  min-height: 96px;
}

form.lead .field:focus-within {
  background: var(--bg-2);
}

form.lead .submit-row {
  grid-column: span 2;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

form.lead .submit-row .small {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--fg-3);
  text-transform: uppercase;
}

.privacy-note {
  margin-top: 8px;
  color: var(--fg-3);
  font-size: 13px;
  line-height: 1.55;
  max-width: 48ch;
}

.privacy-note a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-status {
  min-height: 1.5em;
  margin-top: 8px;
  font-size: 14px;
  color: var(--fg-2);
}

.form-status.is-success {
  color: #1a6b3a;
}

.form-status.is-error {
  color: var(--accent);
}

.form-status.is-loading {
  color: var(--fg-3);
}

/* —— 14. Footer —— */
footer,
.page-footer {
  border-top: 1px solid var(--line-2);
  padding: 40px 0 48px;
  background: var(--bg);
}

footer {
  padding-inline: var(--gutter);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 28px;
}

footer h3,
.page-footer h3 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg);
  font-weight: 500;
  margin-bottom: 14px;
}

footer p,
.page-footer p,
footer li,
.page-footer li {
  color: var(--fg-2);
  font-size: 13px;
  line-height: 1.55;
}

footer ul,
.page-footer ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

footer a:hover,
.page-footer a:hover {
  color: var(--fg);
}

.wordmark,
.brand-footer {
  font-family: var(--sans);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 10px;
}

.tagline {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--fg-3);
  max-width: 32ch;
  line-height: 1.55;
}

/* —— 15. Sticky CTA —— */
.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  display: flex;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.sticky-cta.visible {
  opacity: 1;
  pointer-events: auto;
}

.sticky-cta a {
  padding: 12px 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  background: var(--fg);
  color: var(--bg);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--fg);
  transition: transform 0.25s, background 0.25s, border-color 0.25s;
}

.sticky-cta a:hover {
  transform: translateY(-2px);
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.sticky-cta a.wa {
  background: #1a7a3a;
  border-color: #1a7a3a;
  color: #fff;
}

.sticky-cta a.wa:hover {
  background: #156530;
  border-color: #156530;
}

/* —— 16. SEO strip —— */
.seo-entry-strip {
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
  background: var(--bg-2);
}

.seo-entry-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
}

.seo-entry-grid .label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-right: 4px;
}

.seo-entry-grid a {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-2);
  padding: 7px 12px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  background: var(--bg);
  transition: border-color 0.2s, color 0.2s;
}

.seo-entry-grid a:hover {
  border-color: var(--accent);
  color: var(--fg);
}

/* —— 17. Ratgeber article (scoped) —— */
.article-page .article-hero {
  padding-bottom: 24px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  margin: 14px 0 18px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-3);
}

.article-body {
  padding-bottom: 48px;
}

.article-prose {
  max-width: 720px;
  margin: 0 auto;
}

.article-prose .article-lead {
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.55;
  color: var(--fg-2);
  margin-bottom: 28px;
}

.article-prose h2 {
  font-size: clamp(22px, 2.6vw, 28px);
  margin: 36px 0 14px;
}

.article-prose h3 {
  font-size: clamp(18px, 2vw, 20px);
  margin: 24px 0 10px;
  color: var(--fg-2);
}

.article-prose p {
  margin-bottom: 14px;
  color: var(--fg-2);
  line-height: 1.65;
}

.article-steps {
  margin: 18px 0 24px;
  display: grid;
  gap: 12px;
}

.article-steps li {
  padding: 18px 20px;
  border: 1px solid var(--line-2);
  background: var(--bg-2);
  border-radius: var(--radius);
}

.article-steps strong {
  display: block;
  margin-bottom: 6px;
  color: var(--fg);
  font-weight: 500;
}

.article-steps p {
  margin: 0;
}

.article-list {
  margin: 10px 0 20px;
  padding-left: 20px;
  color: var(--fg-2);
  list-style: disc;
}

.article-list li {
  margin-bottom: 6px;
}

.article-table-wrap {
  overflow-x: auto;
  margin: 14px 0 24px;
}

.article-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.article-table th,
.article-table td {
  border: 1px solid var(--line-2);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}

.article-table th {
  background: var(--bg-2);
  font-weight: 500;
  color: var(--fg);
}

.article-cta {
  margin: 32px 0;
}

/* —— 18. Lists, process, stats —— */
.mini-list,
.check-list {
  list-style: none;
}

.mini-list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mini-list li,
.check-list li {
  position: relative;
  padding-left: 16px;
  color: var(--fg-2);
  font-size: 15px;
  line-height: 1.55;
}

.mini-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: var(--radius);
  background: var(--accent);
}

.process-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-list article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--line-2);
}

.process-list article:last-child {
  border-bottom: 1px solid var(--line-2);
}

.process-list strong {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--fg-3);
}

.process-list p {
  margin-top: 6px;
  color: var(--fg-2);
  font-size: 15px;
  line-height: 1.55;
}

.stats-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.stat-card {
  padding: 14px;
  border: 1px solid var(--line-2);
  background: var(--bg);
  border-radius: var(--radius);
}

.stat-card span {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-3);
}

.stat-card strong {
  display: block;
  margin-top: 6px;
  font-family: var(--sans);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* —— CTA panel (landing) —— */
.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: clamp(28px, 4vw, 40px);
  border: 1px solid var(--line);
  background: var(--bg-2);
  border-radius: var(--radius);
  align-items: start;
}

.cta-panel p {
  margin-top: 10px;
  color: var(--fg-2);
  max-width: 56ch;
}

.cta-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 220px;
}

/* —— Legal copy —— */
.legal-copy {
  display: grid;
  gap: 28px;
}

.legal-block {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line-2);
}

.legal-block:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.legal-block h2 {
  margin-bottom: 14px;
}

.legal-copy p,
.legal-copy li {
  max-width: 76ch;
  color: var(--fg-2);
}

.legal-copy a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-copy p + p,
.legal-copy ul,
.legal-copy ol {
  margin-top: 10px;
}

.legal-copy ul,
.legal-copy ol {
  padding-left: 20px;
  list-style: disc;
}

.legal-meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-3);
}

/* —— 19. Utilities —— */
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

html.js [data-reveal],
html.js [data-reveal-item] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1);
}

html.js [data-reveal].is-visible,
html.js [data-reveal-item].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.magnet {
  display: inline-flex;
}

.accent {
  color: var(--accent);
}

/* —— 20. Responsive —— */
@media (max-width: 900px) {
  .nav ul {
    display: none;
  }

  .hero-grid,
  .section-split,
  .cta-panel,
  .contact-grid,
  .about-compact {
    grid-template-columns: 1fr;
  }

  .cards-3,
  .cards-2,
  .specialty-grid {
    grid-template-columns: 1fr;
  }

  .cards-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .packages {
    grid-template-columns: 1fr;
  }

  .pkg {
    border-right: 0;
    border-bottom: 1px solid var(--line-2);
    min-height: 0;
  }

  .pkg:last-child {
    border-bottom: 0;
  }

  .region-card {
    grid-column: span 6;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-stack {
    min-width: 0;
    width: 100%;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 720px) {
  .cards-4,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .region-card {
    grid-column: span 12;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  form.lead {
    grid-template-columns: 1fr;
  }

  form.lead .field.full,
  form.lead .field {
    grid-column: span 1;
  }

  form.lead .field:nth-child(odd):not(.full) {
    border-right: 0;
  }

  form.lead .submit-row {
    grid-column: span 1;
    flex-direction: column;
    align-items: flex-start;
  }

  .channel {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .channel .go {
    justify-self: start;
  }

  .hero-title-solo {
    max-width: none;
  }

  .about-compact-media {
    max-width: 220px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }

  .sticky-cta a {
    padding: 10px 12px;
    font-size: 9px;
  }
}

/* ==========================================================================
   21. Homepage / onepager modifiers
   ========================================================================== */
.page-home section,
.onepager section {
  padding: clamp(48px, 6vw, 80px) 0;
}

.page-home section.section-tight,
.onepager section.section-tight {
  padding: clamp(36px, 5vw, 64px) 0;
}

.page-home .region-band,
.onepager .region-band {
  padding: clamp(36px, 5vw, 64px) 0;
}

.page-home .hero-minimal,
.onepager .hero-minimal {
  padding-top: clamp(88px, 12vw, 120px);
  padding-bottom: clamp(36px, 5vw, 56px);
}

.page-home .specialty-card,
.onepager .specialty-card {
  min-height: 0;
  padding: clamp(22px, 3vw, 32px);
}

.page-home .specialty-card h3,
.onepager .specialty-card h3 {
  font-size: clamp(18px, 2vw, 22px);
}

.page-home .region-card,
.onepager .region-card {
  padding: clamp(22px, 3vw, 28px);
}

.page-home .packages-compact .pkg,
.onepager .packages-compact .pkg {
  padding: clamp(22px, 3vw, 28px);
  min-height: 0;
}

.page-home .about-section,
.onepager .about-section {
  background: var(--bg-2);
}

.page-home .contact-section,
.onepager .contact-section {
  padding-bottom: 80px;
}

.page-home .seo-entry-strip,
.onepager .seo-entry-strip {
  padding: 28px 0;
}

.page-home .faq-list-compact .faq-q,
.onepager .faq-list-compact .faq-q {
  font-size: 15px;
  padding: 14px 0;
}

.page-home .faq-list-compact .faq-a,
.onepager .faq-list-compact .faq-a {
  font-size: 14px;
  padding-bottom: 14px;
}

.page-home .sticky-cta,
.onepager .sticky-cta {
  box-shadow: none;
}

.page-home .nav,
.onepager .nav {
  padding-block: 14px;
}

.page-home .proof-row-minimal,
.onepager .proof-row-minimal {
  gap: 16px 20px;
}

.page-home .sec-head-minimal,
.onepager .sec-head-minimal {
  margin-bottom: clamp(20px, 3vw, 28px);
}

.page-home .pkg-note,
.onepager .pkg-note {
  margin-top: 14px;
  font-size: 13px;
}
