/* ============================================================
   MODUS CREATIVE — Premium Design System
   ============================================================ */

:root {
  /* Colors */
  --white: #FFFFFF;
  --off-white: #FAFAFA;
  --light-gray: #F5F5F7;
  --line: #E8E8EB;
  --line-soft: #EFEFF2;
  --ink: #1A1A1A;
  --ink-soft: #2A2A2D;
  --muted: #6B6B72;
  --muted-2: #8B8B92;
  --accent: #326BFF;
  --accent-soft: rgba(50, 107, 255, 0.08);
  --accent-glow: rgba(50, 107, 255, 0.18);

  /* Type */
  --f-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --f-serif: "Instrument Serif", "Times New Roman", serif;

  /* Layout */
  --container: 1280px;
  --container-px: clamp(20px, 4vw, 48px);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Easing */
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: "ss01", "cv11";
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: none; cursor: pointer; color: inherit; }
em { font-style: normal; font-family: var(--f-serif); font-weight: 400; letter-spacing: -0.01em; }

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

/* Container */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--container-px);
  padding-right: var(--container-px);
}

/* Grain overlay */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 1;
  opacity: .035; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 18px 0;
  transition: padding .35s var(--ease), background .35s var(--ease), backdrop-filter .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding: 12px 0;
  background: rgba(255,255,255,0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom-color: var(--line);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
}
.nav__logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 19px; letter-spacing: -0.025em;
}
.logo-mark {
  display: inline-grid; place-items: center;
  width: 28px; height: 28px;
  color: var(--ink);
}
.logo-word { color: var(--ink); }
.logo-word__accent { color: var(--accent); }

/* Image logo — used in nav + footer */
.logo-img {
  display: block;
  height: 80px;
  width: auto;
  object-fit: contain;
  transition: height .3s var(--ease), opacity .25s var(--ease);
}
.nav.scrolled .logo-img { height: 60px; }
.logo-img--footer {
  height: 160px;
  width: auto;
  margin: -16px 0 8px -16px;     /* visuell etwas mehr "atmen" lassen */
}
@media (max-width: 960px) {
  .logo-img { height: 64px; }
  .nav.scrolled .logo-img { height: 52px; }
  .logo-img--footer { height: 130px; margin-left: -12px; }
}
@media (max-width: 520px) {
  .logo-img { height: 56px; }
  .nav.scrolled .logo-img { height: 44px; }
  .logo-img--footer { height: 110px; }
}

.nav__links {
  display: flex; align-items: center; gap: 4px;
}
.nav__links a {
  font-size: 14.5px; font-weight: 500; color: var(--ink-soft);
  padding: 8px 14px; border-radius: 999px;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.nav__links a:hover { background: var(--light-gray); color: var(--ink); }

.nav__toggle {
  display: none; width: 40px; height: 40px;
  border-radius: 999px; border: 1px solid var(--line);
  align-items: center; justify-content: center; gap: 4px; flex-direction: column;
}
.nav__toggle span {
  display: block; width: 16px; height: 1.5px; background: var(--ink);
  transition: transform .3s var(--ease);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 14.5px; font-weight: 500;
  letter-spacing: -0.005em;
  transition: transform .35s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .35s var(--ease);
  white-space: nowrap;
  position: relative;
}
.btn--sm { padding: 10px 16px; font-size: 13.5px; }
.btn--lg { padding: 17px 28px; font-size: 15.5px; }

.btn--primary {
  background: var(--ink); color: var(--white);
  box-shadow: 0 1px 0 rgba(255,255,255,.08) inset, 0 8px 24px -8px rgba(26,26,26,.4);
}
.btn--primary:hover {
  background: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 1px 0 rgba(255,255,255,.12) inset, 0 14px 36px -10px var(--accent-glow);
}

.btn--ghost {
  background: transparent; color: var(--ink);
  border: 1px solid var(--line);
}
.btn--ghost:hover {
  background: var(--ink); color: var(--white); border-color: var(--ink);
}
.btn--ghost .btn__icon-circle {
  display: inline-grid; place-items: center;
  width: 22px; height: 22px; border-radius: 999px;
  background: var(--ink); color: var(--white);
  transition: transform .35s var(--ease);
}
.btn--ghost:hover .btn__icon-circle { transform: rotate(45deg); background: var(--accent); }

.btn--light {
  background: rgba(255,255,255,.08); color: #fff;
  border: 1px solid rgba(255,255,255,.18);
}
.btn--light:hover { background: rgba(255,255,255,.16); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
.hero__glow {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: .55;
}
.hero__glow--a {
  width: 580px; height: 580px;
  left: -200px; top: -120px;
  background: radial-gradient(closest-side, rgba(50,107,255,.22), transparent 70%);
}
.hero__glow--b {
  width: 520px; height: 520px;
  right: -180px; top: 80px;
  background: radial-gradient(closest-side, rgba(255,193,118,.20), transparent 70%);
}
.hero__3d {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .42;
  mix-blend-mode: multiply;
  transition: opacity .8s var(--ease);
}
.hero__3d[data-loaded="true"] { opacity: .42; }
@media (max-width: 960px) {
  .hero__3d { display: none; }
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 80px;
  align-items: center;
}

/* Pill */
.pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px 8px 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px; font-weight: 500;
  color: var(--ink-soft);
  box-shadow: 0 1px 2px rgba(0,0,0,.02), 0 8px 24px -16px rgba(0,0,0,.1);
  margin-bottom: 32px;
}
.pulse {
  width: 7px; height: 7px; border-radius: 999px;
  background: #22c55e; position: relative;
}
.pulse::after {
  content: ""; position: absolute; inset: -3px; border-radius: 999px;
  background: #22c55e; opacity: .4;
  animation: pulse 2s ease-out infinite;
}
.pulse--dark { background: var(--accent); }
.pulse--dark::after { background: var(--accent); }
@keyframes pulse {
  0% { transform: scale(.8); opacity: .45; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* Hero title */
.hero__title {
  font-size: clamp(48px, 7.5vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 28px;
}
.reveal-line {
  display: block;
  overflow: hidden;
}
.reveal-line > span {
  display: inline-block;
  transform: translateY(105%);
  transition: transform 1s var(--ease-out);
}
.reveal-line.is-in > span { transform: translateY(0); }
.reveal-line:nth-child(1) > span { transition-delay: .05s; }
.reveal-line:nth-child(2) > span { transition-delay: .15s; }
.reveal-line:nth-child(3) > span { transition-delay: .25s; }
.reveal-line:nth-child(4) > span { transition-delay: .35s; }

.hero__sub {
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.55;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 40px;
}
.hero__cta {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 56px;
}

.hero__meta {
  display: flex; align-items: center; gap: 16px;
}
.avatars { display: flex; }
.avatar {
  display: inline-block;
  width: 32px; height: 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--c1, #ddd), var(--c2, #888));
  border: 2px solid var(--white);
  margin-left: -8px;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.avatar:first-child { margin-left: 0; }
.avatar--lg { width: 44px; height: 44px; border-width: 2px; margin-left: 0; }

.hero__meta-text {
  display: flex; flex-direction: column; gap: 2px;
  font-size: 13.5px;
}
.hero__meta-text span:last-child { color: var(--muted); }

.stars {
  display: inline-flex; gap: 2px; color: #FFB400;
}
.stars svg { width: 14px; height: 14px; }
.stars--lg svg { width: 18px; height: 18px; }

/* Hero visual / device */
.hero__visual {
  position: relative;
  perspective: 1800px;
}
.device {
  position: relative;
  background: var(--white);
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow:
    0 1px 0 rgba(255,255,255,.6) inset,
    0 30px 60px -30px rgba(20,20,40,.25),
    0 60px 120px -60px rgba(50,107,255,.18);
  overflow: hidden;
  transform: rotate3d(1, -.3, 0, 8deg) translateZ(0);
  transition: transform 1s var(--ease-out);
  will-change: transform;
}
.device:hover { transform: rotate3d(1, -.3, 0, 4deg); }
.device__bar {
  display: flex; align-items: center; gap: 6px;
  padding: 12px 16px;
  background: var(--off-white);
  border-bottom: 1px solid var(--line-soft);
}
.device__bar > span {
  width: 10px; height: 10px; border-radius: 999px;
  background: #E4E4E7;
}
.device__bar > span:nth-child(1) { background: #FF6058; }
.device__bar > span:nth-child(2) { background: #FFBD2E; }
.device__bar > span:nth-child(3) { background: #28C840; }
.device__url {
  margin-left: auto; margin-right: auto;
  font-size: 11.5px; color: var(--muted-2);
  background: var(--white); border: 1px solid var(--line);
  padding: 4px 12px; border-radius: 999px;
}
.device__screen {
  padding: 36px;
  background:
    radial-gradient(800px 400px at 20% -10%, rgba(50,107,255,.06), transparent 60%),
    linear-gradient(180deg, #FCFCFD, #F5F5F7);
  min-height: 380px;
}

.mock-tag {
  display: inline-block;
  font-size: 11px; font-weight: 500;
  padding: 4px 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.mock-h1 {
  font-size: 32px; line-height: 1.05;
  letter-spacing: -0.03em; font-weight: 600;
  color: var(--ink);
  margin-bottom: 18px;
}
.mock-row { display: flex; gap: 8px; margin-bottom: 22px; }
.mock-btn {
  padding: 8px 14px; border-radius: 999px;
  font-size: 12px; font-weight: 500;
}
.mock-btn--filled { background: var(--ink); color: var(--white); }
.mock-btn--ghost { border: 1px solid var(--line); color: var(--ink); }
.mock-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 8px 24px -16px rgba(0,0,0,.08);
}
.mock-card__head {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; color: var(--muted); margin-bottom: 12px;
}
.mock-dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(50,107,255,.12);
}
.mock-bars {
  display: flex; align-items: end; gap: 6px;
  height: 70px;
}
.mock-bar {
  flex: 1;
  height: var(--h);
  background: linear-gradient(180deg, var(--accent), rgba(50,107,255,.4));
  border-radius: 4px;
  animation: barRise 1.5s var(--ease-out) backwards;
}
.mock-bar:nth-child(1) { animation-delay: .1s; }
.mock-bar:nth-child(2) { animation-delay: .2s; }
.mock-bar:nth-child(3) { animation-delay: .3s; }
.mock-bar:nth-child(4) { animation-delay: .4s; }
.mock-bar:nth-child(5) { animation-delay: .5s; }
@keyframes barRise {
  from { height: 0; opacity: 0; }
}

/* Floating cards */
.float-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow:
    0 1px 0 rgba(255,255,255,.8) inset,
    0 20px 40px -16px rgba(0,0,0,.12);
  animation: floatY 6s ease-in-out infinite;
  z-index: 2;
}
.float-card--a {
  top: 20px; left: -32px;
}
.float-card--b {
  bottom: 20px; right: -28px;
  display: flex; align-items: center; gap: 12px;
  color: #FFB400;
  animation-delay: -3s;
}
.float-card__num {
  font-size: 22px; font-weight: 600;
  letter-spacing: -0.03em; color: var(--ink);
  line-height: 1;
}
.float-card__label {
  font-size: 12px; color: var(--muted); margin-top: 4px;
}
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Scroll hint */
.scroll-hint {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--muted-2);
}
.scroll-hint__line {
  width: 1px; height: 36px;
  background: linear-gradient(180deg, var(--muted-2), transparent);
  position: relative;
}
.scroll-hint__line::after {
  content: ""; position: absolute; top: 0; left: -.5px;
  width: 2px; height: 12px; background: var(--ink);
  animation: scrollDot 2.2s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 0; }
  20% { opacity: 1; }
  100% { transform: translateY(24px); opacity: 0; }
}

/* ============================================================
   TRUST / LOGO MARQUEE
   ============================================================ */
.trust {
  padding: 60px 0 80px;
  border-top: 1px solid var(--line-soft);
}
.trust__label {
  text-align: center;
  font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 32px;
}
.marquee {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee__track {
  display: flex; gap: 80px;
  width: max-content;
  animation: marquee 40s linear infinite;
}
.logo-text {
  font-size: 28px; font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--ink);
  opacity: .55;
  white-space: nowrap;
  transition: opacity .3s var(--ease);
  font-feature-settings: "ss01";
}
.logo-text:hover { opacity: 1; }
.logo-text--serif { font-family: var(--f-serif); font-style: italic; font-weight: 400; font-size: 32px; letter-spacing: -0.01em; }
.logo-text--mono { font-family: "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace; font-size: 22px; letter-spacing: -0.01em; font-weight: 400; }
.logo-text sup { font-size: 12px; opacity: .8; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 80px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  padding: 36px 28px;
  text-align: left;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: 0; }
.stat__num {
  font-size: clamp(40px, 4vw, 56px);
  letter-spacing: -0.04em;
  font-weight: 600; line-height: 1;
  color: var(--ink);
  margin-bottom: 12px;
}
.stat__num span { font-family: var(--f-serif); font-weight: 400; font-style: italic; letter-spacing: -0.01em; }
.stat__label {
  font-size: 14px; color: var(--muted);
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
}
.section--alt {
  background: var(--off-white);
}

.section__header {
  max-width: 760px;
  margin-bottom: 72px;
}
.section__header--row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  max-width: 100%;
  align-items: end;
}
.section__header--row .section__lead--side { max-width: 380px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 24px;
}
.eyebrow span {
  display: inline-block;
  padding: 3px 10px; border-radius: 999px;
  background: var(--accent-soft); color: var(--accent);
  letter-spacing: 0;
}
.eyebrow--light { color: rgba(255,255,255,.65); }
.eyebrow--light span { background: rgba(50,107,255,.25); color: #B8CBFF; }

.section__title {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 600;
  color: var(--ink);
}
.section__lead {
  font-size: clamp(15px, 1.1vw, 18px);
  color: var(--muted);
  max-width: 560px;
  margin-top: 24px;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  perspective: 1400px;
}
.service-card {
  background: var(--white);
  padding: 36px 32px 32px;
  display: flex; flex-direction: column;
  min-height: 280px;
  position: relative;
  transition: background .35s var(--ease), transform .5s var(--ease-out), box-shadow .4s var(--ease);
  cursor: pointer;
  transform-style: preserve-3d;
  will-change: transform;
}
.service-card.is-tilt {
  z-index: 3;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.18);
  transition: transform .12s var(--ease), box-shadow .3s var(--ease);
}
.service-card__icon,
.service-card h3,
.service-card p,
.service-card__more {
  transform: translateZ(0);
  transition: transform .5s var(--ease-out);
}
.service-card.is-tilt .service-card__icon { transform: translateZ(40px); }
.service-card.is-tilt h3 { transform: translateZ(24px); }
.service-card.is-tilt p { transform: translateZ(14px); }
.service-card.is-tilt .service-card__more { transform: translateZ(30px); }
.service-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(400px 200px at var(--mx, 50%) var(--my, 50%), var(--accent-soft), transparent 70%);
  opacity: 0; transition: opacity .35s var(--ease);
  pointer-events: none;
}
.service-card:hover::before { opacity: 1; }
.service-card__icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--light-gray);
  color: var(--ink);
  margin-bottom: 28px;
  transition: background .3s var(--ease), color .3s var(--ease), transform .5s var(--ease-out);
}
.service-card__icon svg { width: 26px; height: 26px; }
.service-card:hover .service-card__icon {
  background: var(--ink); color: var(--white);
  transform: rotate(-6deg) scale(1.05);
}
.service-card h3 {
  font-size: 22px; font-weight: 600;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14.5px; color: var(--muted);
  line-height: 1.55;
  margin-bottom: auto;
}
.service-card__more {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13.5px; font-weight: 500; color: var(--ink);
  margin-top: 28px;
  opacity: 0; transform: translateY(8px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.service-card:hover .service-card__more {
  opacity: 1; transform: translateY(0); color: var(--accent);
}

/* ============================================================
   WHY MODUS — Premium Dark Section
   ============================================================ */
.why {
  position: relative;
  background: radial-gradient(1200px 600px at 20% 0%, #1A1A1F 0%, #0D0D10 60%, #08080A 100%);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  /* Bridge: weiches Verschmelzen mit hellem Hintergrund darüber/darunter */
  margin-top: 0;
}
.why::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(180deg, var(--white) 0%, transparent 100%);
  z-index: 0;
  pointer-events: none;
  opacity: .05;
}

/* ── Background layers ─────────────────────────────────── */
.why__bg {
  position: absolute; inset: 0;
  z-index: 0;
  pointer-events: none;
}
.why__grid-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  background-position: -1px -1px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 30%, transparent 80%);
}
.why__orb {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .55;
  animation: whyOrb 18s ease-in-out infinite;
}
.why__orb--a {
  background: radial-gradient(closest-side, rgba(50,107,255,.55), transparent 70%);
  top: -100px; left: -150px;
}
.why__orb--b {
  background: radial-gradient(closest-side, rgba(255,140,80,.35), transparent 70%);
  bottom: -200px; right: -100px;
  animation-delay: -9s;
  animation-duration: 22s;
}
@keyframes whyOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(40px, -30px) scale(1.1); }
}
.why__noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/></svg>");
  opacity: .04;
  mix-blend-mode: overlay;
}

/* ── Header overrides for dark theme ───────────────────── */
.why .container { position: relative; z-index: 1; }
.why__header { max-width: 760px; }
.why .section__title { color: #fff; }
.why .section__title em { color: #B8CBFF; }
.section__lead--light {
  color: rgba(255,255,255,.6);
}

/* ── Grid ──────────────────────────────────────────────── */
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

/* Connecting accent line behind the cards (decorative) */
.why__grid::before {
  content: "";
  position: absolute;
  left: 5%; right: 5%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(50,107,255,.35) 20%,
    rgba(255,255,255,.18) 50%,
    rgba(50,107,255,.35) 80%,
    transparent 100%);
  z-index: -1;
  pointer-events: none;
}

/* ── Card ──────────────────────────────────────────────── */
.why-block {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 36px 32px 32px;
  display: flex; flex-direction: column;
  min-height: 520px;
  overflow: hidden;
  transition: transform .55s var(--ease-out),
              border-color .4s var(--ease),
              background .4s var(--ease);
}
.why-block::before {
  /* Glow halo at top edge */
  content: "";
  position: absolute;
  top: -1px; left: 24px; right: 24px;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(50,107,255,.6) 50%,
    transparent);
  opacity: .7;
  transition: opacity .4s var(--ease);
}
.why-block::after {
  /* Soft inner top-glow */
  content: "";
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 200px;
  background: radial-gradient(closest-side, rgba(50,107,255,.35), transparent 70%);
  filter: blur(28px);
  opacity: 0;
  transition: opacity .55s var(--ease);
  pointer-events: none;
}
.why-block:hover {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,.18);
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
}
.why-block:hover::before { opacity: 1; }
.why-block:hover::after { opacity: 1; }

/* Big backdrop number */
.why-block__bignum {
  position: absolute;
  top: 8px; right: 14px;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 180px;
  line-height: 1;
  font-weight: 400;
  color: rgba(255,255,255,.04);
  letter-spacing: -0.05em;
  pointer-events: none;
  transition: color .55s var(--ease), transform .8s var(--ease);
  z-index: 0;
}
.why-block:hover .why-block__bignum {
  color: rgba(50,107,255,.10);
  transform: translateY(-4px);
}

.why-block__visual {
  height: 220px;
  border-radius: var(--radius);
  background:
    radial-gradient(closest-side at 50% 100%, rgba(50,107,255,.12), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(0,0,0,.15));
  border: 1px solid rgba(255,255,255,.06);
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
  display: grid; place-items: center;
  z-index: 1;
}

/* ─────── Orbit (Strategy) ─────── */
.orbit {
  position: relative;
  width: 180px; height: 180px;
}
.orbit__core {
  position: absolute; inset: 50% auto auto 50%;
  width: 22px; height: 22px; border-radius: 999px;
  background: var(--accent);
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 0 8px rgba(50,107,255,.18),
    0 0 30px 4px rgba(50,107,255,.6);
  animation: pulse 3.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 8px rgba(50,107,255,.18), 0 0 30px 4px rgba(50,107,255,.6); }
  50%      { box-shadow: 0 0 0 14px rgba(50,107,255,.12), 0 0 50px 8px rgba(50,107,255,.8); }
}
.orbit__ring {
  position: absolute;
  border-radius: 999px;
  border: 1px dashed rgba(255,255,255,.15);
  animation: spin 22s linear infinite;
}
.orbit__ring--1 { inset: 0; }
.orbit__ring--2 {
  inset: 28px;
  border-style: solid;
  border-color: rgba(50,107,255,.22);
  animation-duration: 14s;
  animation-direction: reverse;
}
.orbit__ring--3 {
  inset: 56px;
  border-style: solid;
  border-color: rgba(255,255,255,.08);
  animation-duration: 8s;
}
.orbit__dot {
  position: absolute; width: 10px; height: 10px; border-radius: 999px;
  background: #fff;
  top: 50%; left: 50%;
  transform-origin: center;
  box-shadow: 0 0 12px rgba(255,255,255,.6);
}
.orbit__dot--1 {
  transform: translate(-50%, -50%) rotate(0deg) translateY(-90px);
  animation: orbitSpin 22s linear infinite;
}
.orbit__dot--2 {
  background: var(--accent);
  box-shadow: 0 0 14px rgba(50,107,255,.8);
  transform: translate(-50%, -50%) rotate(0deg) translateY(-62px);
  animation: orbitSpin 14s linear infinite reverse;
}
.orbit__dot--3 {
  width: 6px; height: 6px;
  transform: translate(-50%, -50%) rotate(0deg) translateY(-34px);
  animation: orbitSpin 8s linear infinite;
}
.orbit__dot--4 {
  width: 8px; height: 8px;
  background: #FFB36B;
  box-shadow: 0 0 12px rgba(255,179,107,.6);
  transform: translate(-50%, -50%) rotate(180deg) translateY(-90px);
  animation: orbitSpin 22s linear infinite;
}
@keyframes orbitSpin {
  from { transform: translate(-50%, -50%) rotate(0deg) translateY(var(--r, -90px)); }
  to   { transform: translate(-50%, -50%) rotate(360deg) translateY(var(--r, -90px)); }
}
.orbit__dot--1 { --r: -90px; }
.orbit__dot--2 { --r: -62px; }
.orbit__dot--3 { --r: -34px; }
.orbit__dot--4 { --r: -90px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ─────── Layers (Design) ─────── */
.layers {
  position: relative;
  width: 200px; height: 150px;
  perspective: 800px;
  transform-style: preserve-3d;
}
.layer {
  position: absolute; left: 0; right: 0;
  height: 56px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .6s var(--ease-out);
  box-shadow: 0 12px 30px -16px rgba(0,0,0,.5);
}
.layer--1 {
  top: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,.04));
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.layer--2 {
  top: 26px; left: 12px; right: 12px;
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(0,0,0,.4));
  border-color: rgba(255,255,255,.12);
}
.layer--3 {
  top: 52px; left: 24px; right: 24px;
  background: linear-gradient(135deg, var(--ink), #2a2a2d);
  border-color: rgba(255,255,255,.15);
}
.layer--4 {
  top: 78px; left: 36px; right: 36px;
  background: linear-gradient(135deg, var(--accent), #5a8aff);
  border-color: rgba(50,107,255,.4);
  box-shadow:
    0 12px 30px -16px rgba(0,0,0,.5),
    0 0 24px rgba(50,107,255,.4);
  animation: layerGlow 4s ease-in-out infinite;
}
@keyframes layerGlow {
  0%, 100% { box-shadow: 0 12px 30px -16px rgba(0,0,0,.5), 0 0 24px rgba(50,107,255,.4); }
  50%      { box-shadow: 0 12px 30px -16px rgba(0,0,0,.5), 0 0 40px rgba(50,107,255,.7); }
}
.why-block:hover .layer--1 { transform: translateY(-12px) translateZ(20px); }
.why-block:hover .layer--2 { transform: translateY(-4px) translateZ(10px); }
.why-block:hover .layer--3 { transform: translateY(4px) translateZ(-5px); }
.why-block:hover .layer--4 { transform: translateY(12px) translateZ(-15px); }

/* ─────── Grid Vis (Tech) ─────── */
.grid-vis {
  display: grid;
  grid-template-columns: repeat(5, 22px);
  gap: 10px;
}
.grid-vis span {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  transition: background .4s var(--ease), border-color .4s var(--ease), transform .4s var(--ease), box-shadow .4s var(--ease);
  animation: gridPulse 4s ease-in-out infinite;
}
/* staggered wave delay */
.grid-vis span:nth-child(1)  { animation-delay: 0s; }
.grid-vis span:nth-child(2)  { animation-delay: .05s; }
.grid-vis span:nth-child(3)  { animation-delay: .1s; }
.grid-vis span:nth-child(4)  { animation-delay: .15s; }
.grid-vis span:nth-child(5)  { animation-delay: .2s; }
.grid-vis span:nth-child(6)  { animation-delay: .05s; }
.grid-vis span:nth-child(7)  { animation-delay: .1s; }
.grid-vis span:nth-child(8)  { animation-delay: .15s; }
.grid-vis span:nth-child(9)  { animation-delay: .2s; }
.grid-vis span:nth-child(10) { animation-delay: .25s; }
.grid-vis span:nth-child(11) { animation-delay: .1s; }
.grid-vis span:nth-child(12) { animation-delay: .15s; }
.grid-vis span:nth-child(13) { animation-delay: .2s; }
.grid-vis span:nth-child(14) { animation-delay: .25s; }
.grid-vis span:nth-child(15) { animation-delay: .3s; }
.grid-vis span:nth-child(16) { animation-delay: .15s; }
.grid-vis span:nth-child(17) { animation-delay: .2s; }
.grid-vis span:nth-child(18) { animation-delay: .25s; }
.grid-vis span:nth-child(19) { animation-delay: .3s; }
.grid-vis span:nth-child(20) { animation-delay: .35s; }
.grid-vis span:nth-child(21) { animation-delay: .2s; }
.grid-vis span:nth-child(22) { animation-delay: .25s; }
.grid-vis span:nth-child(23) { animation-delay: .3s; }
.grid-vis span:nth-child(24) { animation-delay: .35s; }
.grid-vis span:nth-child(25) { animation-delay: .4s; }
@keyframes gridPulse {
  0%, 100% { background: rgba(255,255,255,.04); }
  50%      { background: rgba(255,255,255,.10); }
}
.grid-vis span.active {
  background: var(--accent) !important;
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(50,107,255,.6);
  animation: activePulse 2.5s ease-in-out infinite;
}
@keyframes activePulse {
  0%, 100% { box-shadow: 0 0 20px rgba(50,107,255,.6); transform: scale(1); }
  50%      { box-shadow: 0 0 32px rgba(50,107,255,.9); transform: scale(1.12); }
}
.why-block:hover .grid-vis span {
  animation-duration: 2s;
}
.why-block:hover .grid-vis span.active { transform: scale(1.2); }

/* Body text */
.why-block__num {
  font-family: var(--f-sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(184, 203, 255, .8);
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.why-block__num::before {
  content: "";
  width: 18px; height: 1px;
  background: rgba(184, 203, 255, .5);
}
.why-block__body { position: relative; z-index: 1; }
.why-block__body h3 {
  font-size: 28px; font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  color: #fff;
  line-height: 1.15;
}
.why-block__body p {
  font-size: 15px;
  color: rgba(255,255,255,.6);
  line-height: 1.65;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .why__orb,
  .orbit__core,
  .orbit__ring,
  .orbit__dot,
  .layer--4,
  .grid-vis span {
    animation: none !important;
  }
}

/* ============================================================
   PROCESS TIMELINE — Premium White
   ============================================================ */
.process {
  position: relative;
  overflow: hidden;
}

/* Dekorative Hintergrund-Layer (weiß bleibt) */
.process__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.process__grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,26,26,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,26,26,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  background-position: center;
  mask-image: radial-gradient(ellipse 75% 60% at 50% 50%, #000 30%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 75% 60% at 50% 50%, #000 30%, transparent 85%);
}
.process__glow {
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  filter: blur(110px);
  opacity: .5;
}
.process__glow--a {
  background: radial-gradient(closest-side, rgba(50,107,255,.20), transparent 70%);
  top: -100px; left: -160px;
}
.process__glow--b {
  background: radial-gradient(closest-side, rgba(255,170,100,.15), transparent 70%);
  bottom: -120px; right: -100px;
}

.process .container { position: relative; z-index: 1; }

/* ── Timeline ────────────────────────────────────────────── */
.timeline {
  list-style: none;
  position: relative;
  display: flex; flex-direction: column;
  gap: 0;
  margin-top: 24px;
  border-top: 1px solid var(--line);
}

/* Vertical spine through icon column */
.timeline__spine {
  position: absolute;
  top: 0; bottom: 0;
  left: 200px;
  width: 1px;
  background: linear-gradient(180deg,
    var(--line) 0%,
    var(--line) 100%);
  pointer-events: none;
  z-index: 0;
}
.timeline__spine i {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 0;
  background: linear-gradient(180deg, var(--accent), rgba(50,107,255,.15));
  transition: height .8s var(--ease-out);
}
.timeline.is-progress .timeline__spine i { height: 100%; }

/* ── Item ────────────────────────────────────────────────── */
.timeline__item {
  display: grid;
  grid-template-columns: 100px 56px 1fr auto;
  column-gap: 32px;
  align-items: center;
  padding: 36px 16px 36px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 1;
  transition: padding .4s var(--ease), background .4s var(--ease);
}

/* Hover: subtle accent overlay sweep from left */
.timeline__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    var(--accent-soft) 0%,
    transparent 60%);
  opacity: 0;
  transition: opacity .45s var(--ease);
  pointer-events: none;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.timeline__item::after {
  content: "";
  position: absolute;
  left: -16px; top: 0; bottom: 0;
  width: 3px;
  background: var(--accent);
  border-radius: 3px;
  transform: scaleY(0);
  transform-origin: center;
  transition: transform .45s var(--ease-out);
}
.timeline__item:hover {
  padding-left: 16px;
}
.timeline__item:hover::before { opacity: 1; }
.timeline__item:hover::after { transform: scaleY(.85); }

/* ── Number ──────────────────────────────────────────────── */
.timeline__num {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(48px, 4.5vw, 72px);
  line-height: 1;
  color: var(--muted-2);
  letter-spacing: -0.035em;
  transition: color .4s var(--ease), transform .4s var(--ease);
  position: relative;
  z-index: 1;
}
.timeline__item:hover .timeline__num {
  color: var(--accent);
  transform: translateX(4px);
}

/* ── Icon ────────────────────────────────────────────────── */
.timeline__icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  position: relative;
  z-index: 2;
  transition: background .4s var(--ease),
              border-color .4s var(--ease),
              color .4s var(--ease),
              transform .4s var(--ease),
              box-shadow .4s var(--ease);
}
.timeline__icon svg { width: 22px; height: 22px; }
.timeline__item:hover .timeline__icon {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  transform: scale(1.08);
  box-shadow:
    0 12px 30px -10px rgba(50,107,255,.35),
    0 0 0 6px rgba(50,107,255,.10);
}

/* ── Content ─────────────────────────────────────────────── */
.timeline__content {
  position: relative;
  z-index: 1;
}
.timeline__content h3 {
  font-size: clamp(26px, 2.8vw, 36px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 8px;
  color: var(--ink);
  transition: color .35s var(--ease);
}
.timeline__content p {
  font-size: 15.5px;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.55;
}

/* ── Duration Tag ────────────────────────────────────────── */
.timeline__tag {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--ink-soft);
  background: var(--white);
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  transition: background .35s var(--ease),
              border-color .35s var(--ease),
              color .35s var(--ease),
              transform .35s var(--ease);
}
.timeline__tag::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--muted-2);
  margin-right: 6px;
  vertical-align: 1px;
  transition: background .35s var(--ease);
}
.timeline__item:hover .timeline__tag {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  transform: translateX(-4px);
}
.timeline__item:hover .timeline__tag::before {
  background: var(--accent);
}

/* Responsive */
@media (max-width: 960px) {
  .timeline__spine { left: 80px; }
  .timeline__item {
    grid-template-columns: 60px 48px 1fr;
    column-gap: 20px;
    padding: 28px 0;
  }
  .timeline__tag {
    grid-column: 3;
    justify-self: start;
    margin-top: 10px;
  }
  .timeline__icon { width: 48px; height: 48px; }
  .timeline__icon svg { width: 20px; height: 20px; }
  .timeline__num { font-size: 36px; }
  .timeline__content h3 { font-size: 24px; }
}
@media (max-width: 520px) {
  .timeline__spine { display: none; }
  .timeline__item {
    grid-template-columns: 44px 1fr;
    column-gap: 16px;
  }
  .timeline__num { display: none; }
}

/* ============================================================
   PROJECTS
   ============================================================ */
.projects__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  perspective: 1600px;
}
.project-card {
  grid-column: span 3;
  display: flex; flex-direction: column; gap: 20px;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform .55s var(--ease-out);
  will-change: transform;
}
.project-card.is-tilt {
  transition: transform .14s var(--ease);
  z-index: 2;
}
.project-card__media {
  transition: box-shadow .5s var(--ease);
}
.project-card.is-tilt .project-card__media {
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.22);
}
.project-card--lg { grid-column: span 3; }
@media (min-width: 1024px) {
  .project-card { grid-column: span 3; }
  .project-card--lg:nth-of-type(1) { grid-column: span 4; }
  .project-card--lg:nth-of-type(4) { grid-column: span 4; }
  .project-card:nth-of-type(2) { grid-column: span 2; }
  .project-card:nth-of-type(3) { grid-column: span 2; }
}

.project-card__media {
  aspect-ratio: 16/11;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .6s var(--ease-out), box-shadow .6s var(--ease-out);
}
.project-card:hover .project-card__media {
  transform: translateY(-6px);
  box-shadow: 0 40px 80px -40px rgba(0,0,0,.18);
}
.project-card__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.04));
  pointer-events: none;
}

/* Project mockup contents */
.pm-content {
  position: absolute; inset: 0;
  padding: 36px;
  display: flex; flex-direction: column;
}

/* Violet — Fintech */
.project-card__media--violet {
  background:
    radial-gradient(700px 400px at 80% 20%, rgba(50,107,255,.25), transparent 60%),
    linear-gradient(135deg, #EEF1FF, #DCE3FF);
}
.pm-content--saas .pm-nav {
  display: flex; gap: 8px; margin-bottom: 28px;
}
.pm-content--saas .pm-nav span {
  width: 32px; height: 6px; border-radius: 6px;
  background: rgba(26,26,26,.12);
}
.pm-content--saas .pm-nav span:first-child { background: var(--ink); width: 44px; }
.pm-content--saas .pm-h {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600; letter-spacing: -0.035em;
  line-height: 1.05; color: var(--ink);
  margin-bottom: 24px;
}
.pm-content--saas .pm-h em { color: var(--accent); }
.pm-content--saas .pm-cards {
  display: flex; gap: 12px; margin-top: auto;
}
.pm-content--saas .pm-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 14px;
  padding: 14px 18px;
  flex: 1;
  display: flex; flex-direction: column; gap: 4px;
  box-shadow: 0 12px 24px -16px rgba(0,0,0,.1);
}
.pm-content--saas .pm-card span { font-size: 11px; color: var(--muted); }
.pm-content--saas .pm-card strong { font-size: 18px; font-weight: 600; letter-spacing: -0.02em; color: var(--ink); }

/* Warm — Real Estate */
.project-card__media--warm {
  background:
    radial-gradient(600px 400px at 20% 80%, rgba(255,180,120,.32), transparent 60%),
    linear-gradient(135deg, #FFF5EC, #FDE2C8);
}
.pm-content--realestate .pm-tagline {
  font-size: 13px; letter-spacing: .12em; text-transform: uppercase;
  color: #6B4226; opacity: .8;
  margin-bottom: 16px;
}
.pm-content--realestate .pm-big {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 500; letter-spacing: -0.03em;
  color: #2E1B0F; line-height: 1.05;
  margin-bottom: auto;
}
.pm-content--realestate .pm-big em { color: #C56B2C; font-weight: 400; }
.pm-content--realestate .pm-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
}
.pm-content--realestate .pm-grid div {
  aspect-ratio: 1;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255,255,255,.6), rgba(255,255,255,.2));
  border: 1px solid rgba(255,255,255,.5);
}

/* Mint — Auto */
.project-card__media--mint {
  background:
    radial-gradient(500px 400px at 80% 20%, rgba(120,255,180,.25), transparent 60%),
    linear-gradient(135deg, #1A1A1A, #0F1715);
  color: #fff;
}
.pm-content--auto .pm-tagline {
  font-family: ui-monospace, "SF Mono", monospace;
  font-size: 12px; letter-spacing: .12em;
  color: rgba(255,255,255,.7);
  margin-bottom: 16px;
}
.pm-content--auto .pm-big {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 500; letter-spacing: -0.04em;
  color: #fff; line-height: 1.05;
  margin-bottom: auto;
  font-family: var(--f-serif); font-style: italic;
}
.pm-content--auto .pm-stat {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.pm-content--auto .pm-stat div {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex; flex-direction: column; gap: 2px;
}
.pm-content--auto .pm-stat strong { font-size: 18px; color: #fff; letter-spacing: -0.02em; }
.pm-content--auto .pm-stat span { font-size: 11px; color: rgba(255,255,255,.6); }

/* Blue — Studio */
.project-card__media--blue {
  background:
    radial-gradient(700px 400px at 50% 0%, rgba(50,107,255,.18), transparent 60%),
    linear-gradient(180deg, #F5F7FF, #E8EEFF);
}
.pm-content--studio .pm-eyebrow {
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 18px;
}
.pm-content--studio .pm-h {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 500; letter-spacing: -0.035em;
  color: var(--ink); line-height: 1.0;
  margin-bottom: 28px;
}
.pm-content--studio .pm-h em { color: var(--accent); font-weight: 400; }
.pm-content--studio .pm-pills {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.pm-content--studio .pm-pills span {
  padding: 6px 14px; border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 12.5px; color: var(--ink);
}
.pm-content--studio .pm-mask {
  position: absolute; right: -60px; bottom: -60px;
  width: 240px; height: 240px; border-radius: 999px;
  background: radial-gradient(closest-side, rgba(50,107,255,.3), transparent 70%);
  filter: blur(20px);
}

.project-card__meta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 0 4px;
}
.project-card__tag {
  display: block;
  font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 6px;
}
.project-card__meta h3 {
  font-size: 22px; font-weight: 600; letter-spacing: -0.025em;
  color: var(--ink);
}
.project-card__arrow {
  width: 44px; height: 44px; border-radius: 999px;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  transition: background .3s var(--ease), color .3s var(--ease), transform .4s var(--ease);
  flex-shrink: 0;
}
.project-card:hover .project-card__arrow {
  background: var(--ink); color: var(--white); border-color: var(--ink);
  transform: rotate(-45deg);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.portrait {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--light-gray);
}
.portrait__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(600px 400px at 30% 30%, rgba(50,107,255,.16), transparent 60%),
    linear-gradient(180deg, #F5F5F7, #E8E8EC);
}
.portrait__silhouette {
  position: absolute; inset: 0;
  display: grid; place-items: end center;
}
.portrait__silhouette svg {
  width: 75%; height: auto;
  filter: blur(.3px);
}
.portrait__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: saturate(.95) contrast(1.02);
  transition: transform 1.2s var(--ease-out);
}
.portrait:hover .portrait__img { transform: scale(1.03); }
.portrait__img + .portrait__badge,
.portrait .portrait__badge { z-index: 2; }
.portrait::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,.18) 100%);
  pointer-events: none;
  z-index: 1;
}
.portrait__badge {
  position: absolute; bottom: 20px; left: 20px;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 999px;
  font-size: 13px; font-weight: 500;
  box-shadow: 0 8px 24px -16px rgba(0,0,0,.2);
}

.about__quote {
  font-family: var(--f-serif);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 32px 0 24px;
  position: relative;
  padding-left: 24px;
  border-left: 2px solid var(--accent);
}
.quote-mark {
  font-family: var(--f-serif);
  position: absolute;
  left: 8px; top: -10px;
  color: var(--accent);
  font-size: 40px;
  line-height: 1;
}
.about__text {
  font-size: 17px; color: var(--muted);
  line-height: 1.6;
  max-width: 540px;
}

.about__points {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
  max-width: 540px;
}
.about__points li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.about__points li strong {
  color: var(--ink);
  font-weight: 600;
}
.about__points-icon {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  margin-top: 1px;
}
.about__points-icon svg {
  width: 14px;
  height: 14px;
}

.signature {
  display: flex; align-items: center; gap: 16px;
  margin-top: 40px;
}
.signature svg { width: 120px; height: 36px; }
.signature span {
  font-size: 13.5px; color: var(--muted);
  letter-spacing: -0.01em;
}

/* ─────────────────────────────────────────────────────────
   ABOUT — Centered (no portrait) variant
   ───────────────────────────────────────────────────────── */
.about--centered {
  position: relative;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(800px 400px at 50% 0%, var(--accent-soft), transparent 70%),
    var(--white);
}
.about--centered .about__watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(280px, 36vw, 520px);
  line-height: 0.9;
  color: var(--ink);
  opacity: 0.025;
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.about__inner-centered {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about__inner-centered .eyebrow { justify-content: center; margin-top: 18px; }

/* Pill at top */
.about__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink);
  box-shadow: 0 10px 30px -16px rgba(0,0,0,.08);
}
.about__pill .logo-mark {
  width: 24px; height: 24px;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  display: grid; place-items: center;
}
.about__pill .logo-mark svg { width: 14px; height: 14px; }

/* Title */
.about__title {
  margin-top: 14px;
  margin-bottom: 36px;
  font-size: clamp(40px, 5.5vw, 72px);
  letter-spacing: -0.045em;
  line-height: 1.0;
}
.about__title em { color: var(--accent); }

/* Big pull quote */
.about__quote-big {
  position: relative;
  max-width: 720px;
  margin: 0 auto 36px;
  padding: 0 60px;
}
.about__quote-big p {
  font-family: var(--f-serif);
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--ink);
  font-style: italic;
}
.about__quote-mark {
  position: absolute;
  font-family: var(--f-serif);
  color: var(--accent);
  font-size: clamp(64px, 7vw, 96px);
  line-height: 1;
  font-weight: 400;
  opacity: 0.85;
  pointer-events: none;
}
.about__quote-mark--open {
  top: -12px; left: 0;
}
.about__quote-mark--close {
  bottom: -36px; right: 0;
}

/* Body text */
.about__text-centered {
  max-width: 640px;
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 auto 48px;
}

/* Trust points 2x2 */
.about__points-grid {
  list-style: none;
  padding: 0;
  margin: 0 0 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  width: 100%;
  max-width: 760px;
  text-align: left;
}
.about__points-grid li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .3s var(--ease), transform .3s var(--ease-out), box-shadow .3s var(--ease);
}
.about__points-grid li:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -24px rgba(0,0,0,.15);
}
.about__points-grid .about__points-icon {
  flex: 0 0 32px;
  width: 32px; height: 32px;
}
.about__points-grid .about__points-icon svg { width: 16px; height: 16px; }
.about__points-grid li strong {
  display: block;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.about__points-grid li span {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

/* Signature block */
.about__signature-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  width: 100%;
  max-width: 420px;
}
.about__signature-svg {
  width: 200px;
  height: 56px;
  color: var(--ink);
}
.about__signature-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.about__signature-meta strong {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.about__signature-meta span {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: -0.005em;
}

/* Responsive */
@media (max-width: 720px) {
  .about--centered .about__watermark { font-size: clamp(200px, 50vw, 320px); }
  .about__quote-big { padding: 0 40px; }
  .about__quote-mark--open { top: -8px; }
  .about__quote-mark--close { bottom: -28px; }
  .about__points-grid { grid-template-columns: 1fr; max-width: 480px; gap: 12px; }
  .about__points-grid li { padding: 20px; }
  .about__title { font-size: clamp(32px, 8vw, 48px); margin-bottom: 28px; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.testimonial-slider__track {
  display: flex;
  transition: transform .8s var(--ease-out);
}
.testimonial {
  flex: 0 0 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 5vw, 64px);
  display: flex; flex-direction: column; gap: 28px;
  min-height: 320px;
}
.testimonial p {
  font-family: var(--f-serif);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.testimonial footer {
  display: flex; align-items: center; gap: 16px;
  margin-top: auto;
}
.testimonial footer strong {
  display: block; font-weight: 600; font-size: 15px;
  letter-spacing: -0.01em; color: var(--ink);
}
.testimonial footer span {
  font-size: 13.5px; color: var(--muted);
}

.testimonial-slider__controls {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-top: 32px;
}
.ts-btn {
  width: 48px; height: 48px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  display: grid; place-items: center;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.ts-btn:hover {
  background: var(--ink); color: var(--white); border-color: var(--ink);
}
.ts-dots {
  display: flex; gap: 8px;
}
.ts-dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--line);
  transition: width .3s var(--ease), background .3s var(--ease);
  cursor: pointer; border: none; padding: 0;
}
.ts-dot.is-active {
  width: 24px; background: var(--ink);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq__inner {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.faq__head { position: sticky; top: 120px; }

.faq__list {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 4px;
  list-style: none;
  cursor: pointer;
  font-size: clamp(17px, 1.4vw, 21px);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
  transition: color .3s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent); }
.faq-item__icon {
  position: relative;
  width: 22px; height: 22px;
  flex-shrink: 0;
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: ""; position: absolute;
  background: var(--ink);
  transition: transform .35s var(--ease);
}
.faq-item__icon::before {
  width: 14px; height: 1.6px;
  top: 10.2px; left: 4px;
}
.faq-item__icon::after {
  width: 1.6px; height: 14px;
  top: 4px; left: 10.2px;
}
.faq-item[open] .faq-item__icon::after { transform: scaleY(0); }
.faq-item[open] summary { color: var(--accent); }
.faq-item__body {
  padding: 0 4px 24px;
  max-width: 640px;
}
.faq-item__body p {
  font-size: 15.5px; color: var(--muted); line-height: 1.6;
}

/* ============================================================
   CTA
   ============================================================ */
.cta { padding-top: 0; }
.cta__card {
  position: relative;
  background: linear-gradient(135deg, #0E0E12 0%, #1A1A20 100%);
  border-radius: var(--radius-xl);
  padding: clamp(60px, 8vw, 120px) clamp(32px, 6vw, 96px);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.cta__glow {
  position: absolute; inset: 0; z-index: -1;
}
.cta__glow::before,
.cta__glow::after {
  content: ""; position: absolute;
  border-radius: 50%; filter: blur(80px);
}
.cta__glow::before {
  width: 500px; height: 500px;
  left: -100px; top: -200px;
  background: radial-gradient(closest-side, rgba(50,107,255,.55), transparent 70%);
}
.cta__glow::after {
  width: 400px; height: 400px;
  right: -100px; bottom: -150px;
  background: radial-gradient(closest-side, rgba(50,107,255,.35), transparent 70%);
}
.cta__content { position: relative; max-width: 800px; }
.cta__title {
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.0;
  letter-spacing: -0.045em;
  font-weight: 600;
  color: #fff;
  margin: 24px 0 24px;
}
.cta__title em { color: #B8CBFF; }
.cta__sub {
  font-size: clamp(16px, 1.2vw, 19px);
  color: rgba(255,255,255,.65);
  max-width: 560px;
  margin-bottom: 40px;
}
.cta__buttons {
  display: flex; flex-wrap: wrap; gap: 12px;
}
.cta .btn--primary {
  background: var(--accent);
  box-shadow: 0 8px 24px -8px rgba(50,107,255,.5);
}
.cta .btn--primary:hover {
  background: #fff; color: var(--ink);
  box-shadow: 0 14px 36px -10px rgba(255,255,255,.3);
}

/* ============================================================
   BOOKING (Calendly-style)
   ============================================================ */
.booking-card {
  display: grid;
  grid-template-columns: 0.85fr 1.6fr;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px -40px rgba(0,0,0,.15);
}

/* ── Sidebar ─────────────────────────────────────────────── */
.booking__side {
  background: linear-gradient(180deg, #0F0F11 0%, #1A1A1D 100%);
  color: #fff;
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.booking-host {
  display: flex; align-items: center; gap: 14px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.booking-host__avatar {
  width: 48px; height: 48px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #6B8FFF);
  display: grid; place-items: center;
  color: #fff;
  flex-shrink: 0;
}
.booking-host__avatar svg { width: 22px; height: 22px; }
.booking-host strong {
  display: block;
  font-size: 16px; font-weight: 600;
  letter-spacing: -0.015em;
}
.booking-host span {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,.55);
  margin-top: 2px;
}

.booking-meta {
  list-style: none;
  display: grid; gap: 14px;
  padding: 0;
}
.booking-meta li {
  display: flex; align-items: center; gap: 12px;
  font-size: 14.5px;
  color: rgba(255,255,255,.78);
}
.booking-meta li svg { color: var(--accent); flex-shrink: 0; }

.booking-summary {
  margin-top: auto;
  padding: 20px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
}
.booking-summary__title {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255,255,255,.5);
  margin-bottom: 12px;
}
.booking-summary__row {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 10px;
  padding: 6px 0;
  font-size: 13.5px;
}
.booking-summary__row span { color: rgba(255,255,255,.55); }
.booking-summary__row strong {
  color: #fff; font-weight: 500;
  text-align: right;
  letter-spacing: -0.01em;
}

/* ── Main / steps ────────────────────────────────────────── */
.booking__main {
  padding: clamp(28px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  min-height: 580px;
}

.booking-steps {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 32px;
}
.booking-step {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px;
  color: var(--muted);
  transition: color .3s var(--ease);
}
.booking-step span {
  width: 26px; height: 26px;
  display: grid; place-items: center;
  border-radius: 999px;
  background: var(--light-gray);
  color: var(--muted-2);
  font-size: 12px; font-weight: 600;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.booking-step em {
  font-style: normal; font-family: var(--f-sans);
  font-weight: 500;
}
.booking-step.is-active { color: var(--ink); }
.booking-step.is-active span {
  background: var(--ink); color: #fff;
}
.booking-step.is-done span {
  background: var(--accent); color: #fff;
}
.booking-steps__bar {
  flex: 1; height: 2px;
  background: var(--line);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  min-width: 16px;
}
.booking-steps__bar.is-done { background: var(--accent); }

/* ── Panels ──────────────────────────────────────────────── */
.booking-panel {
  display: none;
  flex: 1;
  animation: panelIn .4s var(--ease-out);
}
.booking-panel.is-active { display: block; }
@keyframes panelIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.booking-panel h3 {
  font-size: clamp(22px, 2vw, 26px);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 6px;
}
.booking-panel__lead {
  font-size: 14.5px;
  color: var(--muted);
  margin-bottom: 24px;
}

/* ── Form ────────────────────────────────────────────────── */
.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.booking-form label {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 500;
}
.booking-form label.span-2 { grid-column: span 2; }
.booking-form label > span i {
  color: var(--accent);
  font-style: normal;
  margin-left: 2px;
}
.booking-form label > span em {
  color: var(--muted-2);
  font-style: normal; font-family: var(--f-sans);
  font-weight: 400;
  margin-left: 4px;
}
.booking-form input,
.booking-form select,
.booking-form textarea {
  font: inherit;
  font-size: 14.5px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
  width: 100%;
  font-family: inherit;
}
.booking-form textarea { resize: vertical; min-height: 80px; }
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: 0;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.booking-form input.is-invalid,
.booking-form select.is-invalid {
  border-color: #E5484D;
  box-shadow: 0 0 0 4px rgba(229, 72, 77, .1);
}

/* ── Calendar ────────────────────────────────────────────── */
.cal { width: 100%; }
.cal__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.cal__head strong {
  font-size: 16px; font-weight: 600;
  color: var(--ink); letter-spacing: -0.01em;
  text-transform: capitalize;
}
.cal__nav {
  width: 36px; height: 36px;
  border-radius: 999px;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--ink-soft);
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .2s var(--ease);
}
.cal__nav:hover:not(:disabled) {
  background: var(--light-gray); border-color: var(--ink);
}
.cal__nav:disabled { opacity: .35; cursor: not-allowed; }

.cal__weekdays,
.cal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.cal__weekdays {
  margin-bottom: 8px;
}
.cal__weekdays span {
  font-size: 11px; font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted-2);
  text-align: center;
  padding: 6px 0;
}

.cal__day {
  aspect-ratio: 1;
  border-radius: 10px;
  background: var(--light-gray);
  color: var(--ink);
  font-size: 14px; font-weight: 500;
  display: grid; place-items: center;
  cursor: pointer;
  position: relative;
  transition: background .2s var(--ease), color .2s var(--ease), transform .15s var(--ease);
}
.cal__day:hover:not(:disabled):not(.is-busy) {
  background: var(--accent-soft);
  color: var(--accent);
  transform: translateY(-1px);
}
.cal__day.is-empty {
  background: transparent; cursor: default;
  pointer-events: none;
}
.cal__day.is-past,
.cal__day:disabled {
  color: var(--muted-2); opacity: .35;
  background: transparent;
  cursor: not-allowed;
}
.cal__day.is-busy {
  color: var(--muted-2);
  background: transparent;
  text-decoration: line-through;
  cursor: not-allowed;
}
.cal__day.is-today::after {
  content: "";
  position: absolute; bottom: 5px;
  width: 4px; height: 4px;
  border-radius: 999px;
  background: var(--accent);
}
.cal__day.is-selected {
  background: var(--ink) !important;
  color: #fff !important;
  transform: none;
}
.cal__day.is-selected::after { background: #fff; }

.cal__legend {
  display: flex; gap: 18px; flex-wrap: wrap;
  margin-top: 18px;
  font-size: 12px;
  color: var(--muted);
}
.cal__legend i {
  display: inline-block; width: 10px; height: 10px;
  border-radius: 999px; margin-right: 6px;
  vertical-align: -1px;
}
.dot--avail { background: var(--accent-soft); border: 1px solid var(--accent); }
.dot--sel { background: var(--ink); }
.dot--busy { background: transparent; border: 1px solid var(--line); }

/* ── Time slots ──────────────────────────────────────────── */
.slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 10px;
}
.slot {
  padding: 14px 10px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 10px;
  font-size: 14px; font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease), transform .15s var(--ease);
}
.slot:hover:not(:disabled) {
  border-color: var(--ink);
  transform: translateY(-1px);
}
.slot.is-selected {
  background: var(--ink); color: #fff;
  border-color: var(--ink);
}
.slot:disabled {
  color: var(--muted-2);
  text-decoration: line-through;
  cursor: not-allowed;
  background: var(--light-gray);
  border-color: transparent;
}
.slots__empty {
  grid-column: 1 / -1;
  padding: 32px;
  text-align: center;
  border: 1px dashed var(--line);
  border-radius: 12px;
  color: var(--muted);
  font-size: 14px;
}
.booking-tz {
  margin-top: 24px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px;
  color: var(--muted);
  background: var(--light-gray);
  padding: 8px 12px;
  border-radius: 999px;
}
.booking-tz svg { color: var(--muted-2); }

/* ── Success ─────────────────────────────────────────────── */
.booking-success {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  padding: 24px 8px;
  gap: 8px;
}
.booking-success__check {
  width: 80px; height: 80px;
  color: var(--accent);
  margin-bottom: 8px;
}
.booking-success__check .check-path {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: drawCheck .6s var(--ease-out) .2s forwards;
}
@keyframes drawCheck { to { stroke-dashoffset: 0; } }
.booking-success h3 {
  font-size: 26px;
}
.booking-success > p {
  font-size: 15px; color: var(--muted);
  max-width: 460px;
  line-height: 1.55;
}
.booking-success__card {
  margin: 18px 0 4px;
  padding: 20px 24px;
  background: var(--light-gray);
  border-radius: 14px;
  display: grid; gap: 6px;
  min-width: 280px;
  text-align: left;
}
.booking-success__card .row {
  display: flex; justify-content: space-between; gap: 16px;
  font-size: 14px;
}
.booking-success__card .row span { color: var(--muted); }
.booking-success__card .row strong { color: var(--ink); font-weight: 600; }
.booking-success__hint {
  font-size: 13px; color: var(--muted-2);
  margin-top: 10px;
}
.booking-success__hint a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }

/* ── Controls ────────────────────────────────────────────── */
.booking-controls {
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.booking-controls[data-hidden="true"] { display: none; }
.booking-controls .btn[data-back][hidden] { visibility: hidden; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 960px) {
  .booking-card { grid-template-columns: 1fr; }
  .booking__side { padding: 28px; }
  .booking-summary { margin-top: 24px; }
  .booking__main { min-height: 0; padding: 28px; }
  .booking-form { grid-template-columns: 1fr; }
  .booking-form label.span-2 { grid-column: auto; }
}
@media (max-width: 520px) {
  .booking-step em { display: none; }
  .booking-steps { gap: 6px; }
  .slots { grid-template-columns: repeat(2, 1fr); }
  .cal__weekdays span { font-size: 10px; }
}

/* ============================================================
   SERVICE DETAIL PANEL (Slide-In Right)
   ============================================================ */
.srv-panel {
  position: fixed; inset: 0;
  z-index: 100;
  pointer-events: none;
  visibility: hidden;
}
.srv-panel.is-open { pointer-events: auto; visibility: visible; }

.srv-panel__backdrop {
  position: absolute; inset: 0;
  background: rgba(15, 15, 18, .55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.srv-panel.is-open .srv-panel__backdrop { opacity: 1; }

.srv-panel__sheet {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(720px, 96vw);
  background: var(--white);
  display: flex; flex-direction: column;
  transform: translateX(105%);
  transition: transform .55s var(--ease-out);
  box-shadow: -40px 0 80px -30px rgba(0,0,0,.25);
}
.srv-panel.is-open .srv-panel__sheet { transform: translateX(0); }

.srv-panel__bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 18px 28px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  position: sticky; top: 0;
  z-index: 2;
}
.srv-panel__crumb {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: -0.005em;
}
.srv-panel__crumb em {
  font-style: normal; font-family: var(--f-sans);
  font-weight: 500;
  color: var(--ink);
}
.srv-panel__crumb span { margin: 0 6px; color: var(--muted-2); }
.srv-panel__close {
  width: 36px; height: 36px;
  border-radius: 999px;
  background: var(--light-gray);
  display: grid; place-items: center;
  color: var(--ink);
  transition: background .25s var(--ease), transform .2s var(--ease);
}
.srv-panel__close:hover {
  background: var(--ink); color: #fff;
  transform: rotate(90deg);
}

.srv-panel__scroll {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 48px 56px 72px;
  scroll-behavior: smooth;
}
.srv-panel__scroll::-webkit-scrollbar { width: 8px; }
.srv-panel__scroll::-webkit-scrollbar-thumb {
  background: var(--line); border-radius: 4px;
}

/* ── Inner content typography ────────────────────────────── */
.srv {
  max-width: 560px;
}
.srv-hero {
  margin-bottom: 48px;
}
.srv-hero__count {
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 10px;
}
.srv-hero__count::before {
  content: "";
  width: 24px; height: 1px; background: var(--ink);
  display: inline-block;
}
.srv-hero__icon {
  width: 64px; height: 64px;
  display: grid; place-items: center;
  background: var(--ink);
  color: #fff;
  border-radius: 18px;
  margin-bottom: 28px;
  box-shadow: 0 16px 40px -16px rgba(0,0,0,.3);
}
.srv-hero__icon svg { width: 30px; height: 30px; }
.srv-hero__title {
  font-size: clamp(36px, 4.5vw, 54px);
  line-height: 1.0;
  letter-spacing: -0.045em;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 18px;
}
.srv-hero__title em { color: var(--accent); }
.srv-hero__promise {
  font-family: var(--f-serif);
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 20px;
}
.srv-hero__lead {
  font-size: 16.5px;
  color: var(--muted);
  line-height: 1.65;
}

/* Stats row */
.srv-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 40px 0 56px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.srv-stats__item {
  padding: 22px 0;
  border-right: 1px solid var(--line);
}
.srv-stats__item:last-child { border-right: 0; }
.srv-stats__num {
  font-size: 22px; font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.srv-stats__num em { color: var(--accent); }
.srv-stats__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted-2);
  margin-top: 6px;
}

/* Section blocks */
.srv-block { margin-bottom: 48px; }
.srv-block__head {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--muted-2);
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 10px;
}
.srv-block__head::before {
  content: ""; width: 16px; height: 1px;
  background: var(--ink);
}
.srv-block__title {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 22px;
}

/* Deliverables / ideal-for list */
.srv-list {
  list-style: none;
  display: grid; gap: 14px;
}
.srv-list li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.srv-list li strong { color: var(--ink); font-weight: 600; }
.srv-list__check {
  flex: 0 0 24px;
  width: 24px; height: 24px;
  display: inline-grid; place-items: center;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  margin-top: 1px;
}
.srv-list__check svg { width: 12px; height: 12px; }
.srv-list__dot {
  flex: 0 0 6px;
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--ink);
  margin-top: 10px;
}

/* Process steps */
.srv-process {
  display: grid; gap: 16px;
}
.srv-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
}
.srv-step:last-child { border-bottom: 0; }
.srv-step__num {
  font-family: var(--f-serif);
  font-size: 22px;
  font-style: italic;
  color: var(--accent);
  line-height: 1;
}
.srv-step__title {
  font-size: 17px; font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.srv-step__desc {
  font-size: 14.5px; color: var(--muted);
  line-height: 1.55;
}

/* Pricing tiers */
.srv-tiers {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
.srv-tier {
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 14px 24px;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.srv-tier:hover {
  border-color: var(--ink);
  transform: translateY(-1px);
}
.srv-tier--feat {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.srv-tier--feat .srv-tier__name,
.srv-tier--feat .srv-tier__price,
.srv-tier--feat .srv-tier__price em { color: #fff; }
.srv-tier--feat .srv-tier__desc { color: rgba(255,255,255,.65); }
.srv-tier--feat .srv-tier__badge {
  background: var(--accent); color: #fff;
}
.srv-tier__name {
  font-size: 14px; font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
  display: flex; align-items: center; gap: 10px;
}
.srv-tier__badge {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 3px 8px;
  border-radius: 999px;
}
.srv-tier__price {
  font-size: 22px; font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.025em;
  text-align: right;
  white-space: nowrap;
  grid-row: span 2;
}
.srv-tier__price em {
  font-style: normal; font-family: var(--f-sans);
  font-size: 12px; font-weight: 500;
  color: var(--muted);
  display: block; margin-top: 2px;
}
.srv-tier__desc {
  font-size: 14px; color: var(--muted);
  line-height: 1.55;
  grid-column: 1;
}

/* CTA footer */
.srv-cta {
  margin-top: 8px;
  padding: 28px;
  background: linear-gradient(135deg, #0F0F11 0%, #1A1A1D 100%);
  border-radius: var(--radius-lg);
  color: #fff;
  display: flex; flex-direction: column; gap: 18px;
}
.srv-cta h4 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.2;
}
.srv-cta h4 em {
  color: #B8CBFF;
}
.srv-cta p {
  font-size: 14.5px;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
}
.srv-cta__row {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 4px;
}
.srv-cta .btn--primary {
  background: var(--accent);
}
.srv-cta .btn--ghost {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.15);
  color: #fff;
}
.srv-cta .btn--ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.3);
}

/* Service cards: make clickable + hover lift */
.service-card[data-service] {
  cursor: pointer;
}
.service-card[data-service]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: var(--radius);
}

/* Body scroll lock */
body.no-scroll { overflow: hidden; }

/* Responsive */
@media (max-width: 720px) {
  .srv-panel__bar { padding: 14px 20px; }
  .srv-panel__scroll { padding: 32px 24px 56px; }
  .srv-stats { grid-template-columns: 1fr 1fr; }
  .srv-stats__item:nth-child(3) {
    grid-column: span 2;
    border-top: 1px solid var(--line);
    border-right: 0;
  }
  .srv-stats__item:nth-child(2) { border-right: 0; }
  .srv-tier {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .srv-tier__price {
    grid-row: auto; text-align: left;
  }
}

/* ============================================================
   LEGAL PAGES (Datenschutz, Impressum, AGB)
   ============================================================ */
.legal-body { background: var(--white); }

.legal {
  padding-top: clamp(120px, 16vh, 180px);
  padding-bottom: clamp(60px, 8vh, 120px);
}
.legal__head {
  max-width: 820px;
  margin: 0 auto clamp(40px, 5vw, 64px);
  text-align: center;
}
.legal__head .eyebrow {
  justify-content: center;
}
.legal__title {
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.0;
  letter-spacing: -0.045em;
  font-weight: 600;
  margin: 18px 0 14px;
  color: var(--ink);
}
.legal__meta {
  font-size: 14.5px;
  color: var(--muted);
  letter-spacing: -0.005em;
}

.legal__layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 64px;
  max-width: 1080px;
  margin: 0 auto;
}
.legal__layout--single {
  grid-template-columns: 1fr;
  max-width: 760px;
  gap: 0;
}
.legal__layout--single .legal__content { max-width: 100%; }

/* ── Table of contents (sticky sidebar) ──────────────────── */
.legal__toc {
  position: relative;
}
.legal__toc-inner {
  position: sticky;
  top: 120px;
  font-size: 13.5px;
  padding-right: 12px;
  border-right: 1px solid var(--line);
}
.legal__toc strong {
  display: block;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--muted-2);
  margin-bottom: 16px;
}
.legal__toc ol {
  list-style: none;
  padding: 0; margin: 0;
  counter-reset: toc;
  display: flex; flex-direction: column;
  gap: 2px;
}
.legal__toc li {
  counter-increment: toc;
}
.legal__toc a {
  display: flex;
  gap: 10px;
  padding: 7px 8px;
  border-radius: 8px;
  color: var(--ink-soft);
  line-height: 1.35;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.legal__toc a::before {
  content: counter(toc, decimal-leading-zero);
  color: var(--muted-2);
  font-variant-numeric: tabular-nums;
  font-size: 11.5px;
  flex-shrink: 0;
  padding-top: 2px;
}
.legal__toc a:hover {
  background: var(--light-gray);
  color: var(--ink);
}

/* ── Article content ─────────────────────────────────────── */
.legal__content {
  max-width: 680px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
}
.legal__content section {
  padding: 36px 0;
  border-bottom: 1px solid var(--line-soft);
  scroll-margin-top: 120px;
}
.legal__content section:first-child { padding-top: 0; }
.legal__content section:last-of-type { border-bottom: 0; }

.legal__content h2 {
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 16px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.legal__content h2 span {
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  font-size: 0.85em;
}
.legal__content p {
  margin: 0 0 14px;
}
.legal__content p:last-child { margin-bottom: 0; }
.legal__content strong { color: var(--ink); font-weight: 600; }
.legal__content em { font-style: italic; font-family: inherit; }
.legal__content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.legal__content a:hover { color: var(--ink); }
.legal__content ul {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex; flex-direction: column;
  gap: 10px;
}
.legal__content ul li {
  position: relative;
  padding-left: 22px;
}
.legal__content ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 11px;
  width: 12px; height: 1px;
  background: var(--muted-2);
}
.legal__content code {
  font-family: ui-monospace, "SF Mono", monospace;
  font-size: 0.92em;
  background: var(--light-gray);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--ink);
}

.legal-card {
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin: 8px 0 18px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
}
.legal-card strong { color: var(--ink); }
.legal-card a { color: var(--accent); }
.legal-placeholder {
  color: var(--accent);
  font-style: normal;
  font-family: ui-monospace, "SF Mono", monospace;
  font-size: 0.92em;
  background: var(--accent-soft);
  padding: 1px 6px;
  border-radius: 4px;
}
.legal-note {
  margin-top: 14px !important;
  padding: 14px 18px;
  background: rgba(50,107,255,.04);
  border-left: 2px solid var(--accent);
  border-radius: 0 8px 8px 0;
  font-size: 14.5px;
  color: var(--ink-soft);
}

.legal__back {
  display: inline-block;
  margin-top: 32px;
  font-size: 14px;
  color: var(--muted);
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.legal__back:hover {
  background: var(--ink); color: #fff; border-color: var(--ink);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 960px) {
  .legal__layout { grid-template-columns: 1fr; gap: 40px; }
  .legal__toc-inner {
    position: static;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-right: 0;
    padding-bottom: 28px;
  }
  .legal__toc ol { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
}
@media (max-width: 520px) {
  .legal__toc ol { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--white);
  padding: 80px 0 32px;
  border-top: 1px solid var(--line);
  position: relative; z-index: 2;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--line);
}
.footer__brand p {
  font-size: 14.5px; color: var(--muted);
  margin-top: 16px; max-width: 280px;
}
.footer__col {
  display: flex; flex-direction: column; gap: 12px;
}
.footer__col h4 {
  font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted-2); font-weight: 500;
  margin-bottom: 4px;
}
.footer__col a, .footer__col span {
  font-size: 14.5px; color: var(--ink-soft);
  transition: color .25s var(--ease);
  width: fit-content;
}
.footer__col a:hover { color: var(--accent); }

.footer__big {
  font-size: clamp(80px, 18vw, 260px);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: .9;
  color: var(--ink);
  text-align: center;
  margin: 80px 0 40px;
  background: linear-gradient(180deg, var(--ink) 30%, transparent 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  user-select: none;
}

.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px; color: var(--muted);
}
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { transition: color .25s var(--ease); }
.footer__legal a:hover { color: var(--ink); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  transition-delay: calc(var(--d, 0) * 1ms);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hero__inner { grid-template-columns: 1fr; gap: 60px; }
  .hero__visual { max-width: 560px; margin: 0 auto; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: 1fr; }
  .why__grid::before { display: none; }
  .why-block { min-height: auto; flex-direction: row; align-items: center; }
  .why-block__visual { width: 220px; height: 180px; margin-bottom: 0; margin-right: 32px; flex-shrink: 0; }
  .why-block__bignum { font-size: 140px; top: -8px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .about__inner { grid-template-columns: 1fr; gap: 48px; }
  .portrait { max-width: 420px; }
  .faq__inner { grid-template-columns: 1fr; gap: 48px; }
  .faq__head { position: static; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav .btn--primary { padding: 9px 14px; font-size: 13px; }

  .hero { padding: 130px 0 60px; }
  .hero__title { font-size: clamp(40px, 12vw, 60px); }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { justify-content: center; }
  .device { transform: none; }
  .float-card--a { left: -8px; top: -16px; padding: 10px 14px; }
  .float-card--b { right: -8px; bottom: -16px; padding: 10px 14px; }
  .float-card__num { font-size: 18px; }

  .scroll-hint { display: none; }

  .services__grid { grid-template-columns: 1fr; border-radius: var(--radius); }
  .why-block { flex-direction: column; padding: 28px; }
  .why-block__visual { width: 100%; height: 180px; margin-right: 0; margin-bottom: 24px; }
  .why-block__bignum { font-size: 120px; }
  .why__orb { width: 400px; height: 400px; filter: blur(80px); }

  .stats { grid-template-columns: 1fr 1fr; }
  .stat { padding: 24px 16px; }

  .timeline__item { grid-template-columns: 60px 1fr; gap: 8px; padding: 24px 0; }
  .timeline__dot { display: none; }

  .projects__grid { grid-template-columns: 1fr; }
  .project-card, .project-card--lg { grid-column: 1 / -1 !important; }

  .section__header--row { grid-template-columns: 1fr; gap: 24px; }

  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
