/* ============================================================
   LassoMedia – main.css
   Premium, minimalist. Self-hosted. No external dependencies.
   ============================================================ */

/* ── Fonts ── */
@font-face {
  font-family: 'WU';
  src: url('../fonts/WonderUnitSans-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'WU';
  src: url('../fonts/WonderUnitSans-Medium.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'WU';
  src: url('../fonts/WonderUnitSans-Semibold.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'WU';
  src: url('../fonts/WonderUnitSans-Bold.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'WU';
  src: url('../fonts/THICCCBOI-Bold.woff2') format('woff2');
  font-weight: 800; font-style: normal; font-display: swap;
}

/* ── Design Tokens ── */
:root {
  --font:          'WU', system-ui, Arial, sans-serif;

  --ink:           #111111;
  --ink-muted:     #555555;
  --ink-faint:     #999999;

  --bg:            #ffffff;
  --surface:       #f7f6f4;
  --surface-warm:  #f2f1ee;
  --border:        #e8e8e6;
  --border-light:  #f0f0ee;

  --dark:          #111111;
  --dark-hover:    #2a2a2a;

  --green:         #0a9250;

  --r-card:        24px;
  --r-btn:         12px;
  --r-sm:          10px;

  --shadow-xs:     0 1px 4px rgba(0,0,0,0.05);
  --shadow-sm:     0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:     0 8px 32px rgba(0,0,0,0.08);
  --shadow-lg:     0 20px 60px rgba(0,0,0,0.10);
  --shadow-card-hover: 0 16px 48px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.06);

  --ease:          cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in:       cubic-bezier(0.55, 0, 1, 0.45);

  --section-v:     80px;
  --section-gap:   24px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: none;
}

@media (hover: none) { body { cursor: auto; } }

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 0.6em;
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.02em;
}

p   { margin: 0 0 1em; color: var(--ink-muted); }
a   { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font-family: var(--font); cursor: pointer; }

/* ── Custom Cursor ── */
#cursor {
  position: fixed;
  top: 0; left: 0;
  width: 20px;
  height: 20px;
  border: 1.5px solid rgba(0,0,0,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%) scale(1);
  transition: width 0.2s var(--ease),
              height 0.2s var(--ease),
              border-color 0.2s,
              background-color 0.2s,
              opacity 0.3s;
  will-change: transform;
}
#cursor.cursor-hover {
  width: 44px;
  height: 44px;
  border-color: rgba(0,0,0,0.18);
  background-color: rgba(0,0,0,0.04);
}
#cursor.cursor-hidden { opacity: 0; }
@media (hover: none) { #cursor { display: none; } }

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.up {
  transform: translateY(28px);
}
.reveal.scale {
  transform: scale(0.95) translateY(12px);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

/* ── Layout ── */
.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
  padding-bottom: 84px;
}

.container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 28px;
}
.container.wide { max-width: 1200px; }

/* ── Sections ── */
.section {
  padding: var(--section-v) 0;
}
.section.hero {
  padding: 48px 0 64px;
  position: relative;
  overflow: hidden;
}
.section.compact {
  padding: 40px 0;
}
.section.flush-top    { padding-top: 0; }
.section.flush-bottom { padding-bottom: 0; }

/* ── SVG Decorations ── */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.hero-bg svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140%;
  max-width: 1200px;
  height: auto;
  opacity: 0.6;
}

.section-accent {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 28px;
  pointer-events: none;
  overflow: hidden;
}
.section-accent svg { width: 100%; max-width: 1000px; }

/* ── Header ── */
.site-header {
  padding: 28px 0;
  position: relative;
  background: var(--bg);
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.header-logo {
  display: block;
  transition: opacity 0.2s;
}
.header-logo:hover { opacity: 0.7; }
.header-logo img   { height: 36px; width: auto; display: block; }

.header-ig {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  opacity: 0.45;
  transition: opacity 0.2s, transform 0.2s;
}
.header-ig:hover { opacity: 1; transform: translateY(calc(-50% - 2px)); }
.header-ig svg   { display: block; }

/* ── Cards ── */
.card {
  background: var(--surface);
  border-radius: var(--r-card);
  border: 1px solid var(--border);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
}
.card.no-hover:hover {
  transform: none;
  box-shadow: none;
}
.card.dark {
  background: var(--dark);
  border-color: var(--dark);
  color: #fff;
}
.card.dark:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

/* ── Hero Section ── */
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
}
.hero-emoji {
  display: inline-block;
  margin-bottom: 24px;
}
.hero-emoji img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  display: inline-block;
}
.hero-h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-muted);
  margin-bottom: 36px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}
.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-trust {
  margin-top: 28px;
  font-size: 13px;
  color: var(--ink-faint);
  letter-spacing: 0.01em;
}
.hero-trust span {
  display: inline-block;
  margin: 0 8px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  border-radius: var(--r-btn);
  padding: 16px 28px;
  border: none;
  text-decoration: none;
  cursor: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.2s, color 0.2s;
}
.btn-dark {
  background: var(--dark);
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18), 0 1px 3px rgba(0,0,0,0.1);
}
.btn-dark:hover {
  background: var(--dark-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.22), 0 3px 8px rgba(0,0,0,0.12);
}
.btn-ghost {
  background: transparent;
  color: var(--ink-muted);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--ink);
  color: var(--ink);
  transform: translateY(-2px);
}
.btn-white {
  background: #fff;
  color: var(--dark);
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.btn-icon {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--border);
  background: var(--bg);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.btn-icon:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  transform: scale(0.94);
}
.btn-icon:disabled {
  opacity: 0.3;
  pointer-events: none;
}
.btn-icon svg { display: block; }

/* Arrow icons inline SVG */
.arrow-svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ── About Card (standalone) ── */
.about-card {
  padding: 44px 52px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.about-avatar-wrap {
  position: relative;
  display: inline-flex;
  margin-bottom: 20px;
}
.about-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--bg);
  box-shadow: var(--shadow-sm);
}
.about-avatar-dot {
  position: absolute;
  bottom: 3px;
  right: 3px;
  width: 14px;
  height: 14px;
  background: var(--green);
  border: 2px solid var(--bg);
  border-radius: 50%;
}
.about-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 12px;
}
.about-h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.25;
}
.about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.about-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-muted);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 12px;
  white-space: nowrap;
}
.about-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-muted);
  margin: 0 0 28px;
}

/* ── Section Labels (reusable) ── */
.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 12px;
  text-align: center;
}
.section-heading {
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 52px;
  text-align: center;
}

/* ── Timeline ── */
.timeline-wrap {
  position: relative;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.tl-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 28px;
  padding-bottom: 44px;
  align-items: start;
  opacity: 0;
  transform: translateX(-18px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  position: relative;
}
.tl-item:last-child { padding-bottom: 0; }
.tl-item.visible    { opacity: 1; transform: none; }

/* connecting line: from center of this dot to center of next dot */
.tl-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 17px;
  top: 18px;
  bottom: -18px;
  width: 2px;
  background: var(--border);
  border-radius: 2px;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s var(--ease) 0.25s;
}
.tl-item.visible:not(:last-child)::before {
  transform: scaleY(1);
}

.tl-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
}
.tl-item.visible .tl-dot {
  background: var(--ink);
  border-color: var(--ink);
}
.tl-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-faint);
  line-height: 1;
  transition: color 0.4s var(--ease);
}
.tl-item.visible .tl-num { color: #fff; }

.tl-body { padding-top: 6px; }
.tl-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.tl-text {
  font-size: 15px;
  line-height: 1.72;
  color: var(--ink-muted);
  margin: 0;
  max-width: 72ch;
}

/* ── Profile Card (Modernes Webdesign) ── */
.profile-card {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: stretch;
  overflow: hidden;
}
.profile-left {
  padding: 52px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}
.profile-tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 24px;
}
.profile-tech-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 4px 10px;
}
.profile-heading {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.profile-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-muted);
  margin: 0 0 28px;
}
.profile-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.profile-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 12px;
  gap: 3px;
  text-align: center;
}
.profile-stat + .profile-stat {
  border-left: 1px solid var(--border);
}
.profile-stat-num {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
}
.profile-stat-label {
  font-size: 11px;
  color: var(--ink-faint);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.profile-right {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 28px 28px 12px;
}
.code-visual-wrap {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.14), 0 3px 10px rgba(0,0,0,0.08);
}
.code-visual {
  display: block;
  width: 100%;
  height: auto;
}

/* ── Tools Grid ── */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--section-gap);
}
.tool-card {
  padding: 36px 24px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.tool-card img {
  max-width: 180px;
  max-height: 140px;
  object-fit: contain;
  width: 100%;
}
.tool-icon-svg {
  width: 160px;
  height: 120px;
  display: block;
  flex-shrink: 0;
}
.tool-name {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.02em;
}

/* ── Clients Static Grid ── */
.clients-eyebrow {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 32px;
}
.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--section-gap);
}
.client-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 24px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  gap: 14px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.client-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
}
.client-logo-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-shadow: var(--shadow-xs);
  flex-shrink: 0;
}
.client-logo-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.client-item-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
}
.client-item-type {
  font-size: 13px;
  color: var(--ink-faint);
  margin: 0;
}

/* ── Testimonials ── */
.testimonials-header {
  text-align: center;
  margin-bottom: 40px;
}
.testimonials-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 12px;
}
.testimonials-heading {
  font-size: clamp(24px, 3.5vw, 34px);
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}
.testimonials-sub {
  font-size: 16px;
  color: var(--ink-muted);
  margin: 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--section-gap);
}
.testimonial-card {
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--bg);
  border: 1px solid var(--border);
}
.testimonial-stars {
  display: flex;
  gap: 3px;
}
.star {
  width: 16px;
  height: 16px;
  fill: #f5a623;
}
.testimonial-quote {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-muted);
  margin: 0;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--border-light);
}
.testimonial-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}
.testimonial-role {
  font-size: 12px;
  color: var(--ink-faint);
}
.testimonial-link {
  margin-left: auto;
  flex-shrink: 0;
  opacity: 0.4;
  transition: opacity 0.2s;
}
.testimonial-link:hover { opacity: 1; }
.testimonial-link img { width: 28px; height: 28px; }

/* ── Contact CTA ── */
.contact-card {
  padding: 72px 64px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 52px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.contact-card-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
}
.contact-emoji {
  transform: rotate(-6deg);
  transition: transform 0.4s var(--ease);
}
.contact-card:hover .contact-emoji { transform: rotate(0deg) scale(1.05); }
.contact-emoji img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}
.contact-heading {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
  line-height: 1.15;
}
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-link-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  transition: color 0.2s, gap 0.2s;
}
.contact-link-item:hover { color: #fff; gap: 16px; }
.contact-link-item svg  { flex-shrink: 0; opacity: 0.7; }

/* ── Bottom Navigation – always visible ── */
.bottom-nav {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  pointer-events: none;
  display: flex;
  justify-content: center;
}
.bottom-nav-inner {
  pointer-events: all;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.05);
}
.nav-pill-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  opacity: 0.45;
  transition: opacity 0.2s, background 0.2s, transform 0.2s;
}
.nav-pill-link:hover,
.nav-pill-link[aria-current="page"] {
  opacity: 1;
  background: var(--surface);
}
.nav-pill-link:hover { transform: translateY(-2px); }
.nav-pill-link img { width: 22px; height: 22px; }

/* ── Footer ── */
.site-footer {
  border-top: 1px solid var(--border-light);
  padding: 24px 0;
}
.footer-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 16px;
  font-size: 13px;
  color: var(--ink-faint);
}
.footer-inner a {
  color: var(--ink-muted);
  font-weight: 500;
  transition: color 0.2s;
}
.footer-inner a:hover { color: var(--ink); }
.footer-sep { opacity: 0.3; }

/* ── Section Divider (SVG wave) ── */
.section-divider {
  padding: 0 28px;
  overflow: hidden;
  pointer-events: none;
}
.section-divider svg {
  width: 100%;
  display: block;
  max-width: 1000px;
  margin: 0 auto;
}

/* ── Responsive: Tablet ≤ 900px ── */
@media (max-width: 900px) {
  :root { --section-v: 60px; }

  .profile-card {
    grid-template-columns: 1fr;
  }
  .profile-right {
    min-height: 280px;
    padding: 0 24px 24px;
  }

  .contact-card {
    padding: 52px 40px;
    gap: 36px;
  }
  .contact-card .contact-emoji img {
    width: 96px;
    height: 96px;
  }
}

/* ── Responsive: Mobile ≤ 680px ── */
@media (max-width: 680px) {
  :root { --section-v: 48px; --section-gap: 16px; }

  .container { padding: 0 20px; }

  .tools-grid        { grid-template-columns: 1fr; gap: 12px; }
  .clients-grid      { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .about-card  { padding: 32px 28px; max-width: 100%; }
  .tl-item     { gap: 18px; padding-bottom: 32px; }
  .tl-title    { font-size: 16px; }
  .tl-text     { font-size: 14px; }

  .profile-card  { grid-template-columns: 1fr; }
  .profile-left  { padding: 36px 28px; }
  .profile-right { min-height: 240px; }
  .profile-float { display: none; }
  .profile-stats { flex-direction: row; }

  .contact-card {
    grid-template-columns: 1fr;
    padding: 44px 28px;
    gap: 24px;
    text-align: center;
  }
  .contact-emoji { display: none; }
  .contact-links { align-items: center; }

  .hero-emoji img { width: 56px; height: 56px; }
  .hero-h1 { font-size: 30px; }
  .hero-sub { font-size: 16px; }

  .testimonial-card { padding: 28px; }

  .bottom-nav { bottom: 14px; }

  .btn { padding: 15px 22px; font-size: 14px; }
}

/* ── Subpage Layout ── */
.subpage-section {
  padding: var(--section-v) 0;
}
.subpage-title {
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 40px;
}

/* ── Legal Content Card ── */
.legal-card {
  padding: 52px 56px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
}
.legal-card h2 { font-size: 26px; margin-bottom: 24px; }
.legal-card h3 { font-size: 18px; font-weight: 700; margin: 36px 0 12px; color: var(--ink); }
.legal-card h4 { font-size: 15px; font-weight: 700; margin: 20px 0 8px; color: var(--ink); }
.legal-card h5 { font-size: 14px; font-weight: 700; margin: 16px 0 6px; color: var(--ink); }
.legal-card p  { font-size: 15px; line-height: 1.75; color: var(--ink-muted); }
.legal-card ul { margin: 0 0 16px; padding-left: 20px; list-style: disc; }
.legal-card li { font-size: 15px; color: var(--ink-muted); margin-bottom: 6px; line-height: 1.65; }
.legal-card a  { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.legal-card a:hover { color: var(--ink-muted); }

/* ── Lizenzen Sidebar Layout ── */
.legal-sidebar-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: var(--section-gap);
  align-items: start;
}
.legal-sidebar-card {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  position: sticky;
  top: 88px;
}
.legal-sidebar-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.legal-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.legal-sidebar-link {
  font-size: 14px;
  color: var(--ink-muted);
  padding: 6px 10px;
  border-radius: var(--r-sm);
  transition: background 0.2s, color 0.2s;
  display: block;
}
.legal-sidebar-link:hover {
  background: var(--surface-warm);
  color: var(--ink);
}

/* ── Contact Form ── */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.65fr;
  gap: var(--section-gap);
  align-items: start;
}
.contact-info-card {
  padding: 44px;
}
.contact-info-title {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.contact-info-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-muted);
  margin-bottom: 32px;
}
.contact-info-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-info-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  transition: gap 0.2s, opacity 0.2s;
}
.contact-info-link:hover { gap: 14px; opacity: 0.7; }
.contact-info-link svg { flex-shrink: 0; color: var(--ink-faint); transition: color 0.2s; }
.contact-info-link:hover svg { color: var(--ink); }

.contact-form-card {
  padding: 44px;
  background: var(--bg);
}
.contact-form-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-group.full { grid-column: 1 / -1; }
.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.form-input,
.form-textarea {
  font-family: var(--font);
  font-size: 15px;
  color: var(--ink);
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
  appearance: none;
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--ink);
  background: var(--bg);
}
.form-textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}
.form-submit-row {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 4px;
}
.form-note {
  font-size: 12px;
  color: var(--ink-faint);
}

/* ── Form success / error states ── */
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 56px 24px;
  gap: 16px;
}
.form-success img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}
.form-success-heading {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.02em;
}
.form-success-text {
  font-size: 15px;
  color: var(--ink-muted);
  margin: 0;
  max-width: 320px;
  line-height: 1.65;
}
.form-error {
  grid-column: 1 / -1;
  font-size: 13px;
  color: #c0392b;
  margin: 8px 0 0;
  line-height: 1.5;
}

/* ── FAQ ── */
.faq-card {
  padding: 44px;
  margin-top: var(--section-gap);
}
.faq-heading {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
}
.faq-item:last-child { border-bottom: none; }
.faq-q {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.faq-a {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-muted);
  margin: 0;
}

/* ── Icon hover: universal ── */
.icon-hover {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}
.icon-hover:hover {
  transform: translateY(-2px) scale(1.08);
  opacity: 0.8;
}

/* ── Responsive: Tablet (subpages) ≤ 900px ── */
@media (max-width: 900px) {
  .contact-page-grid  { grid-template-columns: 1fr; }
  .legal-sidebar-grid { grid-template-columns: 1fr; }
  .legal-sidebar-card { position: static; }
}

/* ── Responsive: Mobile (subpages) ≤ 680px ── */
@media (max-width: 680px) {
  .legal-card         { padding: 32px 24px; }
  .contact-info-card,
  .contact-form-card,
  .faq-card           { padding: 32px 24px; }
  .form-grid          { grid-template-columns: 1fr; }
}

/* ── Responsive: Small ≤ 400px ── */
@media (max-width: 400px) {
  .hero-h1 { font-size: 26px; }
  .contact-heading { font-size: 22px; }
  .profile-stats { flex-direction: column; }
  .profile-stat + .profile-stat { border-left: none; border-top: 1px solid var(--border); }
}
