/* Local Fonts */
@font-face {
  font-family: 'Manrope';
  src: url('fonts/Manrope.woff2') format('woff2');
  font-weight: 300 800;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'Fraunces';
  src: url('fonts/Fraunces.woff2') format('woff2');
  font-weight: 100 900;
  font-display: swap;
  font-style: normal;
}

:root {
  --bg: #ffffff;
  --bg2: #f6f7f9;
  --text: rgba(11, 12, 16, .92);
  --muted: rgba(11, 12, 16, .64);
  --line: rgba(11, 12, 16, .10);

  --accent: #14b8a6;
  --accent2: #2563eb;
  --accent3: #a78bfa;

  --shadow: 0 24px 70px rgba(10, 12, 20, .12);
  --shadow2: 0 14px 32px rgba(10, 12, 20, .10);

  --r: 18px;
  --r2: 26px;
  --max: 1160px;

  --font-sans: "Manrope", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  --font-serif: "Fraunces", ui-serif, Georgia, serif;
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

body {
  margin: 0;
  font: 16px/1.6 var(--font-sans);
  color: var(--text);
  background: linear-gradient(180deg, var(--bg), var(--bg2));
  overflow-x: hidden;
}

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

strong {
  font-weight: 800
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px
}

.muted {
  color: var(--muted)
}

h1,
h2 {
  font-family: var(--font-serif);
  letter-spacing: -0.03em
}

h3 {
  letter-spacing: -0.01em
}

.accent {
  background: linear-gradient(90deg, var(--accent), var(--accent2), var(--accent3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.accent-bold {
  font-weight: 800;
  background: linear-gradient(135deg, #2563eb, #9333ea, #db2777);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.fancy-gradient {
  background: linear-gradient(to right, #0ea5e9, #6366f1, #d946ef);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}

.accent-text {
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

/* Custom Cursor */
body {
  cursor: none;
}

/* Hide native cursor for maximum coolness */
a,
button,
input,
textarea,
label {
  cursor: none;
}

.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--text);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

.cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(11, 12, 16, 0.3);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background-color 0.2s, border-color 0.2s;
}

/* Hover state */
body.hovering .cursor-outline {
  width: 48px;
  height: 48px;
  background: rgba(20, 184, 166, 0.1);
  border-color: var(--accent);
}

/* progress */
.progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 200;
  background: transparent
}

.progress__bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent2), var(--accent3));
}

/* Extension bookmark *
  .badge-bookmark{
    position:fixed; top:14px; right:14px; z-index:150;
    display:flex; align-items:center; gap:10px;
    padding:10px 12px;
    border-radius:18px;
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(0,0,0,.10);
    box-shadow: var(--shadow2);
    backdrop-filter: blur(10px);
  }
  .badge-bookmark img{width:34px; height:34px; object-fit:contain; border-radius:10px}
  .badge-bookmark span{font-weight:900; font-size:13px; color:var(--muted)}
  @media (max-width: 980px){
    .badge-bookmark{top:70px; right:12px}
  }
  
  /* background */
.bg {
  position: fixed;
  inset: 0;
  z-index: -5;
  pointer-events: none;
}

.bg__gradients {
  position: absolute;
  inset: -100px;
  background:
    radial-gradient(1200px 800px at 10% 10%, rgba(20, 184, 166, .15), transparent 60%),
    radial-gradient(1200px 800px at 90% 5%, rgba(37, 99, 235, .12), transparent 55%),
    radial-gradient(1200px 800px at 50% 90%, rgba(167, 139, 250, .12), transparent 55%),
    radial-gradient(800px 600px at 50% 50%, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.4) 100%);
  filter: saturate(1.05);
  animation: drift 12s ease-in-out infinite alternate;
}

@keyframes drift {
  from {
    transform: translate3d(-10px, -6px, 0) scale(1)
  }

  to {
    transform: translate3d(14px, 10px, 0) scale(1.03)
  }
}

.bg__grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(11, 12, 16, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 12, 16, .07) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: .25;
}

.bg__noise {
  position: absolute;
  inset: 0;
  opacity: .10;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.float {
  position: absolute;
  font-size: 24px;
  opacity: .35;
  filter: blur(0px);
  animation: floaty 8s ease-in-out infinite;
  will-change: transform;
  user-select: none;
}

/* Random positions & delays */
.float--1 {
  left: 5%;
  top: 10%;
  animation-duration: 7s;
  font-size: 28px;
}

.float--2 {
  left: 85%;
  top: 15%;
  animation-duration: 8.5s;
  animation-delay: -1s;
}

.float--3 {
  left: 15%;
  top: 85%;
  animation-duration: 9s;
  animation-delay: -2s;
  font-size: 30px;
}

.float--4 {
  left: 80%;
  top: 80%;
  animation-duration: 7.5s;
  animation-delay: -3s;
}

.float--5 {
  left: 45%;
  top: 40%;
  animation-duration: 10s;
  animation-delay: -4s;
  opacity: .15;
  filter: blur(1px);
}

.float--6 {
  left: 10%;
  top: 50%;
  animation-duration: 8s;
  animation-delay: -1.5s;
}

.float--7 {
  left: 92%;
  top: 60%;
  animation-duration: 9.5s;
  animation-delay: -2.5s;
}

.float--8 {
  left: 30%;
  top: 20%;
  animation-duration: 7.2s;
  animation-delay: -0.5s;
  opacity: .2;
}

.float--9 {
  left: 60%;
  top: 90%;
  animation-duration: 8.8s;
  animation-delay: -3.5s;
}

.float--10 {
  left: 70%;
  top: 30%;
  animation-duration: 8.2s;
  animation-delay: -1.2s;
  font-size: 20px;
}

@keyframes floaty {

  0%,
  100% {
    transform: translate3d(var(--px, 0), var(--py, 0), 0) translateY(0) rotate(0deg)
  }

  50% {
    transform: translate3d(var(--px, 0), var(--py, 0), 0) translateY(-20px) rotate(3deg)
  }
}

/* header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .74);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px
}

.brand__mark {
  width: 34px;
  height: 34px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, .10);
  background: rgba(255, 255, 255, .85);
  box-shadow: var(--shadow2);
  font-weight: 900;
}

.brand__text {
  font-weight: 900
}

.brand__mini {
  font-size: 12px;
  margin-left: 6px
}

.nav {
  display: flex;
  align-items: center;
  gap: 14px
}

.nav__link {
  color: var(--muted);
  padding: 10px 10px;
  border-radius: 12px;
  transition: background .18s ease, color .18s ease;
}

.nav__link:hover {
  background: rgba(0, 0, 0, .04);
  color: var(--text)
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .78);
  color: var(--text);
  box-shadow: var(--shadow2);
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .95);
  border-color: rgba(0, 0, 0, .14);
  box-shadow: 0 18px 42px rgba(10, 12, 20, .14);
}

.btn__arrow {
  font-weight: 900
}

.btn--primary {
  border-color: rgba(20, 184, 166, .35);
  background: linear-gradient(135deg, rgba(20, 184, 166, .18), rgba(37, 99, 235, .12));
}

.btn--ghost {
  background: rgba(0, 0, 0, .02);
  border-style: dashed;
}

/* burger */
.burger {
  display: none;
  border: 1px solid rgba(0, 0, 0, .10);
  background: rgba(255, 255, 255, .78);
  border-radius: 14px;
  padding: 10px 12px;
  cursor: pointer;
  box-shadow: var(--shadow2);
}

.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: rgba(11, 12, 16, .85);
  margin: 4px 0;
  border-radius: 2px;
}

.mobile {
  border-top: 1px solid rgba(0, 0, 0, .06);
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(12px);
}

.mobile__inner {
  display: grid;
  gap: 10px;
  padding: 14px 22px 16px
}

.mobile__link {
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(0, 0, 0, .03);
  border: 1px solid rgba(0, 0, 0, .06);
}

.mobile__cta {
  width: 100%
}

/* hero */
.hero {
  padding: 64px 0 18px
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 22px;
  align-items: stretch;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, .08);
  background: rgba(255, 255, 255, .72);
  color: var(--muted);
  width: fit-content;
}

.badge__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, var(--accent), var(--accent2));
  box-shadow: 0 0 18px rgba(20, 184, 166, .22);
}

.hero h1 {
  margin: 14px 0 12px;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.04;
}

.lead {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 18px;
  max-width: 62ch;
  font-weight: 550;
}

.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 8px 0 16px
}

/* stats counter */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 12px 0 10px;
}

.stat {
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, .07);
  background: rgba(255, 255, 255, .78);
  box-shadow: var(--shadow2);
}

.stat__num {
  font-weight: 1000;
  font-size: 22px;
  background: linear-gradient(90deg, var(--accent), var(--accent2), var(--accent3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat__label {
  color: var(--muted);
  font-size: 13px;
  margin-top: 2px
}

.hero__chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.chip {
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, .10);
  background: rgba(0, 0, 0, .02);
  color: var(--muted);
  font-weight: 800;
}

.chip--hot {
  background: linear-gradient(135deg, rgba(20, 184, 166, .14), rgba(37, 99, 235, .10));
  border-color: rgba(20, 184, 166, .28);
}

/* portrait */
.portrait {
  border-radius: var(--r2);
  border: 1px solid rgba(0, 0, 0, .10);
  background: rgba(255, 255, 255, .82);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform-style: preserve-3d;
}

.portrait__frame {
  padding: 16px;
  position: relative
}

.portrait__frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 22px;
  border: 1px solid rgba(0, 0, 0, .12);
  filter: grayscale(100%) contrast(1.05);
}

.portrait__glow {
  position: absolute;
  inset: 6px;
  border-radius: 26px;
  background: radial-gradient(420px 280px at 20% 15%, rgba(20, 184, 166, .18), transparent 65%),
    radial-gradient(420px 280px at 90% 20%, rgba(37, 99, 235, .14), transparent 62%),
    radial-gradient(480px 320px at 60% 95%, rgba(167, 139, 250, .14), transparent 62%);
  pointer-events: none;
  mix-blend-mode: multiply;
}

.portrait__meta {
  padding: 0 16px 16px
}

.portrait__name {
  font-weight: 1000;
  font-size: 18px
}

.portrait__role {
  color: var(--muted);
  margin-top: 2px
}

.portrait__chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px
}

.quick {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.quick__item {
  border: 1px solid rgba(0, 0, 0, .08);
  background: rgba(0, 0, 0, .02);
  border-radius: 16px;
  padding: 10px 12px;
}

.quick__k {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900
}

.quick__v {
  font-weight: 850
}

/* section */
.section {
  padding: 90px 0;
  /* Reduced from 120px */
  position: relative;
  /* Ensure z-index works if needed */
}

@media (max-width: 900px) {
  .section {
    padding: 60px 0;
  }
}

#references {
  padding-top: 130px !important;
  /* Force more distance from previous section */
}

.section--alt {
  background: rgba(255, 255, 255, .55);
  border-top: 1px solid rgba(0, 0, 0, .05);
  border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.section__head {
  max-width: 72ch;
  margin-bottom: 18px
}

.section__head h2 {
  margin: 0 0 8px;
  font-size: clamp(24px, 2.6vw, 36px)
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 1000px) {
  .cards--cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  position: relative;
  border-radius: var(--r);
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.65);
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.05),
    0 10px 15px -3px rgba(0, 0, 0, 0.05),
    inset 0 0 20px rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 20px;
  transform-style: preserve-3d;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.card:hover {
  border-color: transparent;
  box-shadow:
    0 20px 40px -5px rgba(37, 99, 235, 0.15),
    0 10px 10px -5px rgba(0, 0, 0, 0.04),
    inset 0 0 20px rgba(255, 255, 255, 0.8);
  transform: translateY(-6px);
  background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.95)) padding-box,
    linear-gradient(135deg, #0ea5e9, #d946ef) border-box;
}

.card::after {
  content: "";
  position: absolute;
  inset: -40px;
  background: radial-gradient(400px 260px at 20% 10%, rgba(20, 184, 166, .18), transparent 60%),
    radial-gradient(400px 260px at 85% 20%, rgba(37, 99, 235, .14), transparent 60%);
  opacity: 0;
  transition: opacity .22s ease;
}

.card:hover::after {
  opacity: 1
}

.card>* {
  position: relative
}

.card__icon {
  font-size: 22px;
  margin-bottom: 6px
}

.card h3 {
  margin: 0 0 8px
}

.card p {
  margin: 0 0 10px
}

.card ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted)
}

.card li {
  margin: 6px 0
}

/* CTA strip */
.cta-strip {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 16px;
  border-radius: var(--r2);
  border: 1px solid rgba(0, 0, 0, .08);
  background: rgba(255, 255, 255, .84);
  box-shadow: var(--shadow2);
}

/* compare */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.compare__col {
  border-radius: var(--r2);
  border: 1px solid rgba(0, 0, 0, .08);
  background: rgba(255, 255, 255, .84);
  box-shadow: var(--shadow2);
  padding: 16px;
}

.compare__col--soft {
  background: rgba(255, 255, 255, .70);
  border-style: dashed;
}

.compare__head {
  display: grid;
  gap: 8px;
  margin-bottom: 10px
}

.compare__pill {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(20, 184, 166, .25);
  background: rgba(20, 184, 166, .10);
  color: rgba(11, 12, 16, .72);
  font-weight: 900;
  font-size: 12px;
}

.compare__pill--muted {
  border-color: rgba(0, 0, 0, .12);
  background: rgba(0, 0, 0, .03);
  color: var(--muted);
}

.compare__list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted)
}

.compare__list li {
  margin: 8px 0
}

.compare__note {
  margin-top: 10px;
  font-size: 13px
}

/* steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 16px;
}

.step {
  border-radius: 20px;
  border: 2px solid transparent;
  background:
    linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.95)) padding-box,
    linear-gradient(135deg, rgba(20, 184, 166, 0.3), rgba(37, 99, 235, 0.3)) border-box;
  box-shadow:
    0 4px 6px -2px rgba(0, 0, 0, 0.05),
    0 10px 15px -3px rgba(0, 0, 0, 0.05);
  padding: 24px;
  transition: transform .3s ease, box-shadow .3s ease;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  background:
    linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 1)) padding-box,
    linear-gradient(135deg, #14b8a6, #2563eb) border-box;
}

.step__nr {
  width: 34px;
  height: 34px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 1000;
  border: 1px solid rgba(0, 0, 0, .10);
  background: rgba(0, 0, 0, .02);
}

.step__title {
  margin-top: 10px;
  font-weight: 1000
}

/* faq */
.faq {
  display: grid;
  gap: 10px
}

.faq__item {
  border-radius: var(--r);
  border: 1px solid rgba(0, 0, 0, .08);
  background: rgba(255, 255, 255, .84);
  box-shadow: var(--shadow2);
  padding: 12px 14px;
}

.faq__item summary {
  cursor: pointer;
  font-weight: 900
}

.faq__item div {
  margin-top: 10px
}

/* contact */
.section--contact {
  background: linear-gradient(180deg, rgba(255, 255, 255, .55), rgba(255, 255, 255, .92));
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.form {
  border-radius: 24px;
  border: 2px solid transparent;
  background:
    linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.95)) padding-box,
    linear-gradient(135deg, rgba(20, 184, 166, 0.3), rgba(37, 99, 235, 0.3), rgba(217, 70, 239, 0.3)) border-box;
  box-shadow:
    0 20px 40px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  padding: 30px;
}

label {
  display: grid;
  gap: 8px;
  margin-bottom: 12px
}

label span {
  color: var(--muted);
  font-size: 14px
}

input,
textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, .10);
  background: rgba(255, 255, 255, 0.6);
  /* Glass input */
  backdrop-filter: blur(4px);
  color: var(--text);
  padding: 14px 16px;
  outline: none;
  transition: all 0.2s ease;
  font-family: inherit;
  font-weight: 500;
}

input:focus,
textarea:focus {
  border-color: rgba(20, 184, 166, .55);
  box-shadow: 0 0 0 4px rgba(20, 184, 166, .16);
}

/* Privacy Toggle */
.privacy-toggle {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  cursor: pointer;
}

.privacy-toggle input {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: none;
  /* custom cursor rules */
}

.privacy-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.privacy-text button {
  color: var(--text) !important;
  font-weight: 800;
  text-decoration: underline;
  background: none;
  -webkit-text-fill-color: initial;
  /* reset gradient if any */
}

.form__hint {
  margin: 10px 0 0;
  font-size: 13px
}

.toast {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, .10);
  background: rgba(0, 0, 0, .02);
}

/* footer */
.footer {
  padding: 24px 0 34px;
  border-top: 1px solid rgba(0, 0, 0, .06);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px
}

.footer__links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

.linklike {
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  font: inherit;
}

/* marquee */
.marquee {
  margin-top: 18px;
  border-radius: var(--r2);
  border: 1px solid rgba(0, 0, 0, .08);
  background: rgba(255, 255, 255, .78);
  box-shadow: var(--shadow2);
  overflow: hidden;
  padding: 12px 0;
}

.marquee__track {
  display: flex;
  gap: 10px;
  width: max-content;
  padding: 0 14px;
  animation: scrollX 22s linear infinite;
}

.pill {
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, .10);
  background: rgba(0, 0, 0, .02);
  color: var(--muted);
  padding: 10px 12px;
  font-weight: 900;
  white-space: nowrap;
}

.pill--soft {
  background: rgba(255, 255, 255, .70)
}

@keyframes scrollX {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* tilt + reveal */
.tilt {
  transition: transform .18s ease, box-shadow .18s ease
}

.tilt:hover {
  box-shadow: 0 26px 80px rgba(10, 12, 20, .16)
}

.reveal {
  opacity: 1;
  transform: none
}

html.js-ready .reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .55s ease, transform .55s ease;
}

html.js-ready .reveal.is-in {
  opacity: 1;
  transform: none
}

/* modal */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1000
}

.modal[aria-hidden="false"] {
  display: block
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 20, .40);
  backdrop-filter: blur(10px)
}

.modal__dialog {
  position: relative;
  width: min(720px, calc(100% - 32px));
  margin: 8vh auto;
  border-radius: var(--r2);
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(0, 0, 0, .10);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.modal__dialog--legal {
  width: min(860px, calc(100% - 32px))
}

.modal__head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 16px 8px
}

.modal__title {
  font-weight: 1000;
  font-size: 18px
}

.modal__close {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, .10);
  background: rgba(0, 0, 0, .03);
  cursor: pointer;
}

.modal__form {
  padding: 10px 16px 16px
}

.legal {
  padding: 10px 16px 18px
}

.legal h3 {
  margin: 10px 0 6px
}

.legal p,
.legal li {
  color: var(--muted)
}

.legal ul {
  padding-left: 18px
}

/* cookie banner */
.cookie {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1200;
  display: flex;
  justify-content: center;
}

.cookie__inner {
  width: min(980px, 100%);
  border-radius: var(--r2);
  border: 1px solid rgba(0, 0, 0, .10);
  background: rgba(255, 255, 255, .88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  padding: 14px;
}

.cookie__title {
  font-weight: 1000;
  margin-bottom: 4px
}

.cookie__text {
  font-size: 14px
}

.cookie__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px
}

.cookie__actions--panel {
  justify-content: flex-end
}

.cookie__panel {
  margin-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, .08);
  padding-top: 12px;
}

.cookie__toggles {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, .08);
  background: rgba(0, 0, 0, .02);
}

/* responsive */
@media (max-width: 980px) {
  .hero__grid {
    grid-template-columns: 1fr
  }

  .cards {
    grid-template-columns: 1fr
  }

  .compare {
    grid-template-columns: 1fr
  }

  .steps {
    grid-template-columns: 1fr
  }

  .contact {
    grid-template-columns: 1fr
  }

  .hero__stats {
    grid-template-columns: 1fr
  }

  .nav {
    display: none
  }

  .burger {
    display: block
  }
}

.cookie {
  pointer-events: auto !important;
  z-index: 99999 !important;
}

.cookie * {
  pointer-events: auto !important;
}

/* References carousel (endless) */
.ref-carousel {
  border-radius: var(--r2);
  border: 1px solid rgba(0, 0, 0, .08);
  background: rgba(255, 255, 255, .70);
  box-shadow: var(--shadow2);
  overflow: hidden;
  padding: 14px 0;
}

.ref-track {
  display: flex;
  gap: 14px;
  width: max-content;
  padding: 0 14px;

  /* langsamer & smoother */
  animation: refScroll 60000s linear infinite !important;
  will-change: transform;
}

.ref-carousel:hover .ref-track {
  animation-play-state: paused;
}

@keyframes refScroll {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* card sizing inside carousel */
/* card sizing inside carousel */
.ref-card {
  width: 340px;
  flex: 0 0 auto;
  border-radius: 20px;
  /* More rounded */
  border: 2px solid transparent;
  /* Space for gradient border */
  background:
    linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.95)) padding-box,
    linear-gradient(135deg, rgba(20, 184, 166, 0.3), rgba(37, 99, 235, 0.3), rgba(217, 70, 239, 0.3)) border-box;
  box-shadow:
    0 10px 30px -10px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  /* Premium shadow */
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform .4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .4s ease;
}

.ref-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 20px 40px -10px rgba(37, 99, 235, 0.25),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  background:
    linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 1)) padding-box,
    linear-gradient(135deg, #14b8a6, #2563eb, #d946ef) border-box;
  /* Vivid border on hover */
}

.ref-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.ref-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform .5s ease;
}

.ref-card:hover .ref-card__media img {
  transform: scale(1.12) rotate(-1deg);
}

/* New overlay style */
.ref-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 60%);
  opacity: 0.6;
  transition: opacity .3s ease;
}

.ref-card:hover .ref-card__overlay {
  opacity: 0.4;
}

.ref-card__body {
  padding: 16px;
}

.ref-card__name {
  font-weight: 800;
  /* Use heavier weight */
  font-size: 18px;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #1e293b, #334155);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  /* Gradient text for title */
}

.ref-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ref-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid rgba(37, 99, 235, 0.15);
  background: rgba(37, 99, 235, 0.04);
  color: #2563eb;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: all .3s ease;
}

/* Variant tags could be cool but let's stick to blue-ish for trust */
.ref-card:hover .ref-tag {
  background: rgba(37, 99, 235, 0.1);
  transform: translateY(-1px);
}

/* responsive */
@media (max-width: 980px) {
  .ref-card {
    width: 300px;
  }

  .ref-track {
    animation-duration: 2000s;
  }
}

/* --- HARD OVERRIDE: References carousel --- */
.ref-carousel {
  overflow: hidden !important;
  padding: 40px 0 !important;
  /* increased space for hover lift/shadow */
}

.ref-track {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 14px !important;
  width: max-content !important;
  padding: 0 14px !important;
  animation: refScroll 26s linear infinite !important;
  will-change: transform;
}

.ref-carousel:hover .ref-track {
  animation-play-state: paused !important;
}

@keyframes refScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.ref-card {
  flex: 0 0 auto !important;
  width: 340px !important;
  /* <- Größe */
  max-width: 340px !important;
  /* <- verhindert riesig */
  display: block !important;
}

.ref-card__media {
  aspect-ratio: 16 / 10;
}

#refTrack {
  animation-name: refScroll !important;
  animation-duration: 60s !important;
  animation-timing-function: linear !important;
  animation-iteration-count: infinite !important;
}

/* --- NEW STYLES --- */
.marquee__track {
  display: flex;
  gap: 10px;
  width: max-content;
  padding: 0 14px;
  animation: scrollX 30s linear infinite;
}

@keyframes scrollX {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }

  /* Requires 2 sets (or even sets) of items */
}


.marquee--reverse .marquee__track {
  animation-direction: reverse;
  animation-duration: 55s !important;
  /* Slower because wider content */
}

/* Ensure Focus marquee (top) is standard */
#focusTrack {
  animation-duration: 35s;
  /* Slight adjust */
}

.pill--tech {
  font-family: monospace;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(20, 184, 166, 0.2);
}

/* Scroll to top */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--text);
  color: var(--bg);
  border: none;
  box-shadow: var(--shadow2);
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 800;
  cursor: pointer;
  z-index: 999999;
  /* Higher than cookie? No cookie is max */
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
}

.scroll-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top:hover {
  transform: translateY(-3px);
  background: var(--accent);
}

/* Ensure cookie banner is absolutely on top and clickable */
.cookie,
.cookie * {
  cursor: auto !important;
  /* Force standard cursor for banner */
}

.cookie {
  z-index: 2147483647 !important;
  /* Max Z-Index */
}

#compare ul{
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}
#compare ul li::marker{
  content: "";
}

