/* localweb styles */

/* vars */
:root {
  --font:         -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', Inter, 'Helvetica Neue', Arial, sans-serif;

  --black:        #000000;
  --white:        #ffffff;
  --gray-1:       #1d1d1f;
  --gray-2:       #6e6e73;
  --gray-3:       #86868b;
  --gray-4:       #d2d2d7;
  --gray-5:       #f5f5f7;
  --gray-6:       #fbfbfd;

  --blue:         #0071e3;
  --blue-hover:   #0077ed;
  --blue-light:   #e8f0fb;
  --blue-glow:    rgba(0, 113, 227, 0.35);

  --shadow-sm:    0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.08);
  --shadow-md:    0 4px 20px rgba(0,0,0,.07), 0 2px 8px rgba(0,0,0,.05);
  --shadow-lg:    0 20px 60px rgba(0,0,0,.1),  0 8px 24px rgba(0,0,0,.06);
  --shadow-xl:    0 40px 100px rgba(0,0,0,.14), 0 16px 40px rgba(0,0,0,.08);

  --r-sm:         10px;
  --r-md:         18px;
  --r-lg:         24px;
  --r-xl:         32px;

  --max:          1200px;
  --easing:       cubic-bezier(0.16, 1, 0.3, 1);
}

/* base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--gray-1);
  background: var(--white);
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* layout */
.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 980px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s var(--easing);
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.btn--lg { padding: 18px 36px; font-size: 17px; }
.btn--full { width: 100%; }

.btn--white {
  background: var(--white);
  color: var(--gray-1);
}
.btn--white:hover {
  background: rgba(255,255,255,.85);
  transform: scale(1.02);
}

.btn--cta {
  background: var(--blue);
  color: var(--white);
}
.btn--cta:hover {
  background: var(--blue-hover);
  transform: scale(1.02);
}

.btn--outline {
  border: 1.5px solid var(--gray-4);
  color: var(--gray-1);
  background: var(--white);
}
.btn--outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: scale(1.02);
}

.btn--white-dark {
  background: var(--white);
  color: var(--gray-1);
}
.btn--white-dark:hover {
  background: var(--gray-5);
  transform: scale(1.02);
}

.btn--glow {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 0 0 0 var(--blue-glow);
}
.btn--glow:hover {
  background: var(--blue-hover);
  box-shadow: 0 8px 30px var(--blue-glow);
  transform: scale(1.02);
}

/* sections */
.section-header {
  text-align: center;
  margin-bottom: clamp(48px, 7vw, 80px);
}

.section-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.section-eyebrow--light { color: rgba(255,255,255,.55); }

.section-h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--gray-1);
}
.section-h2--light { color: var(--white); }

/* reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  /* transition intentionally omitted: GSAP handles animation via fromTo */
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s var(--easing), transform 0.7s var(--easing);
}

/* nav */
.nav {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.52);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav.scrolled {
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-color: rgba(255,255,255,0.06);
}
/* Nav links always white */
.nav__links a { color: rgba(255,255,255,0.82) !important; }
.nav__links a:hover { background: rgba(255,255,255,0.1) !important; color: #fff !important; }
.nav__logo { filter: brightness(1.2); }

.nav__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 60px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--gray-1);
  flex-shrink: 0;
}
.nav__logo strong { font-weight: 700; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-inline-start: auto;
}
.nav__links a {
  padding: 6px 14px;
  border-radius: 980px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-1);
  transition: background 0.15s, color 0.15s;
}
.nav__links a:hover {
  background: rgba(0,0,0,.05);
  color: var(--blue);
}

.nav__cta { font-size: 14px !important; padding: 9px 22px !important; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-inline-start: auto;
}
.nav__burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--gray-1);
  border-radius: 2px;
  transition: all 0.25s var(--easing);
}
.nav__burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__burger.open span:nth-child(2) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 20px 24px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(0,0,0,.07);
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  padding: 12px 16px;
  border-radius: var(--r-sm);
  font-size: 17px;
  font-weight: 500;
  color: var(--gray-1);
}
.nav__mobile a:hover { background: var(--gray-5); }
.nav__mobile .btn--cta {
  margin-top: 12px;
  border-radius: var(--r-sm);
  padding: 16px;
}

/* hero */
.hero {
  position: relative;
  min-height: 100dvh;
  background: #0a0a0a;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Blur-up background: starts blurred/small, sharpens when image loads */
.hero__bg {
  position: absolute;
  inset: 0;
  background: #0a0a0a url('images/hero-thumb.jpg') center center / cover no-repeat;
  filter: blur(12px) brightness(0.6);
  transform: scale(1.08);
  transition: filter 0.8s ease, transform 0.8s ease;
  z-index: 0;
}
.hero__bg.loaded {
  background-image: url('images/hero.jpg');
  filter: blur(0px) brightness(0.9);
  transform: scale(1);
}
/* Parallax on scroll — JS will translate this */
.hero__bg { will-change: transform; }

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.45) 60%, rgba(0,0,0,0.15) 100%),
    linear-gradient(to top, rgba(0,0,0,0.90) 0%, rgba(0,0,0,0.0) 55%);
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  padding-top: 140px;
  padding-bottom: 60px;
}

.hero__content {
  max-width: 680px;
}

.hero__location {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
  opacity: 0;
  animation: heroFadeUp 0.6s var(--easing) 0.1s forwards;
}

.hero__h1 {
  font-size: clamp(3.4rem, 7vw, 6.5rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 28px;
  opacity: 0;
  animation: heroFadeUp 0.8s var(--easing) 0.25s forwards;
}

.hero__gradient-word {
  background: linear-gradient(90deg, #60a5fa 0%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 40px;
  opacity: 0;
  animation: heroFadeUp 0.8s var(--easing) 0.4s forwards;
}

.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  opacity: 0;
  animation: heroFadeUp 0.8s var(--easing) 0.55s forwards;
}

.hero__link {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  font-weight: 500;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  transition: color 0.2s, border-color 0.2s;
}
.hero__link:hover { color: #fff; border-color: rgba(255,255,255,0.7); }

/* Stats bar pinned at bottom of hero */
.hero__stats-bar {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.07);
  background: rgba(0,0,0,0.28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  animation: heroFadeUp 0.8s var(--easing) 0.7s forwards;
}

.hero__stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 22px 0;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 0 48px;
}

.hero__stat strong {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: -0.01em;
  line-height: 1;
}

.hero__stat span {
  font-size: 11px;
  color: rgba(255,255,255,0.32);
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero__stat-divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

.hero__trust-num {
  display: inline;
  font-variant-numeric: tabular-nums;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* problem */
.problem {
  padding: clamp(72px, 9vw, 120px) 0;
  background: var(--white);
  border-top: 6px solid var(--gray-5);
  border-bottom: 1px solid var(--gray-4);
}
.problem__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}
.problem__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}
.problem__h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--gray-1);
}
.problem__right > p {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--gray-2);
  line-height: 1.78;
  margin-bottom: 18px;
}
.problem__right > p:last-of-type { margin-bottom: 0; }
.problem__cta { margin-top: 32px; }

/* features */
.features {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--gray-5);
}

.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.bento-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--easing), box-shadow 0.35s var(--easing);
  box-shadow: var(--shadow-sm);
}
.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Grid placement */
.bento-card--lg { grid-column: span 7; min-height: 380px; }
.bento-card--sm { grid-column: span 5; }
.bento-card:nth-child(3) { grid-column: span 5; }
.bento-card:nth-child(4) { grid-column: span 7; }

.bento-card--dark {
  background: var(--gray-1);
  color: var(--white);
}
.bento-card--dark p { color: rgba(255,255,255,.65); }
.bento-card--dark ul { color: rgba(255,255,255,.55); }
.bento-card--dark .bento-card__list li::before { background: rgba(255,255,255,.2); }

.bento-card--accent {
  background: linear-gradient(135deg, #0a1628 0%, #0d2045 100%);
  color: var(--white);
}
.bento-card--accent p { color: rgba(255,255,255,.6); }

.bento-card__content {
  position: relative;
  z-index: 2;
  max-width: 360px;
}

.bento-card__icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.bento-card--dark .bento-card__icon,
.bento-card--accent .bento-card__icon {
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.9);
}

.bento-card__num {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-3);
  margin-bottom: 12px;
}
.bento-card--dark .bento-card__num,
.bento-card--accent .bento-card__num { color: rgba(255,255,255,.35); }

.bento-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
  line-height: 1.2;
}
.bento-card p { font-size: 15px; color: var(--gray-2); line-height: 1.6; }

.bento-card__list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bento-card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.65);
}
.bento-card__list li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  flex-shrink: 0;
}

.bento-card__badge {
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
  padding: 6px 14px;
  border-radius: 980px;
  font-size: 13px;
  font-weight: 600;
  background: var(--blue-light);
  color: var(--blue);
}
.bento-card__badge--green { background: #dcfce7; color: #16a34a; }

/* Browser mockup inside bento */
.bento-card__visual {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 54%;
  opacity: .85;
}
.mock-browser {
  border-radius: 12px;
  overflow: hidden;
  background: #1e1e2e;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.mock-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #2a2a3c;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.mock-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.mock-url {
  margin-left: 8px;
  font-size: 11px;
  color: rgba(255,255,255,.3);
  font-family: monospace;
}
.mock-body { padding: 0; }
.mock-hero-stripe {
  height: 80px;
  background: linear-gradient(135deg, #0d2045, #1e3a8a);
}
.mock-content { padding: 16px; }
.mock-line {
  height: 10px;
  border-radius: 5px;
  background: rgba(255,255,255,.12);
  margin-bottom: 8px;
}
.mock-line--title { width: 70%; height: 14px; background: rgba(255,255,255,.2); }
.mock-line--sub  { width: 50%; }
.mock-btn-row { margin-top: 12px; }
.mock-btn-pill {
  height: 28px; width: 100px;
  border-radius: 14px;
  background: var(--blue);
  opacity: 0.8;
}

/* SEO visual inside card */
.bento-seo-visual {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.seo-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: rgba(255,255,255,.5);
}
.seo-bar__track {
  flex: 1;
  height: 5px;
  border-radius: 3px;
  background: rgba(255,255,255,.1);
  overflow: hidden;
}
.seo-bar__fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--blue), #60a5fa);
  width: 0;
  transition: width 1.5s var(--easing);
}
.seo-bar span:last-child {
  font-weight: 700;
  color: rgba(255,255,255,.8);
  min-width: 24px;
  text-align: right;
}

.seo-facts {
  margin-top: 20px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.seo-facts li {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.5;
}
.seo-facts li::before {
  content: '✓';
  color: rgba(255,255,255,.4);
  font-weight: 700;
  flex-shrink: 0;
}

/* statement */
.statement {
  background: var(--black);
  padding: clamp(80px, 12vw, 160px) 0;
  overflow: hidden;
}
.statement__inner {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}
.statement__h2 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 28px;
}
.statement__h2 em {
  font-style: normal;
  background: linear-gradient(90deg, #60a5fa, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.statement__body {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,.5);
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: clamp(60px, 8vw, 100px);
  line-height: 1.7;
}

.statement__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.stat-item {
  padding: 36px 24px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.03);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat-item__num {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--white);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-item__suffix {
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue);
}
.stat-item > p {
  font-size: 14px;
  color: rgba(255,255,255,.4);
  text-align: center;
  line-height: 1.5;
}

/* prozess */
.process {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--white);
}

.process__grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.process__item {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  position: relative;
}
.process__connector {
  flex-shrink: 0;
  width: 40px;
  height: 2px;
  background: var(--gray-4);
  margin-top: 36px;
  position: relative;
}
.process__connector::after {
  content: '';
  position: absolute;
  right: -5px; top: -4px;
  width: 0; height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid var(--gray-4);
}
.process__step-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-4);
  margin-bottom: 16px;
}
.process__step-num--accent { color: var(--blue); }
.process__icon {
  width: 56px; height: 56px;
  border-radius: 18px;
  background: var(--gray-5);
  color: var(--gray-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: 20px;
  transition: transform 0.3s var(--easing);
}
.process__item:hover .process__icon { transform: scale(1.08); }
.process__icon--accent { background: var(--blue-light); color: var(--blue); }
.process__item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: var(--gray-1);
}
.process__item p {
  font-size: 14px;
  color: var(--gray-2);
  line-height: 1.6;
  margin-bottom: 16px;
}
.process__tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 980px;
  font-size: 12px;
  font-weight: 600;
  background: var(--gray-5);
  color: var(--gray-3);
}
.process__tag--accent { background: var(--blue-light); color: var(--blue); }

/* branchen */
.branchen {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--gray-5);
}

.branchen__list {
  margin-bottom: 48px;
}

.branche-row {
  display: grid;
  grid-template-columns: 40px 1fr auto 28px;
  align-items: center;
  gap: 0 32px;
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-4);
  color: var(--gray-1);
  transition: background 0.2s, color 0.2s;
  position: relative;
}
.branche-row:first-child { border-top: 1px solid var(--gray-4); }
.branche-row__num {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-3);
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}
.branche-row__name {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: color 0.2s;
}
.branche-row__tags {
  font-size: 13px;
  color: var(--gray-2);
  text-align: right;
  transition: color 0.15s;
}
.branche-row__arrow {
  font-size: 18px;
  color: var(--blue);
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: all 0.2s var(--easing);
}
.branche-row:hover .branche-row__name { color: var(--blue); }
.branche-row:hover .branche-row__arrow { opacity: 1; transform: translate(0, 0); }
.branche-row:hover .branche-row__tags { color: var(--gray-1); }

.branchen__hint {
  text-align: center;
  font-size: 15px;
  color: var(--gray-2);
}
.branchen__hint a {
  color: var(--blue);
  font-weight: 500;
}
.branchen__hint a:hover { text-decoration: underline; }

/* testimonials */
.testimonials {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--black);
  overflow: hidden;
}

.testi__wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.testi__overflow {
  flex: 1;
  overflow: hidden;
  border-radius: var(--r-lg);
}
.testi__track {
  display: flex;
  transition: transform 0.55s var(--easing);
}

.testi-card {
  flex-shrink: 0;
  width: 50%;
  padding: 40px 44px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  margin-right: 16px;
}

.testi-card__stars {
  color: #f59e0b;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.testi-card blockquote {
  font-size: 1rem;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: normal;
  border: none;
  padding: 0;
}
.testi-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-av {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.testi-card__author cite { display: block; font-size: 14px; font-weight: 700; color: var(--white); }
.testi-card__author span { display: block; font-size: 13px; color: rgba(255,255,255,.4); }

.testi__btn {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.7);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.testi__btn:hover {
  background: rgba(255,255,255,.12);
  color: var(--white);
}

.testi__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.testi__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  transition: all 0.25s;
}
.testi__dot--active {
  background: var(--white);
  width: 24px;
  border-radius: 4px;
}

/* pricing (unused) */
.pricing {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--gray-5);
}

.pricing__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 4px;
  background: var(--gray-4);
  border-radius: 980px;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: clamp(48px, 7vw, 80px);
}
.ptoggle {
  padding: 9px 24px;
  border-radius: 980px;
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-3);
  transition: all 0.2s var(--easing);
}
.ptoggle--active {
  background: var(--white);
  color: var(--gray-1);
  box-shadow: var(--shadow-sm);
}
.save-chip {
  margin-left: 6px;
  padding: 2px 8px;
  border-radius: 980px;
  font-size: 11px;
  font-weight: 700;
  background: #dcfce7;
  color: #16a34a;
}

.pricing__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 780px;
  margin-inline: auto;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 40px;
  border: 1.5px solid var(--gray-4);
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--easing), box-shadow 0.3s var(--easing);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.pricing-card--featured {
  background: var(--gray-1);
  border-color: transparent;
  color: var(--white);
}

.pc-badge {
  position: absolute;
  top: -14px;
  left: 50%; transform: translateX(-50%);
  padding: 6px 20px;
  border-radius: 980px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--blue);
  color: var(--white);
  white-space: nowrap;
}

.pricing-card__name {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.pricing-card__desc {
  font-size: 14px;
  color: var(--gray-2);
  line-height: 1.55;
  margin-bottom: 28px;
}
.pricing-card--featured .pricing-card__desc { color: rgba(255,255,255,.55); }

.pricing-card__price {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  margin-bottom: 6px;
  line-height: 1;
}
.pc-cur { font-size: 1.4rem; font-weight: 600; padding-bottom: 6px; }
.pc-amt { font-size: 3.2rem; font-weight: 800; letter-spacing: -0.04em; font-variant-numeric: tabular-nums; }
.pc-per { font-size: 14px; color: var(--gray-3); padding-bottom: 8px; }
.pricing-card--featured .pc-per { color: rgba(255,255,255,.4); }

.pc-saving {
  font-size: 13px;
  color: #16a34a;
  font-weight: 600;
  min-height: 20px;
  margin-bottom: 24px;
}
.pricing-card--featured .pc-saving { color: #4ade80; }

.pc-features {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pc-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-1);
  line-height: 1.4;
}
.pricing-card--featured .pc-features li { color: rgba(255,255,255,.8); }
.pc-yes { color: var(--blue); font-size: 16px; flex-shrink: 0; line-height: 1.4; }
.pricing-card--featured .pc-yes { color: #60a5fa; }
.pc-no  { color: var(--gray-4); font-size: 16px; flex-shrink: 0; line-height: 1.4; }
.pc-dim { color: var(--gray-3); }

.pricing__note {
  text-align: center;
  font-size: 13px;
  color: var(--gray-3);
  margin-top: 40px;
  max-width: 600px;
  margin-inline: auto;
  line-height: 1.6;
}

/* cta */
.cta {
  background: #000;
  padding: clamp(100px, 13vw, 180px) 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta__orbs { position: absolute; inset: 0; pointer-events: none; }
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}
.cta-orb--1 {
  width: 500px; height: 500px;
  background: rgba(0, 113, 227, .35);
  top: -200px; left: -100px;
  animation: orbFloat1 20s ease-in-out infinite;
}
.cta-orb--2 {
  width: 400px; height: 400px;
  background: rgba(90, 13, 187, .25);
  bottom: -150px; right: -100px;
  animation: orbFloat2 25s ease-in-out infinite;
}
.cta__inner {
  position: relative;
  z-index: 2;
}
.cta__h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}
.cta__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.55);
  max-width: 440px;
  margin-inline: auto;
  margin-bottom: 52px;
  line-height: 1.65;
}
.cta__cards {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.cta-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  border-radius: var(--r-lg);
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(10px);
  text-align: left;
  min-width: 280px;
  transition: all 0.25s var(--easing);
  position: relative;
}
.cta-card:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.2);
  transform: translateY(-2px);
}
.cta-card__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cta-card strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}
.cta-card span {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}
.cta-card__tag {
  position: absolute;
  top: -10px; right: 16px;
  padding: 3px 10px;
  border-radius: 980px;
  font-size: 11px;
  font-weight: 700;
  background: var(--blue);
  color: var(--white);
  white-space: nowrap;
}

.cta__founders {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.founder-stack {
  display: flex;
}
.founder-av {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  border: 2px solid #000;
  margin-right: -10px;
}
.founder-av:last-child { margin-right: 0; }
.cta__founders p {
  font-size: 14px;
  color: rgba(255,255,255,.45);
}

/* footer */
.footer {
  background: var(--gray-5);
  border-top: 1px solid var(--gray-4);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 60px;
  padding-top: 64px;
  padding-bottom: 64px;
  align-items: start;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-1);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.footer__brand p {
  font-size: 14px;
  color: var(--gray-2);
  max-width: 260px;
  line-height: 1.6;
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer__col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-3);
  margin-bottom: 16px;
}
.footer__col a,
.footer__col span {
  display: block;
  font-size: 14px;
  color: var(--gray-2);
  padding: 4px 0;
  transition: color 0.15s;
}
.footer__col a:hover { color: var(--blue); }

.footer__bottom {
  border-top: 1px solid var(--gray-4);
  padding: 24px 0;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-3);
}

/* responsive */
@media (max-width: 960px) {
  .problem__inner { grid-template-columns: 1fr; gap: 32px; }

  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .bento {
    grid-template-columns: 1fr;
  }
  .bento-card--lg,
  .bento-card--sm,
  .bento-card:nth-child(3),
  .bento-card:nth-child(4) {
    grid-column: span 1;
  }
  .bento-card__visual { display: none; }

  .process__grid {
    flex-direction: column;
    gap: 32px;
  }
  .process__connector { display: none; }
  .process__item { padding: 0; }

  .branche-row__tags { font-size: 12px; }

  .statement__stats { grid-template-columns: 1fr; gap: 16px; }

  .pricing__cards { grid-template-columns: 1fr; max-width: 440px; }

  .testi-card { width: 85%; }

  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__nav { grid-template-columns: repeat(2, 1fr); }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
  .hero__trust {
    flex-wrap: wrap;
    gap: 16px;
    padding: 20px;
  }
  .hero__trust-divider { display: none; }
  .hero__trust-item { padding: 0 12px; }

  .branche-row { grid-template-columns: 32px 1fr 28px; gap: 0 20px; }
  .branche-row__tags { display: none; }

  .cta__cards { flex-direction: column; align-items: center; }
  .cta-card { width: 100%; max-width: 340px; }

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

  .testi-card {
    width: 100%;
    padding: 28px;
  }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; width: 100%; }
  .btn--lg { width: 100%; }
  .hero__stat { padding: 0 24px; }
  .hero__stat strong { font-size: 1.2rem; }
}

/* ══════════════════════════════════════════════════════
   EXTRA ANIMATIONS
══════════════════════════════════════════════════════ */

/* 1. Branche-row hover animation (JS adds inline vars for magnetic btns) */
/* 2. Magnetic CTA button glow pulse */
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,113,227,0.5); }
  50%       { box-shadow: 0 0 0 10px rgba(0,113,227,0); }
}
.btn--cta {
  animation: glowPulse 2.8s ease-in-out infinite;
}

/* 3. Stat numbers — pop when they finish counting */
.stat-item__num.done {
  animation: statPop 0.4s cubic-bezier(0.34,1.56,0.64,1) forwards;
}
@keyframes statPop {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.18); color: #0071e3; }
  100% { transform: scale(1); }
}

/* 4. Hero location — glitch flicker on load */
.hero__location {
  animation: heroFadeUp 0.6s var(--easing) 0.1s forwards,
             glitch 3.5s 2s steps(1) 1;
}
@keyframes glitch {
  0%    { clip-path: none; transform: none; }
  92%   { clip-path: none; transform: none; }
  92.5% { clip-path: inset(20% 0 60% 0); transform: translateX(-4px); }
  93%   { clip-path: inset(50% 0 20% 0); transform: translateX(4px); color: #60a5fa; }
  93.5% { clip-path: none; transform: none; color: inherit; }
  100%  { clip-path: none; transform: none; }
}

/* 5. Section headings — underline wipe animation */
.section-h2 {
  position: relative;
  display: inline-block;
}
.section-h2::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: width 0.7s cubic-bezier(0.22,1,0.36,1);
}
.section-header.visible .section-h2::after {
  width: 60px;
}

/* 6. Bento cards — subtle shimmer on hover */
.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.045) 50%, transparent 60%);
  background-size: 200% 100%;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}
.bento-card:hover::before {
  opacity: 1;
  animation: shimmer 0.7s ease forwards;
}
@keyframes shimmer {
  from { background-position: 200% 0; }
  to   { background-position: -200% 0; }
}

/* 7. CTA cards — slide-in glow border on hover */
.cta-card {
  position: relative;
  overflow: hidden;
}
.cta-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1.5px solid transparent;
  background: linear-gradient(135deg, rgba(0,113,227,0.5), rgba(96,165,250,0.2)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s;
}
.cta-card:hover::after { opacity: 1; }

/* 8. Process items — connector line draw */
.process__connector {
  position: relative;
  overflow: hidden;
}
.process__connector::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
.process__item.visible ~ .process__connector::after {
  transform: scaleX(1);
}

/* 9. Testimonial stars — staggered pop-in */
.testi-card__stars {
  display: inline-flex;
  gap: 2px;
}
.testi-card__stars span,
.testi-card__stars {
  animation: starPop 0.4s cubic-bezier(0.34,1.56,0.64,1) both;
}

/* 10. Footer brand — subtle float */
.footer__logo {
  display: inline-block;
  animation: floatLogo 5s ease-in-out infinite;
}
@keyframes floatLogo {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-4px); }
}
