:root {
  /* refined beige — slightly warmer, softer than #fbf8f0 */
  --beige: #faf6ea;
  --beige-2: #f3ecd9;
  --beige-3: #e8dfc6;
  /* refined green — premium forest tone, still close to #00bf63 */
  --green: #00a65a;
  --green-ink: #0a3a22;
  --green-soft: #d7ecd9;
  /* ink */
  --ink: #0d1411;
  --ink-2: #3a4540;
  --ink-3: #6b756f;
  --ink-4: #a6ada7;

  --border: rgba(13, 20, 17, 0.12);
  --border-soft: rgba(13, 20, 17, 0.06);

  --font-sans: "Geist", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --font-serif: "Instrument Serif", ui-serif, Georgia, serif;

  --radius: 14px;
  --radius-sm: 8px;

  --max: 1200px;
}

* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--beige);
  color: var(--ink);
  font-family: var(--font-sans);
  font-feature-settings: "ss01", "ss02", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  background-image:
    radial-gradient(ellipse 1200px 600px at 50% -10%, rgba(0, 166, 90, 0.06), transparent 60%),
    radial-gradient(ellipse 800px 400px at 90% 5%, rgba(214, 196, 140, 0.25), transparent 70%);
}
a { color: inherit; text-decoration: none; }
em { font-style: italic; font-family: var(--font-serif); font-weight: 400; letter-spacing: -0.01em; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
.mono { font-family: var(--font-mono); font-weight: 500; letter-spacing: 0.02em; }
.tag {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 24px;
}
.tag--light { color: rgba(255,255,255,0.7); }
.link { color: var(--ink); border-bottom: 1px solid var(--border); }
.link:hover { border-color: var(--ink); }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background-color 0.25s ease, backdrop-filter 0.25s ease, padding 0.25s ease, border-color 0.25s ease;
  /* Promote to its own composite layer so the blur layer is ready before
     the user scrolls — avoids the one-frame stutter on iOS/Android when
     backdrop-filter activates for the first time. */
  will-change: backdrop-filter, background-color;
  transform: translateZ(0);
  -webkit-backdrop-filter: blur(0px);
  backdrop-filter: blur(0px);
}
.nav--scrolled {
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  background: rgba(250, 246, 234, 0.78);
  border-bottom: 1px solid var(--border-soft);
  padding: 10px 0;
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav__links {
  display: flex; gap: 28px;
  list-style: none; margin: 0; padding: 0;
  font-size: 14px; color: var(--ink-2);
}
.nav__links a:hover { color: var(--ink); }
.nav__cta { display: flex; gap: 8px; align-items: center; }

/* ===== MOBILE MENU (burger + slide-in panel) ===== */
.nav__burger { display: none; position: relative; width: 42px; height: 42px; padding: 0; margin: 0; background: transparent; border: 0; cursor: pointer; -webkit-tap-highlight-color: transparent; }
.nav__burger span { position: absolute; right: 10px; height: 2px; border-radius: 2px; background: var(--ink);
  transition: transform .28s ease, width .28s ease, top .28s ease, opacity .2s ease; }
.nav__burger span:nth-child(1) { top: 16px; width: 22px; }
.nav__burger span:nth-child(2) { top: 24px; width: 14px; }
.nav__burger span:nth-child(3) { display: none; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { top: 20px; width: 22px; transform: rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { top: 20px; width: 22px; transform: rotate(-45deg); }
body.page--dark .nav__burger span { background: var(--beige); }

.logo { display: inline-flex; align-items: center; font-family: var(--font-sans); font-weight: 600; font-size: 22px; letter-spacing: -0.02em; color: var(--ink); text-decoration: none; }
.logo:hover { color: var(--ink); }
.badge-free { display: inline-flex; align-items: center; vertical-align: middle; margin-left: 7px; padding: 2px 8px; border-radius: 999px; background: var(--green-soft, #d7ecd9); color: var(--green-ink, #0a3a22); font-family: var(--font-sans); font-size: 11px; font-weight: 600; line-height: 1.5; letter-spacing: 0.01em; }
.footer__col-h .badge-free { position: relative; top: -1px; }
.mobmenu { position: fixed; inset: 0; z-index: 300; visibility: hidden; opacity: 0;
  transition: opacity .3s ease, visibility .3s ease; }
.mobmenu[data-open="true"] { visibility: visible; opacity: 1; }
.mobmenu__scrim { position: absolute; inset: 0; background: rgba(13,20,17,.42); }
.mobmenu__panel { position: absolute; top: 0; right: 0; height: 100%; width: 100%;
  background: var(--beige);
  display: flex; flex-direction: column; padding: 13px 32px 32px; overflow-y: auto;
  scrollbar-width: none;
  transform: translateX(100%); transition: transform .34s cubic-bezier(.22,.61,.36,1); }
.mobmenu__panel::-webkit-scrollbar { display: none; }
@media (max-width: 600px) { .mobmenu__panel { padding: 13px 20px 32px; } }
.mobmenu[data-open="true"] .mobmenu__panel { transform: translateX(0); }
.mobmenu__head { display: flex; align-items: center; justify-content: space-between; min-height: 42px; margin-bottom: 0; }
.mobmenu__close { position: relative; width: 42px; height: 42px; margin: 0; border: 0; background: transparent;
  font-size: 0; line-height: 1; color: transparent; cursor: pointer; -webkit-tap-highlight-color: transparent; }
.mobmenu__close::before, .mobmenu__close::after { content: ""; position: absolute; left: 50%; top: 50%;
  width: 22px; height: 2px; border-radius: 2px; background: var(--ink); }
.mobmenu__close::before { transform: translate(-50%, -50%) rotate(45deg); }
.mobmenu__close::after { transform: translate(-50%, -50%) rotate(-45deg); }
.mobmenu__links { display: flex; flex-direction: column; }
.mobmenu__cols { flex: 1; display: flex; flex-direction: column; justify-content: space-evenly; gap: 0; margin-top: 0; }
.mobmenu__cols .footer__col-h { font-size: 22.99px; }
.mobmenu__cols .footer__legal a { font-size: 21px; }
.mobmenu__cols .footer__legal { gap: 16px; }
.mobmenu__links a { font-size: 21px; font-weight: 500; letter-spacing: -0.02em; color: var(--ink);
  padding: 15px 0; border-bottom: 1px solid var(--border-soft); }
.mobmenu__links a:hover { color: var(--ink); }
.mobmenu__foot { margin-top: 0; padding-top: 0; display: flex; flex-direction: column; gap: 0; }
.mobmenu__foot .footer__contact { font-size: 21.6px; color: var(--ink-2); padding: 15px 0; border-bottom: 1px solid var(--border-soft); }
.mobmenu__ctas { display: flex; flex-direction: column; gap: 10px; margin-top: 10px; }
.mobmenu__ctas .btn { width: 100%; justify-content: center; padding: 14px 22px; font-size: 15px; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px;
  font-size: 14px; font-weight: 500;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.18s ease;
  font-family: inherit;
  white-space: nowrap;
}
.btn--lg { padding: 14px 22px; font-size: 15px; }
.btn--primary {
  background: var(--ink);
  color: var(--beige);
  border-color: var(--ink);
  box-shadow: 0 1px 0 rgba(255,255,255,0.12) inset, 0 6px 18px -8px rgba(0,0,0,0.4);
}
.btn--primary:hover {
  background: var(--green-ink);
  border-color: var(--green-ink);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}
.btn--ghost:hover { border-color: var(--ink); background: rgba(13,20,17,0.03); }
.btn__arrow { transition: transform 0.2s; }
.btn:hover .btn__arrow { transform: translateX(3px); }
.btn__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(0,166,90,0.2);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* ============ HERO SHARED ============ */
.hero {
  position: relative;
  padding: 121px 32px 100px;
  overflow: hidden;
  height: 100vh;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero__inner {
  max-width: 900px; margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
  width: 100%;
}
.dotgrid {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(13,20,17,0.12) 1px, transparent 0);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 75%);
  z-index: 0;
  pointer-events: none;
}
.dotgrid--faint { opacity: 0.5; }
.dotgrid--cta {
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.09) 1px, transparent 0);
  mask-image: radial-gradient(ellipse 100% 100% at 50% 0%, black 20%, transparent 80%);
}
.hero__glow {
  position: absolute;
  left: 50%; top: 20%;
  transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(0,166,90,0.12), transparent 60%);
  filter: blur(40px);
  z-index: 0;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 6px 6px 12px;
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 28px;
  color: var(--ink-2);
  backdrop-filter: blur(8px);
}
.eyebrow:hover { border-color: var(--ink); }
.eyebrow__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(0,166,90,0.18);
}
.eyebrow__label {
  background: var(--ink);
  color: var(--beige);
  padding: 2px 8px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.eyebrow__text { color: var(--ink); font-weight: 500; }
.eyebrow--static { display: inline-flex; align-items: center; gap: 10px; padding: 0; background: transparent; border: none; margin-bottom: 24px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; color: var(--ink-3); text-transform: uppercase; }

.hero__h1 {
  font-size: clamp(34px, 8.16vw, 96px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  font-weight: 500;
  margin: 0 0 28px;
  text-wrap: balance;
}
.hero__h1 .hero__h1__line2 {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.035em;
  color: var(--ink-2);
}
.hero__sub {
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 580px;
  margin: 0 auto 36px;
  text-wrap: pretty;
}
.hero__ctas {
  display: flex; gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}
.hero__meta {
  display: flex; justify-content: center; gap: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
}
.hero__meta .sep { color: var(--ink-4); }
.dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; margin-right: 6px; vertical-align: middle; }
.dot--green { background: var(--green); box-shadow: 0 0 0 2px rgba(0,166,90,0.2); }

/* ============ HERO PROOF STRIP ============ */
.hero__proof {
  display: none;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 0 64px;
}
.hero__proof__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}
.hero__proof__label {
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--ink-3);
  text-transform: uppercase;
}
.hero__proof__value {
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.hero--split .hero__proof,
.hero--editorial .hero__proof { max-width: 560px; margin: 0; }
.hero--split .hero__proof__col,
.hero--editorial .hero__proof__col { text-align: left; }

/* ============ HERO SPLIT ============ */
.hero--split { padding: 140px 32px 80px; }
.hero__inner--split {
  max-width: 1280px;
  text-align: left;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero__h1--left { font-size: clamp(40px, 5.5vw, 68px); }
.hero__sub--left { margin: 0 0 32px; max-width: 480px; }
.hero__ctas--left { justify-content: flex-start; }
.hero__right { position: relative; }

/* Preview card */
.preview { position: relative; }
.preview__shadow {
  position: absolute; inset: 20px 10px -10px 10px;
  background: radial-gradient(ellipse, rgba(13,20,17,0.15), transparent 70%);
  filter: blur(20px);
  z-index: 0;
}
.preview__window {
  position: relative;
  background: #f0e9d6;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px -20px rgba(13,20,17,0.25), 0 0 0 1px rgba(255,255,255,0.4) inset;
  overflow: hidden;
  transform: rotate(-0.6deg);
}
.preview__chrome {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  background: #e8dfc6;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.preview__dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.preview__url {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(0,0,0,0.5);
  background: rgba(255,255,255,0.5);
  padding: 2px 10px;
  border-radius: 4px;
}
.preview__body { padding: 20px 24px 28px; background: #f0e9d6; color: #1a3d2e; }
.preview__nav { display: flex; justify-content: space-between; align-items: center; font-size: 12px; }
.preview__logo { font-family: var(--font-serif); font-style: italic; font-size: 15px; display: flex; gap: 8px; align-items: center; }
.preview__logomark { width: 12px; height: 12px; background: #c9a96e; border-radius: 50%; display: inline-block; }
.preview__navlinks { display: flex; gap: 12px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; color: rgba(26,61,46,0.6); text-transform: uppercase; }
.preview__h {
  font-family: var(--font-serif); font-style: italic;
  font-size: 34px;
  line-height: 1.05;
  margin: 24px 0 20px;
  letter-spacing: -0.02em;
}
.preview__row { display: flex; gap: 8px; }
.preview__pill {
  padding: 6px 14px;
  border: 1px solid #1a3d2e;
  font-size: 11px;
  border-radius: 999px;
  font-family: var(--font-mono);
}
.preview__pill--dark { background: #1a3d2e; color: #f0e9d6; }
.preview__grid { margin-top: 20px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; height: 60px; }
.preview__tile { background: #c9a96e; border-radius: 3px; }
.preview__tile--alt { background: #1a3d2e; opacity: 0.8; }
.preview__badge {
  position: absolute;
  right: -24px; bottom: -20px;
  background: var(--ink);
  color: var(--beige);
  padding: 12px 16px;
  border-radius: 10px;
  display: flex; flex-direction: column; gap: 2px;
  border: 1px solid var(--ink);
  box-shadow: 0 12px 32px -10px rgba(0,0,0,0.4);
  transform: rotate(2deg);
  z-index: 2;
}
.preview__badge .mono { font-size: 11px; letter-spacing: 0.1em; }
.preview__badge__sub { font-size: 9px; color: rgba(255,255,255,0.55); letter-spacing: 0.04em; text-transform: uppercase; font-weight: 400; max-width: 160px; }

/* ============ HERO EDITORIAL ============ */
.hero--editorial { padding: 140px 32px 80px; }
.hero__inner--editorial { max-width: 1200px; text-align: left; }
.editorial__meta { display: flex; justify-content: space-between; font-size: 12px; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.1em; padding-bottom: 24px; border-bottom: 1px solid var(--border); margin-bottom: 60px; }
.hero__h1--editorial {
  font-family: var(--font-serif);
  font-size: clamp(52px, 9vw, 124px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.98;
  margin: 0 0 64px;
}
.hero__h1--editorial em { font-family: var(--font-serif); font-style: italic; }
.underline-green {
  position: relative;
  background-image: linear-gradient(var(--green), var(--green));
  background-repeat: no-repeat;
  background-size: 100% 8px;
  background-position: 0 92%;
}
.editorial__bottom {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: end;
  border-top: 1px solid var(--border);
  padding-top: 32px;
}
.hero__sub--editorial { text-align: left; margin: 0; max-width: none; }
.hero__ctas--editorial { justify-content: flex-end; margin: 0; }

/* ============ MARQUEE ============ */
.marquee {
  padding: 60px 0 80px;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  overflow: hidden;
  background: linear-gradient(to bottom, transparent, rgba(232,223,198,0.25));
}
.marquee__label {
  text-align: center;
  font-size: 16px;
  color: var(--ink-1, #1a1916);
  margin-bottom: 36px;
  letter-spacing: 0.06em;
  text-transform: none;
}
.marquee__track {
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  overflow: hidden;
}
.marquee__row {
  display: flex;
  align-items: center;
  gap: 110px;
  animation: marquee 50s linear infinite;
  width: max-content;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.clientlogo {
  display: flex; align-items: center; gap: 12px;
  color: var(--ink-2);
  opacity: 0.72;
  font-size: 20px;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.clientlogo:hover { opacity: 1; }

/* Real client logos: SVG fetched and re-colored to currentColor so all
   logos render in one unified dark-grey ink. Per-logo box widths set
   the proportional width via natural aspect ratio. */
.clientlogo--inline {
  color: #3d3a33;
  opacity: 0.85;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s, color 0.2s;
}
.clientlogo--inline:hover { opacity: 1; color: #1f1d18; }
.clientlogo--inline[data-logo="imovel"]       { height: 38px; width: calc(38px * (1000 / 350)); }
.clientlogo--inline[data-logo="thp"]          { height: 72px; width: 72px; }
.clientlogo--inline[data-logo="younity"]      { height: 30px; width: calc(30px * (94 / 29)); }
.clientlogo--inline[data-logo="findyourflow"] { height: 30px; width: calc(30px * (2340 / 443)); }
.clientlogo--inline[data-logo="bischoff"]     { height: 28px; width: calc(28px * (1247 / 313)); }
.clientlogo--inline[data-logo="footvolley"]   { height: 64px; width: calc(64px * (1440 / 2520)); }
.clientlogo--inline[data-logo="belegaerzte"]  { height: 48px; width: calc(48px * (300 / 150)); }
.clientlogo--inline[data-logo="safecore"]     { height: 48px; width: calc(48px * (450 / 173)); }
.clientlogo--inline[data-logo="athlon"]       { height: 48px; width: calc(48px * (408 / 152)); }

/* ============ SECTION HEADS ============ */
.section__head { max-width: 720px; margin-bottom: 64px; }
.section__h2 {
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 500;
  margin: 0 0 20px;
  text-wrap: balance;
}
.section__sub { font-size: 18px; color: var(--ink-2); line-height: 1.5; max-width: 600px; margin: 0; }
.section__h3 {
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: var(--ink-2);
  margin: 0 0 24px;
  text-wrap: balance;
}

/* ============ PITCH ============ */
.pitch { padding: 120px 0; }
.pitch__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pcard {
  background: rgba(255,255,255,0.4);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  min-height: 280px;
  transition: all 0.25s;
}
.pcard:hover { background: rgba(255,255,255,0.7); border-color: var(--ink-3); transform: translateY(-2px); }
.pcard--hi {
  background: var(--ink);
  color: var(--beige);
  border-color: var(--ink);
  position: relative;
  overflow: hidden;
}
.pcard--hi::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 0%, rgba(0,166,90,0.35), transparent 60%);
  pointer-events: none;
}
.pcard--hi:hover { background: var(--ink); border-color: var(--green); }
.pcard__num {
  font-size: 40px;
  letter-spacing: -0.04em;
  font-weight: 500;
  font-family: var(--font-mono);
  color: var(--ink);
}
.pcard--hi .pcard__num { color: var(--green); }
.pcard__title { font-size: 20px; font-weight: 500; letter-spacing: -0.01em; }
.pcard__body { font-size: 14px; line-height: 1.55; color: var(--ink-2); margin-top: auto; }
.pcard--hi .pcard__body { color: rgba(250, 246, 234, 0.7); }

/* ============ PORTFOLIO ============ */
.portfolio { padding: 80px 0 120px; }
.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 24px;
}
.project {
  display: flex; flex-direction: column; gap: 14px;
  text-decoration: none; color: inherit;
  transition: transform 0.25s;
}
.project:hover { transform: translateY(-4px); }
.project--featured { grid-column: auto; grid-row: auto; }
.project__frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  display: flex; flex-direction: column;
  box-shadow: 0 8px 30px -12px rgba(13,20,17,0.18);
  transition: box-shadow 0.25s;
}
.project--featured .project__frame { aspect-ratio: 4/3; }
.project:hover .project__frame { box-shadow: 0 20px 40px -12px rgba(13,20,17,0.25); }
.project__chrome {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 12px;
  background: rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  flex-shrink: 0;
}
.project__chrome--solid {
  border-bottom: 0;
  justify-content: flex-end;
}
.project__chrome--solid .project__url {
  margin-left: auto;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  opacity: 1;
  font-family: var(--font-sans);
  letter-spacing: -0.005em;
}
.project__url {
  margin-left: auto;
  font-size: 10px;
  opacity: 0.55;
  background: rgba(255,255,255,0.55);
  padding: 2px 8px;
  border-radius: 3px;
}
.mock {
  padding: 18px 20px;
  flex: 1;
  overflow: hidden;
  transition: transform 0.4s ease;
}
.mock__topline { display: flex; justify-content: space-between; align-items: center; }
.mock__links { font-size: 9px; letter-spacing: 0.1em; opacity: 0.6; text-transform: uppercase; }
.mock__h { margin: 14px 0; font-size: 26px; line-height: 1.05; letter-spacing: -0.02em; }
.mock__row { display: flex; gap: 6px; margin-top: 10px; }
.mock__pill { padding: 4px 10px; border: 1px solid; font-size: 10px; border-radius: 999px; }
.mock__photogrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; margin-top: 14px; height: 60px; border-radius: 3px; overflow: hidden; }
.mock__photogrid > div { border-radius: 3px; }
.mock__commerce { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 14px; align-items: center; }
.mock__product { aspect-ratio: 1; border-radius: 4px; position: relative; display: flex; align-items: center; justify-content: center; }
.mock__bottle { width: 40%; height: 70%; border-radius: 4px 4px 20px 20px; opacity: 0.7; }
.mock__productinfo { display: flex; flex-direction: column; }
.mock__gridgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; margin-top: 14px; height: 80px; }
.mock__gridgrid > div { border-radius: 2px; }

.project__meta { display: flex; justify-content: space-between; align-items: flex-start; padding: 0 4px; }
.project__name { font-size: 16px; font-weight: 500; letter-spacing: -0.01em; }
.project__tag { font-size: 11px; color: var(--ink-3); margin-top: 2px; }
.project__arrow { font-size: 18px; color: var(--ink-3); transition: transform 0.2s; }
.project:hover .project__arrow { color: var(--ink); transform: translate(2px, -2px); }

/* ============ PRICING ============ */
.pitch__head { margin-bottom: 0; max-width: none; }
.pitch__head .section__h2 { margin-bottom: 32px; }
.pitch__lede {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: none;
  margin-bottom: 88px;
}
.pitch__p,
.pitch__p--lead {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: -0.005em;
  color: var(--ink-2);
  margin: 0;
  text-wrap: pretty;
  max-width: none;
}
.pitch__rule { display: none; }
.pitch__process {
  position: relative;
  background: var(--ink);
  color: var(--beige);
  border-radius: 24px;
  padding: 80px 64px 72px;
  overflow: hidden;
  border: 1px solid var(--ink);
}
.pitch__process__glow {
  position: absolute;
  left: 50%; top: -30%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,166,90,0.28), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}
.pitch__process > .container,
.pitch__process > .pitch__tagline,
.pitch__process > .pitch__pricing { position: relative; z-index: 2; }
.pitch__tagline {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 0 16px;
}
.pitch__tagline__h {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 500;
  font-size: clamp(24px, 2.6vw, 30px);
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--beige);
  margin: 0;
  max-width: none;
  text-wrap: balance;
}
.pitch__tagline__h em {
  font-style: normal;
  color: var(--beige);
}
.pitch__pricing {
  position: relative;
  z-index: 2;
  max-width: none;
  margin: 40px 0 0;
}
.pricing__list {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
}
.pricing__row {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr;
  column-gap: 28px;
  padding: 28px 0;
  border-top: 0.5px solid rgba(250,246,234,0.14);
}
.pricing__row:first-child { border-top: 0.5px solid rgba(250,246,234,0.14); padding-top: 28px; }
.pricing__row:last-child { padding-bottom: 4px; }
.pricing__head { display: contents; }
.pricing__num {
  font-family: var(--font-sans);
  font-size: clamp(40px, 3.6vw, 48px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1;
  color: rgba(250,246,234,0.35);
  font-variant-numeric: tabular-nums;
  align-self: start;
  padding-top: 4px;
  width: auto;
}
.pricing__name {
  font-family: var(--font-sans);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 1.25;
  color: var(--beige);
  margin: 0 0 12px;
  text-wrap: balance;
}
.pricing__leader { display: none; }
.pricing__price { display: none; }
.pricing__body {
  grid-column: 2;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: rgba(250,246,234,0.7);
  max-width: none;
  margin: 0;
  text-wrap: pretty;
}
.pricing__cta {
  display: flex;
  justify-content: flex-end;
  margin: 0;
}
.pricing__cta .btn--primary {
  background: transparent;
  border-color: rgba(250,246,234,0.35);
  color: var(--beige);
}
.pricing__cta .btn--primary:hover {
  background: transparent;
  border-color: rgba(250,246,234,0.7);
  color: var(--beige);
}
@media (max-width: 720px) {
  .pitch__lede { margin-bottom: 56px; }
  .pitch__process { padding: 48px 24px 40px; border-radius: 16px; }
  .pricing__row { grid-template-columns: 48px 1fr; column-gap: 16px; padding: 22px 0; }
  .pricing__num { font-size: 30px; padding-top: 2px; }
  .pricing__name { font-size: 18px; }
  .pricing__body { font-size: 15px; }
}

/* ============ REVIEWS ============ */
.reviews { padding: 120px 0 100px; overflow: hidden; }
.reviews__head {
  text-align: center;
  margin-bottom: 56px;
}
.reviews__head .section__h2 { margin: 0; }
.srcmark {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 500;
  color: var(--ink-2);
  letter-spacing: -0.01em;
}
.stars { display: inline-flex; gap: 1px; }

.reviews__marquee {
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  overflow: hidden;
  padding: 8px 0;
}
.reviews__marquee__row {
  display: flex;
  gap: 20px;
  animation: marquee 480s linear infinite;
  width: max-content;
  align-items: stretch;
}
/* marquee never pauses on hover/tap */
.rcard {
  background: rgba(255,255,255,0.55);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex; flex-direction: column; gap: 20px;
  transition: all 0.2s;
  width: auto;
  min-width: 280px;
  max-width: 440px;
  flex-shrink: 0;
}
.rcard:hover { background: rgba(255,255,255,0.85); border-color: var(--ink-3); transform: translateY(-2px); }
.rcard__top { display: flex; align-items: center; justify-content: space-between; }
.rcard__head { display: flex; align-items: center; gap: 13px; }
.rcard__head-text { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.rcard__body {
  font-size: 17px; line-height: 1.55;
  color: var(--ink); margin: 0;
  text-wrap: pretty;
  flex: 0 1 auto;
}
.rcard__meta { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--border-soft); margin-top: auto; }
.rcard__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--beige);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 17px;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.rcard__name { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; }
.rcard__date { font-size: 13px; font-weight: 500; color: var(--ink-3); }
.rcard__role { font-size: 11px; color: var(--ink-3); margin-top: 2px; }

.rcard__more {
  display: none;
  background: none;
  border: 0;
  padding: 6px 0 0;
  margin-top: 4px;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  align-self: flex-start;
  -webkit-tap-highlight-color: transparent;
}

@media (max-width: 900px) {
  .rcard { width: 300px; }
  .rcard--clamped .rcard__body {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .rcard--clamped.rcard--expanded .rcard__body {
    display: block;
    overflow: visible;
  }
  .rcard--clamped .rcard__more { display: inline-block; }
}

/* ============ FAQ ============ */
.faq { padding: 120px 0; border-top: 1px solid var(--border-soft); }
.faq__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.faq__h2 { font-size: clamp(36px, 4.5vw, 54px); }
.faq__head { position: sticky; top: 100px; }
.faq__list {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--border);
}
.faq__item {
  all: unset;
  cursor: pointer;
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  display: block;
  transition: padding 0.2s;
}
.faq__row {
  display: grid;
  grid-template-columns: 40px 1fr 32px;
  gap: 16px;
  align-items: center;
}
.faq__num { display: inline-flex; align-items: center; justify-content: flex-start; min-height: 1em; }
.faq__q { font-size: 19px; font-weight: 500; letter-spacing: -0.01em; }
.faq__toggle { font-size: 22px; color: var(--ink-3); font-weight: 300; text-align: right; }
.faq__item--open .faq__toggle { color: var(--ink); }
.faq__a-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
  padding-left: 56px;
}
.faq__a-inner { overflow: hidden; }
.faq__a {
  margin: 12px 0 0;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.6;
  max-width: 620px;
}

/* ============ ABOUT ============ */
.about {
  position: relative;
  padding: 120px 0;
  background: var(--ink);
  color: var(--beige);
  overflow: hidden;
}
.about__glow {
  position: absolute;
  left: 18%; top: 10%;
  transform: translate(-50%, 0);
  width: 720px; height: 720px;
  background: radial-gradient(circle, rgba(0,166,90,0.22), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.about .container { position: relative; z-index: 1; }
.about__inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}
.about__portrait { position: sticky; top: 100px; }
.about__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
}
.about__photo__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}
.about__photo__corner {
  position: absolute;
  bottom: 16px; left: 16px;
  background: var(--ink);
  color: var(--beige);
  padding: 6px 10px;
  font-size: 10px;
  letter-spacing: 0.14em;
  border-radius: 3px;
}
.about__sig {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.about__body { padding-top: 8px; }
.about__body .tag { color: rgba(250,246,234,0.7); }
.about__body .section__h2 { color: var(--beige); margin-bottom: 32px; }
.about__body .section__h2 .h2__alt { color: rgba(250,246,234,0.55); }
.about__lede {
  color: var(--beige);
  font-size: 20px;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 20px;
  max-width: 560px;
}
.about__p {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(250,246,234,0.7);
  margin: 0 0 18px;
  max-width: 560px;
  text-wrap: pretty;
}
.about__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.about__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--beige);
  transition: all 0.2s;
}
.about__link:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--ink);
  transform: translateY(-1px);
}
.about__link__arrow {
  font-size: 14px;
  margin-left: 2px;
  opacity: 0.6;
  transition: transform 0.2s;
}
.about__link:hover .about__link__arrow { opacity: 1; transform: translateX(2px); }

/* ============ COMPARE ============ */
.compare {
  position: relative;
  padding: 0 0 120px;
  background: var(--ink);
  color: var(--beige);
}
.compare__head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
  max-width: 1100px;
  margin: 0 auto 40px;
  padding: 0;
}
.compare__intro {
  font-size: 12px;
  color: rgba(250,246,234,0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
  max-width: 420px;
  line-height: 1.5;
}
.compare__h3 {
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 500;
  margin: 0;
  text-align: left;
}
.compare__h3 .h3__alt {
  font-family: var(--font-sans);
  font-weight: 500;
  color: rgba(250,246,234,0.55);
  letter-spacing: -0.025em;
}
.compare__box {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  overflow: hidden;
}
.compare__col { padding: 36px 40px; }
.compare__col--a { background: transparent; }
.compare__col--b {
  background:
    radial-gradient(circle at 80% 0%, rgba(0,166,90,0.18), transparent 60%),
    rgba(255,255,255,0.04);
}
.compare__divider { background: rgba(255,255,255,0.10); }
.compare__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,246,234,0.55);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  width: 100%;
  box-sizing: border-box;
}
.compare__col--b .compare__label { color: var(--beige); }
.compare__label__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(0,166,90,0.18);
}
.compare__label__dot--mute {
  background: rgba(250,246,234,0.35);
  box-shadow: 0 0 0 3px rgba(250,246,234,0.10);
}
.compare__list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.compare__item {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 16px;
  align-items: start;
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: -0.005em;
}
  gap: 12px;
  align-items: start;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.005em;
}
.compare__item--mute svg { width: 18px; height: 18px; }
.compare__item--win svg { width: 18px; height: 18px; }
.compare__item svg { margin-top: 4px; flex-shrink: 0; }
.compare__item--mute { color: rgba(250,246,234,0.45); }
.compare__item--mute svg { color: rgba(250,246,234,0.35); }
.compare__item--win { color: var(--beige); font-weight: 500; }
.compare__item--win svg { color: var(--green); }

@media (max-width: 900px) {
  .about { padding-top: 50px; padding-bottom: 0; }
  /* website-erstellen has no About above Reviews — collapse the Portfolio
     bottom padding so the gap above Reviews matches the other pages. */
  .page-website-erstellen .portfolio { padding-bottom: 0; }
  .about__inner { grid-template-columns: 1fr; gap: 50px; }
  .about__body { order: 1; }
  .about__portrait { order: 2; position: static; margin: 0 -20px; }
  .about__photo { max-width: none; width: 100%; aspect-ratio: 4 / 5; border-radius: 0; display: block; }
  .about__body .section__h2 { font-size: clamp(40px, 5.5vw, 66px); }
  .section__h2 { font-size: clamp(40px, 5.5vw, 66px); }
  .portfolio .section__h2 { font-size: clamp(44px, 6.05vw, 72.6px); }
  .reviews__head .section__h2 { font-size: clamp(36px, 5vw, 60px); }
  .faq__h2 { font-size: clamp(36px, 4.5vw, 54px); }
  .compare__head { grid-template-columns: 1fr; gap: 16px; }
  .compare__h3 { text-align: left; }
  .compare__box { grid-template-columns: 1fr; }
  .compare__divider { display: none; }
  .compare__col { padding: 28px 24px; }
}

/* ============ CTA ============ */
.cta { padding: 120px 0 240px; }
.cta__card {
  position: relative;
  background: var(--ink);
  color: var(--beige);
  border-radius: 24px;
  padding: 96px 32px;
  text-align: center;
  overflow: hidden;
  border: 1px solid var(--ink);
}
.cta__glow {
  position: absolute;
  left: 50%; top: -30%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,166,90,0.35), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}
.cta__inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
.cta__h {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 500;
  margin: 0 0 20px;
  text-wrap: balance;
}
.cta__h em { color: var(--green); }
.cta__h .h2__alt {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.035em;
  color: rgba(250,246,234,0.55);
}
.section__h2 .h2__alt {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--ink-2);
}
.cta__sub { font-size: 18px; color: rgba(250,246,234,0.7); margin: 0 auto 40px; max-width: 480px; line-height: 1.5; }
.cta__action { display: flex; justify-content: center; }
.cta__form { display: flex; gap: 8px; max-width: 520px; margin: 0 auto 24px; }
.cta__input {
  flex: 1;
  padding: 14px 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--beige);
  font-size: 15px;
  font-family: inherit;
  border-radius: 999px;
  outline: none;
}
.cta__input:focus { border-color: var(--green); background: rgba(255,255,255,0.12); }
.cta__input::placeholder { color: rgba(250,246,234,0.4); }
.cta .btn--primary { background: transparent; border-color: rgba(250,246,234,0.35); color: var(--beige); }
.cta .btn--primary:hover { background: transparent; border-color: rgba(250,246,234,0.7); color: var(--beige); }
.cta__small { display: flex; justify-content: center; gap: 12px; font-size: 11px; color: rgba(250,246,234,0.5); letter-spacing: 0.06em; }

/* ============ CHECKLIST OPT-IN ============ */
.optin { padding: 40px 0; }
.optin__card { position: relative; max-width: 880px; margin: 0 auto; background: #fff;
  border: 1px solid var(--border); border-radius: 28px; padding: 60px 56px; overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(13,20,17,0.22); }
.optin__inner { position: relative; z-index: 2; text-align: center; }
.optin__eyebrow { display: inline-flex; align-items: center; gap: 9px; font-size: 13px;
  font-weight: 500; letter-spacing: 0.01em; color: var(--green-ink); margin: 0 0 18px; }
.optin__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 4px rgba(0,166,90,0.18); }
.optin__h { font-size: clamp(26px, 3.2vw, 38px); font-weight: 600; letter-spacing: -0.025em;
  line-height: 1.08; margin: 0 auto 16px; text-wrap: balance; max-width: 20ch; }
.optin__sub { font-size: 17px; color: var(--ink-2); line-height: 1.55; margin: 0 auto 30px; max-width: 560px; }
.optin__form { max-width: 560px; margin: 0 auto; }
.optin__row { display: flex; gap: 10px; }
.optin__input { flex: 1; min-width: 0; padding: 14px 20px; font-family: inherit; font-size: 15px;
  color: var(--ink); background: #fff; border: 1px solid var(--border); border-radius: 999px;
  outline: none; transition: border-color 0.18s ease, box-shadow 0.18s ease; }
.optin__input:focus { border-color: var(--ink); box-shadow: 0 0 0 3px rgba(13,20,17,0.06); }
.optin__input::placeholder { color: var(--ink-4); }
.optin__form .btn { white-space: nowrap; }
.optin__error { font-size: 13.5px; color: #c0392b; margin: 12px 0 0; }
.optin__fine { font-size: 12.5px; color: var(--ink-3); margin: 16px 0 0; line-height: 1.5; }
.optin__fine a { color: var(--ink-2); text-decoration: underline; text-underline-offset: 2px; }
.optin__fine a:hover { color: var(--ink); }
.optin__success { display: flex; align-items: flex-start; gap: 16px; text-align: left;
  max-width: 560px; margin: 8px auto 0; padding: 22px 24px; background: rgba(0,166,90,0.07);
  border: 1px solid rgba(0,166,90,0.22); border-radius: 16px; }
.optin__check { flex: none; width: 32px; height: 32px; border-radius: 50%; background: var(--green);
  color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 17px; font-weight: 600; }
.optin__success-h { font-size: 17px; font-weight: 600; margin: 0 0 4px; color: var(--green-ink); }
.optin__success-p { font-size: 14.5px; color: var(--ink-2); line-height: 1.55; margin: 0; }
@media (max-width: 600px) {
  .optin__card { padding: 40px 22px; border-radius: 22px; }
  .optin__row { flex-direction: column; }
  .optin__form .btn { justify-content: center; }
}

/* ============ FOOTER ============ */
.footer { padding: 60px 0 40px; border-top: 1px solid var(--border-soft); }
.footer__top { display: grid; grid-template-columns: repeat(4, auto); justify-content: space-between; gap: 40px 48px; padding-bottom: 48px; border-bottom: 1px solid var(--border); align-items: start; }
.footer__brand { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.footer__col { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.footer__col-h { font-family: var(--font-sans); font-weight: 600; font-size: 22px; letter-spacing: -0.02em; color: var(--ink); }
.footer__contact { font-size: 16px; color: var(--ink); text-decoration: none; letter-spacing: -0.005em; }
.footer__contact:hover { color: var(--green-ink, var(--green)); }
.footer__ctas { display: flex; gap: 12px; margin-top: 10px; flex-wrap: wrap; }
.footer__ctas .btn { flex: 1 1 auto; justify-content: center; }
.footer__sms { display: block; height: 67px; width: auto; }
.footer__sms-link { display: inline-block; line-height: 0; transition: opacity 0.18s ease; }
.footer__sms-link:hover { opacity: 0.7; }
.footer__right { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; justify-self: end; }
.footer__legal { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.footer__legal a {
  font-size: 15px;
  color: var(--ink-2);
  text-decoration: none;
  letter-spacing: -0.005em;
  transition: color 0.15s;
}
.footer__legal a:hover { color: var(--ink); }
.footer__links { display: grid; grid-template-columns: repeat(3, 160px); gap: 48px; }
.footer__label { font-size: 11px; color: var(--ink-3); margin-bottom: 12px; letter-spacing: 0.1em; text-transform: uppercase; }
.footer__links a { display: block; font-size: 14px; color: var(--ink-2); padding: 4px 0; }
.footer__links a:hover { color: var(--ink); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; font-family: var(--font-sans); font-size: 11px; color: var(--ink-3); letter-spacing: 0.08em; gap: 24px; }

/* footer collapse — match Monitor page (stacks earlier for better spacing) */
@media (max-width: 860px) {
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
  .footer__right { align-items: flex-start; justify-self: start; }
  .footer__legal { align-items: flex-start; }
  .footer__sms { justify-self: start; }
}

@media (max-width: 600px) {
  .cta { padding: 0 0 120px; }
  .cta__card { padding: 64px 22px; }
  .cta__h { font-size: clamp(30.8px, 8.36vw, 39.6px); }
  .cta__sub .cta-br { display: inline !important; }
}
.cta__sub .cta-br { display: none; }
.hero-sub-br { display: none; }

/* Short viewports (landscape phones): release the locked 100vh hero so
   content can grow instead of being clipped by overflow:hidden. */
@media (max-height: 720px) {
  .hero {
    height: auto;
    min-height: 100vh;
    padding-top: 104px;
    padding-bottom: 64px;
  }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .hero__inner--split { grid-template-columns: 1fr; gap: 40px; }
  .editorial__bottom { grid-template-columns: 1fr; gap: 32px; }
  .hero__ctas--editorial { justify-content: flex-start; }
  .pitch__grid { grid-template-columns: 1fr; }
  .portfolio__grid { grid-template-columns: 1fr 1fr; }
  .project--featured { grid-column: auto; }
  .faq__inner { grid-template-columns: 1fr; gap: 40px; }
  .faq__head { position: static; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__right { align-items: flex-start; justify-self: start; }
  .footer__sms { justify-self: start; }
  .footer__legal { align-items: flex-start; }
  .footer__links { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .cta__form { flex-direction: column; }
}
@media (max-width: 600px) {
  /* Drop backdrop blur on mobile — it forces a full-viewport repaint every
     scroll frame and causes the stutter when the header transitions. Use an
     opaque background instead, which composites cheaply. */
  .nav { will-change: auto; transition: background-color 0.25s ease, padding 0.25s ease, border-color 0.25s ease; }
  .nav, .nav--scrolled {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  .nav--scrolled { background: rgba(250, 246, 234, 0.97); }
  .hero { padding: 140px 20px 20px; height: auto; min-height: auto; align-items: flex-start; }
  /* website-erstellen: match SEO hero top spacing on mobile */
  .page-website-erstellen .hero { padding-top: 199px; }
  .hero__h1 { font-size: clamp(34.1px, 10.82vw, 58.3px); line-height: 1.05; }
  .hero__ctas { flex-direction: column; margin-bottom: 20px; }
  .hero__proof { padding: 8px 0 0; gap: 12px; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .container { padding: 0 20px; }
  .nav__inner { padding: 0 20px; }
  .portfolio__grid { grid-template-columns: 1fr; }
  .project--featured { grid-column: auto; }
  .preview__badge { right: 0; }
  .footer__ctas {
    width: 100%;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 10px;
  }
  .footer__ctas .btn {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    padding: 16px 18px;
    font-size: 15px;
  }
}

/* ============ CHECKLIST SHOWCASE ============ */
.cl-show { position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: 80px 0 154px; overflow: hidden; --red: #cf4636; scroll-margin-top: 0; }
.cl-show > .container { width: 100%; }
/* checklist standalone page: extra breathing room top & bottom */
.page-checkliste .cl-show { padding: 150px 0 200px; }
@media (max-width: 640px) { .page-checkliste .cl-show { padding: 128px 0 160px; } }
.cl-show__head { text-align: center; margin: 0 0 48px; }
.cl-show__grid { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: 40px; align-items: center; }
.cl-show > .container { width: 100%; position: relative; z-index: 1; }
.cl-show__visual { position: relative; display: flex; justify-content: flex-end; align-items: center; }
.cl-show__visual > .cl-scene { position: relative; z-index: 1; }
.cl-show + .reviews { border-top: none; }

.cl-scene { --s: 0.94; position: relative; width: 470px; height: 600px; perspective: 1750px;
  transform: scale(var(--s)); transform-origin: center;
  margin: calc((var(--s) - 1) * 300px) calc((var(--s) - 1) * 235px); }

@media (max-width: 1080px) {
  .cl-show { min-height: auto; padding: 88px 0 125px; scroll-margin-top: 72px; }
  .cl-show__grid { grid-template-columns: 1fr; gap: 0; }
  .cl-optin { order: -1; }
  .cl-show__visual { justify-content: center; margin: 88px 0 0; }
  .cl-scene { --s: 0.86; }
  .cl-optin__h { font-size: clamp(38px, 5.2vw, 60px); }
  .cl-optin__h span { white-space: nowrap; }
}
@media (max-width: 760px) { .cl-scene { --s: 0.72; } }
@media (max-width: 480px) { .cl-scene { --s: 0.66; } }
@media (max-width: 380px) { .cl-scene { --s: 0.58; } }

.cl-scene::before { content: ""; position: absolute; z-index: 0; left: 50%; top: 50%;
  width: 132%; height: 86%; transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(0,166,90,0.18), rgba(0,166,90,0.06) 46%, transparent 72%);
  filter: blur(18px); pointer-events: none; }

.cl-badge i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); flex: none;
  box-shadow: 0 0 0 3px rgba(0,166,90,0.25); animation: pulse 2s ease-in-out infinite; }

.cl-badge--legacy {}

.cl-stack { position: absolute; top: 0; left: 24px; width: 430px; height: 600px; z-index: 1;
  transform-style: preserve-3d; transform: rotateY(14deg) rotateX(6deg) rotate(1.5deg); }
.cl-sheet { position: absolute; inset: 0; background: #fff; border-radius: 12px; overflow: hidden; }
.cl-sheet--back { transform: translate(-42px, 28px) rotate(-4.5deg); background: #fbf7ee;
  box-shadow: 0 50px 90px -40px rgba(13,20,17,0.4); opacity: 0.96; }
.cl-sheet--mid { transform: translate(-22px, 14px) rotate(-2deg); background: #fdfaf2;
  box-shadow: 0 44px 80px -38px rgba(13,20,17,0.4); }
.cl-sheet--front { box-shadow: 0 60px 110px -34px rgba(13,20,17,0.5), 0 14px 34px -16px rgba(13,20,17,0.28);
  border: 1px solid rgba(13,20,17,0.05); }
.cl-sheet--front::after { content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: 12px;
  background: linear-gradient(245deg, rgba(255,255,255,0.5), transparent 26%, transparent 82%, rgba(13,20,17,0.05)); }

.cl-page { position: absolute; inset: 0; padding: 22px 30px 0; }
.cl-mast { position: relative; display: flex; align-items: center; justify-content: space-between; padding-bottom: 22px; border-bottom: 1px solid var(--border); }
.cl-badge { z-index: 8; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 8px; background: var(--ink); color: var(--beige);
  font-size: 11.5px; font-weight: 500; letter-spacing: -0.005em; padding: 9px 14px; border-radius: 999px;
  box-shadow: 0 16px 30px -14px rgba(13,20,17,0.5); }
.cl-brand { font-size: 15px; font-weight: 600; letter-spacing: -0.02em; color: var(--ink); }
.cl-h1 { font-size: 24px; font-weight: 600; letter-spacing: -0.03em; line-height: 1.02; margin: 18px 0 7px; color: var(--ink); }
.cl-subt { font-size: 14px; font-weight: 500; letter-spacing: -0.02em; line-height: 1.15; margin: 0 0 16px; color: var(--ink); }
.cl-sec { display: flex; align-items: center; gap: 10px; margin: 0 0 6px; }
.cl-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex: none;
  box-shadow: 0 0 0 4px rgba(0,166,90,0.18); animation: pulse 2s ease-in-out infinite; }
.cl-sectitle { font-size: 16px; font-weight: 600; letter-spacing: -0.02em; color: var(--ink); }

.cl-item { display: grid; grid-template-columns: 24px 1fr; gap: 0 14px; padding: 14px 4px; align-items: start; }
.cl-item + .cl-item { border-top: 1px solid var(--border-soft); }
.cl-box { position: relative; width: 22px; height: 22px; border: 1.8px solid var(--ink); border-radius: 6px; margin-top: 2px;
  animation: cl-boxAlt var(--dur, 6s) ease-in-out infinite; animation-delay: var(--d, 0s); }
.cl-mark { position: absolute; left: 50%; top: 50%; font-size: 27px; font-weight: 600; line-height: 1;
  opacity: 0; transform: translate(-50%, -54%) scale(0); -webkit-text-stroke: 0.4px currentColor;
  text-shadow: 0 2px 6px rgba(13,20,17,0.14); pointer-events: none; }
.cl-mark--ok { color: var(--green); animation: cl-okIn var(--dur, 6s) ease-in-out infinite; animation-delay: var(--d, 0s); }
.cl-mark--bad { color: var(--red); animation: cl-badIn var(--dur, 6s) ease-in-out infinite; animation-delay: var(--d, 0s); }
.cl-q { font-size: 15px; font-weight: 600; line-height: 1.34; letter-spacing: -0.01em; color: var(--ink); }
.cl-d { font-size: 12px; color: var(--ink-3); line-height: 1.45; margin-top: 4px; }

@keyframes cl-okIn {
  0%, 6% { opacity: 0; transform: translate(-54%, -54%) scale(0.4); }
  13% { opacity: 1; transform: translate(-54%, -54%) scale(1.12); }
  20%, 40% { opacity: 1; transform: translate(-54%, -54%) scale(1); }
  46%, 100% { opacity: 0; transform: translate(-54%, -54%) scale(0.4); }
}
@keyframes cl-badIn {
  0%, 52% { opacity: 0; transform: translate(-50%, -50%) scale(0.4); }
  59% { opacity: 1; transform: translate(-50%, -50%) scale(1.12); }
  66%, 86% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  92%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(0.4); }
}
@keyframes cl-boxAlt {
  0%, 6% { border-color: var(--ink); }
  12%, 40% { border-color: var(--green); }
  46%, 52% { border-color: var(--ink); }
  58%, 86% { border-color: var(--red); }
  92%, 100% { border-color: var(--ink); }
}
.cl-page::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 72px;
  background: linear-gradient(transparent, #fff 80%); }

@media (prefers-reduced-motion: reduce) {
  .cl-badge i, .cl-dot, .cl-box, .cl-mark { animation: none !important; }
  .cl-box { border-color: var(--green); }
  .cl-mark--ok { opacity: 1; transform: translate(-54%,-54%) scale(1); }
  .cl-mark--bad { opacity: 0; }
}

/* ---- checklist opt-in (right column) ---- */
.cl-optin { background: transparent; border: none; border-radius: 0; padding: 0; box-shadow: none; }
.cl-optin__eyebrow { display: inline-flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 500;
  letter-spacing: 0.01em; color: var(--green-ink); margin: 0 0 16px; }
.cl-dot2 { width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex: none;
  box-shadow: 0 0 0 4px rgba(0,166,90,0.18); animation: pulse 2s ease-in-out infinite; }
.cl-optin__h { font-size: clamp(40px, 5.5vw, 66px); font-weight: 500; letter-spacing: -0.03em;
  line-height: 1.1; margin: 0 0 16px; color: var(--ink); white-space: nowrap; }
.cl-optin__h span { display: inline; white-space: nowrap; color: inherit; }
@media (min-width: 901px) { .cl-optin__h { font-size: clamp(45.25px, 4.52vw, 54.07px); white-space: normal; } .cl-optin__h span { white-space: normal; } }
/* mobile: heading 10% smaller */
@media (max-width: 600px) { .cl-optin__h { font-size: clamp(27.36px, 8.93vw, 57.6px); white-space: normal; } .cl-optin__h span { white-space: normal; } }
.cl-optin__sub { font-size: 16px; color: var(--ink-2); line-height: 1.55; margin: 0 0 14px; }
.cl-optin__sub--last { color: var(--ink); font-weight: 500; }
.cl-optin__form { margin-top: 26px; }
.cl-optin__row { display: flex; flex-direction: column; gap: 10px; }
.cl-optin__input { flex: 1; min-width: 0; padding: 18px 16px; font-family: inherit; font-size: 15px;
  color: var(--ink); background: #fff; border: 1px solid var(--border); border-radius: 8px; outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease; }
.cl-optin__input:focus { border-color: var(--ink); box-shadow: 0 0 0 3px rgba(13,20,17,0.06); }
.cl-optin__input::placeholder { color: var(--ink-4); }
.cl-optin__form .btn { width: 100%; justify-content: center; }
.cl-optin__error { font-size: 13.5px; color: #c0392b; margin: 11px 0 0; }
.cl-optin__fine { font-size: 12.5px; color: var(--ink-3); margin: 15px 0 0; line-height: 1.5; }
.cl-optin__fine a { color: var(--ink-2); text-decoration: underline; text-underline-offset: 2px; }
.cl-optin__fine a:hover { color: var(--ink); }
.cl-optin__success { display: flex; align-items: flex-start; gap: 14px; padding: 18px 20px;
  background: rgba(0,166,90,0.07); border: 1px solid rgba(0,166,90,0.22); border-radius: var(--radius); }
.cl-optin__check { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--green);
  color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 600; }
.cl-optin__sh { font-size: 16px; font-weight: 600; margin: 0 0 4px; color: var(--green-ink); }
.cl-optin__sp { font-size: 14px; color: var(--ink-2); line-height: 1.55; margin: 0; }
@media (max-width: 480px) { .cl-optin__row { flex-direction: column; }
  .cl-optin__form .btn { justify-content: center; } }
