/* ============================================================
   TextPilot Landing Page – style.css
   Font: DM Sans (lokal, css/fonts/)
   Primärfarbe: Teal #0EAEC1 | Hintergrund: #050a18
   ============================================================ */

/* ── LOCAL FONTS ── */
@font-face {
  font-family: 'DM Sans';
  src: url('fonts/dm-sans-300.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('fonts/dm-sans-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('fonts/dm-sans-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('fonts/dm-sans-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('fonts/dm-sans-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('fonts/dm-sans-800.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --teal:       #0EAEC1;
  --teal-h:     #0C9BAD;
  --teal-dark:  #0891b2;
  --indigo:     #4F46E5;
  --indigo-h:   #4338CA;
  --bg:         #050a18;
  --bg-2:       #0a1628;
  --success:    #10B981;
  --success-l:  #34D399;
  --danger:     #EF4444;
  --white:      #FFFFFF;
  --gray-500:   #6B7280;
  --radius:     12px;
  --shadow:     0 4px 24px rgba(0,0,0,.08);
  --shadow-lg:  0 12px 48px rgba(0,0,0,.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: 1.15rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 700; }
p  { color: rgba(255,255,255,.55); }
a  { text-decoration: none; }

/* ── UTILITIES ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
.section     { padding: 96px 0; }
.section-alt { background: var(--bg); }

.section-head         { margin-bottom: 56px; }
.section-head-center  { text-align: center; }

.section-label {
  display: inline-block;
  background: rgba(14,174,193,.12);
  color: var(--teal);
  border: 1px solid rgba(14,174,193,.3);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-title {
  color: var(--white);
  margin-bottom: 16px;
}
.section-sub {
  color: rgba(255,255,255,.5);
  font-size: 1.05rem;
  max-width: 560px;
}
.section-head-center .section-sub { margin: 0 auto; }

/* ── FADE-UP ANIMATION ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-size: .975rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all .2s;
  border: none;
  font-family: inherit;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  color: var(--white);
  box-shadow: 0 0 16px rgba(14,174,193,.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(14,174,193,.55);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.25);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.07);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.35);
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.1);
}
.btn-glass {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  color: var(--white);
  backdrop-filter: blur(8px);
}
.btn-glass:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.3);
  transform: translateY(-1px);
}
.btn-glow {
  box-shadow: 0 0 20px rgba(14,174,193,.45), 0 4px 20px rgba(14,174,193,.25);
}
.btn-glow:hover {
  box-shadow: 0 0 32px rgba(14,174,193,.7), 0 8px 28px rgba(14,174,193,.35);
}
.btn-sm  { padding: 9px 20px; font-size: .875rem; }
.btn-lg  { padding: 16px 36px; font-size: 1.05rem; }

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 32px);
  max-width: 1200px;
  background: rgba(5,10,24,.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;
  padding: 0 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.06);
  transition: background .4s, box-shadow .4s, border-color .4s;
}
.nav.scrolled {
  background: rgba(5,10,24,.75);
  border-color: rgba(255,255,255,.14);
  box-shadow: 0 12px 40px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.07);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-mark {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 1.05rem;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(14,174,193,.4);
}
.nav-logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.02em;
}
.nav-logo-text span { color: var(--teal); }

/* Desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,.65);
  font-size: .925rem;
  font-weight: 500;
  transition: color .25s;
}
.nav-links a:hover { color: var(--white); }

/* CTA buttons */
.nav-ctas { display: flex; gap: 10px; align-items: center; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: rgba(255,255,255,.8);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none;
  padding: 0 16px 16px;
}
.nav-mobile.open {
  display: block;
  animation: mobileMenuIn .25s ease forwards;
}
@keyframes mobileMenuIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.nav-mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.nav-mobile a {
  display: block;
  padding: 11px 16px;
  color: rgba(255,255,255,.7);
  font-size: .95rem;
  font-weight: 500;
  border-radius: 10px;
  transition: background .2s, color .2s;
}
.nav-mobile a:hover { background: rgba(255,255,255,.07); color: var(--white); }
.nav-mobile-primary {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal)) !important;
  color: var(--white) !important;
  text-align: center;
  margin-top: 4px;
  font-weight: 600 !important;
  box-shadow: 0 0 16px rgba(14,174,193,.3);
}

/* ── HERO ── */
.hero {
  background-color: var(--bg);
  background-image:
    radial-gradient(at 15% 20%, rgba(14,174,193,.18) 0px, transparent 50%),
    radial-gradient(at 85% 15%, rgba(79,70,229,.14) 0px, transparent 45%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 140px 24px 80px;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 160px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
  z-index: 1;
}
.hero > * { position: relative; z-index: 1; }

/* Dot grid */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
  z-index: 0;
}

/* Hero 2-col grid */
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 52px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Hero content */
.hero-content { display: flex; flex-direction: column; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14,174,193,.1);
  border: 1px solid rgba(14,174,193,.3);
  color: var(--teal);
  font-size: .8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  width: fit-content;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.7); }
}

.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: var(--teal); }

.tw-cursor {
  display: inline-block;
  color: var(--teal);
  animation: blink-cursor 1s step-end infinite;
  margin-left: 1px;
}
@keyframes blink-cursor { 50% { opacity: 0; } }

.hero-sub {
  color: rgba(255,255,255,.6);
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

/* Hero stats */
.hero-stats {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: 100%;
}
.hero-stat {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
  padding: 16px 22px;
  flex: 1 1 0%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 24px rgba(14,174,193,.14), inset 0 1px 0 rgba(255,255,255,.15);
}
.hero-stat::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent);
  pointer-events: none;
}
.hero-stat-num {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--white);
  display: block;
  letter-spacing: -.02em;
  text-shadow: 0 0 16px rgba(14,174,193,.4);
}
.hero-stat-label {
  font-size: .72rem;
  color: rgba(255,255,255,.55);
  margin-top: 5px;
  display: block;
}

/* Wave connector between stats */
.wave-connector {
  flex: 0 0 64px;
  height: 44px;
  align-self: center;
}

/* Floating emoji cards */
.float-cards {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.float-card {
  position: absolute;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  animation: float-anim 4s ease-in-out infinite;
}
.float-card:nth-child(1) { width:56px;height:56px; top:15%; right:19%; animation-delay:0s;   box-shadow:0 0 18px rgba(14,174,193,.2); }
.float-card:nth-child(2) { width:50px;height:50px; top:24%; right:9%;  animation-delay:.9s;  box-shadow:0 0 18px rgba(79,70,229,.2); }
.float-card:nth-child(3) { width:62px;height:62px; top:44%; right:23%; animation-delay:1.5s; box-shadow:0 0 22px rgba(14,174,193,.2); }
.float-card:nth-child(4) { width:48px;height:48px; top:63%; right:7%;  animation-delay:.5s;  box-shadow:0 0 18px rgba(245,158,11,.15); }
.float-card:nth-child(5) { width:52px;height:52px; top:76%; right:27%; animation-delay:2.1s; box-shadow:0 0 18px rgba(16,185,129,.15); }
@keyframes float-anim {
  0%,100% { transform: translateY(0)   rotate(0deg); }
  33%      { transform: translateY(-10px) rotate(2deg); }
  66%      { transform: translateY(-4px)  rotate(-1deg); }
}

/* Hero mockup (right column) */
.hero-mockup { position: relative; z-index: 1; }
.mockup-window {
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.35), 0 0 40px rgba(14,174,193,.08);
}
.mockup-bar {
  background: #0f1a2e;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.mockup-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.mockup-dot:nth-child(1) { background: #FF5F57; }
.mockup-dot:nth-child(2) { background: #FFBD2E; }
.mockup-dot:nth-child(3) { background: #28CA41; }
.mockup-url {
  flex: 1;
  background: rgba(255,255,255,.06);
  border-radius: 5px;
  padding: 4px 12px;
  font-size: .72rem;
  color: rgba(255,255,255,.3);
  margin-left: 6px;
}
.mockup-body { padding: 18px; }

.mockup-input {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(14,174,193,.08);
  border: 1px solid rgba(14,174,193,.3);
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 14px;
}
.mockup-input-icon { font-size: 1rem; flex-shrink: 0; }
.mockup-input-text { font-size: .78rem; color: rgba(14,174,193,.85); font-family: monospace; flex: 1; }
.mockup-input-badge {
  font-size: .68rem;
  background: rgba(16,185,129,.15);
  color: #34D399;
  border: 1px solid rgba(16,185,129,.25);
  padding: 2px 8px;
  border-radius: 100px;
  font-weight: 700;
  white-space: nowrap;
}

.mockup-output {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 10px;
  padding: 14px;
}
.mockup-out-label {
  font-size: .68rem;
  font-weight: 700;
  color: rgba(14,174,193,.8);
  letter-spacing: .06em;
  margin-bottom: 12px;
}
.mockup-section { margin-bottom: 12px; }
.mockup-section:last-of-type { margin-bottom: 0; }
.mockup-section-title {
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255,255,255,.45);
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.mockup-chars {
  margin-left: auto;
  font-size: .68rem;
  color: var(--success);
  font-weight: 700;
}
.mockup-section-text {
  font-size: .8rem;
  color: rgba(255,255,255,.65);
  line-height: 1.5;
}
.mockup-scores {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.mockup-score {
  flex: 1;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 8px;
  padding: 8px;
  text-align: center;
}
.mockup-score-val { font-size: 1rem; font-weight: 800; }
.mockup-score-lbl { font-size: .62rem; color: rgba(255,255,255,.35); margin-top: 2px; }

/* ── TRUST BADGES ── */
.trust-badges {
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.trust-badges-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .875rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  white-space: nowrap;
}

/* ── FEATURES ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 26px;
  transition: all .25s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(14,174,193,.8), transparent);
  opacity: 0;
  transition: opacity .25s;
}
.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.14);
  box-shadow: 0 0 28px rgba(14,174,193,.1), 0 12px 40px rgba(0,0,0,.35);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 46px; height: 46px;
  background: rgba(14,174,193,.12);
  border: 1px solid rgba(14,174,193,.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 14px;
  box-shadow: 0 0 14px rgba(14,174,193,.15);
}
.feature-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.feature-desc {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
}

/* ── COMPARISON ── */
.comparison { position: relative; overflow: hidden; }
.comparison::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.cmp-grid {
  display: grid;
  grid-template-columns: 1fr 210px 210px;
  gap: 0 10px;
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Column headers */
.cmp-col-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 18px;
  border-radius: 18px 18px 0 0;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.cmp-col-header.col-labels { justify-content: flex-start; }
.cmp-col-header.col-other {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-bottom: none;
  color: rgba(255,255,255,.35);
}
.cmp-col-header.col-us {
  background: rgba(79,70,229,.12);
  border: 1px solid rgba(79,70,229,.45);
  border-bottom: none;
  color: var(--white);
}

/* Price row */
.cmp-price-cell {
  padding: 14px 18px 18px;
  text-align: center;
  font-weight: 700;
  font-size: .9rem;
}
.cmp-price-cell.col-labels { text-align: left; padding-left: 0; }
.cmp-price-cell.col-other {
  background: rgba(255,255,255,.04);
  border-left: 1px solid rgba(255,255,255,.08);
  border-right: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.3);
}
.cmp-price-cell.col-us {
  background: rgba(79,70,229,.1);
  border-left: 1px solid rgba(79,70,229,.45);
  border-right: 1px solid rgba(79,70,229,.45);
  color: var(--white);
}

/* Feature rows */
.cmp-row { display: contents; }
.cmp-cell {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
}
.cmp-cell.col-labels {
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  padding-left: 0;
}
.cmp-cell.col-other {
  background: rgba(255,255,255,.03);
  border-left: 1px solid rgba(255,255,255,.08);
  border-right: 1px solid rgba(255,255,255,.08);
  justify-content: center;
}
.cmp-cell.col-us {
  background: rgba(79,70,229,.06);
  border-left: 1px solid rgba(79,70,229,.4);
  border-right: 1px solid rgba(79,70,229,.4);
  justify-content: center;
}
.cmp-row:last-of-type .cmp-cell.col-other {
  border-radius: 0 0 18px 18px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.cmp-row:last-of-type .cmp-cell.col-us {
  border-radius: 0 0 18px 18px;
  border-bottom: 1px solid rgba(79,70,229,.45);
}
.cmp-cell.col-us, .cmp-price-cell.col-us, .cmp-col-header.col-us {
  box-shadow: 4px 0 20px rgba(79,70,229,.14), -4px 0 20px rgba(79,70,229,.14);
}
.cmp-yes  { color: #34D399; font-size: 1.25rem; font-weight: 700; }
.cmp-no   { color: #F87171; font-size: 1.25rem; }
.cmp-cta  { text-align: center; margin-top: 44px; position: relative; z-index: 1; }

/* ── HOW IT WORKS – Steps ── */
.steps { display: flex; flex-direction: column; gap: 28px; }
.step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.step-num {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(14,174,193,.35);
}
.step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.step-desc {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
  margin-bottom: 10px;
}
.step-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.step-tag {
  display: inline-block;
  background: rgba(14,174,193,.1);
  border: 1px solid rgba(14,174,193,.2);
  color: var(--teal);
  font-size: .72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
}

/* ── HOW IT WORKS GRID ── */
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ── SECURITY SECTION ── */
.security-section { overflow: hidden; }
.security-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
.security-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
}
.security-badge-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color .25s;
}
.security-badge-card:hover { border-color: rgba(14,174,193,.25); }
.security-badge-icon {
  font-size: 1.5rem;
  margin-bottom: 10px;
  display: block;
}
.security-badge-card h4 {
  color: var(--white);
  font-size: .9rem;
  margin-bottom: 5px;
}
.security-badge-card p {
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  margin: 0;
  line-height: 1.5;
}

.security-checklist {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 0 36px rgba(14,174,193,.06), 0 12px 40px rgba(0,0,0,.25);
  position: sticky;
  top: 100px;
}
.security-cl-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.security-cl-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 0 18px rgba(14,174,193,.3);
  flex-shrink: 0;
}
.security-cl-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}
.security-cl-sub {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  margin-top: 2px;
}
.security-check-list { display: flex; flex-direction: column; gap: 12px; }
.security-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .875rem;
  color: rgba(255,255,255,.65);
}
.sec-check {
  color: var(--success-l);
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── PRICING ── */
.pricing-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}
.pricing-toggle-label {
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255,255,255,.4);
  transition: color .2s;
}
.pricing-toggle-label.active { color: var(--white); }

/* Pricing Toggle Switch */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 28px;
  cursor: pointer;
  flex-shrink: 0;
}
.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.toggle-slider {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 100px;
  transition: background .25s, border-color .25s;
}
.toggle-slider::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  top: 3px;
  background: rgba(255,255,255,.7);
  border-radius: 50%;
  transition: transform .25s, background .25s;
}
.toggle-switch input:checked + .toggle-slider {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  border-color: var(--teal);
}
.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(24px);
  background: var(--white);
}
.pricing-save-badge {
  background: rgba(16,185,129,.15);
  color: #34d399;
  border: 1px solid rgba(16,185,129,.25);
  font-size: .72rem;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 100px;
}

/* Trial banner */
.trial-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: linear-gradient(135deg, rgba(14,174,193,.07), rgba(14,174,193,.03));
  border: 1px solid rgba(14,174,193,.22);
  border-radius: var(--radius);
  padding: 18px 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.trial-banner-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.trial-banner-left div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.trial-banner-left strong {
  color: var(--white);
  font-size: .95rem;
}
.trial-banner-left span {
  font-size: .8rem;
  color: rgba(255,255,255,.45);
}
.trial-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--teal);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 20px;
  white-space: nowrap;
}

/* Pricing grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}
.pricing-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  transition: all .25s;
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 28px rgba(14,174,193,.1), 0 12px 40px rgba(0,0,0,.35);
  border-color: rgba(255,255,255,.14);
}
.pricing-card.featured {
  border: 2px solid rgba(14,174,193,.5);
  background: rgba(14,174,193,.06);
  box-shadow: 0 0 40px rgba(14,174,193,.12), 0 0 80px rgba(14,174,193,.05);
}
.pricing-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 0 14px rgba(14,174,193,.4);
}
.pricing-plan {
  font-size: .8rem;
  font-weight: 700;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 10px;
}
.pricing-price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.pricing-price sup { font-size: 1.1rem; vertical-align: super; }
.pricing-price span { font-size: 1rem; font-weight: 400; color: rgba(255,255,255,.4); }
.pricing-desc {
  font-size: .83rem;
  color: rgba(255,255,255,.4);
  margin-bottom: 22px;
  min-height: 52px;
}
.period-label { font-style: italic; }
.pricing-sep {
  height: 1px;
  background: rgba(255,255,255,.07);
  margin-bottom: 20px;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex: 1;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .875rem;
  color: rgba(255,255,255,.65);
}
.pricing-check { color: var(--teal); font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.pricing-cross { color: rgba(255,255,255,.25); font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.pricing-btn   { margin-top: auto; justify-content: center; }

/* ── FAQ ── */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .2s, border-color .2s;
}
.faq-item:hover  { border-color: rgba(255,255,255,.13); }
.faq-item.open   { border-color: rgba(14,174,193,.2); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  font-size: .95rem;
  font-weight: 600;
  color: var(--white);
  gap: 14px;
  font-family: inherit;
}
.faq-caret {
  color: var(--teal);
  transition: transform .3s;
  flex-shrink: 0;
  font-size: 1rem;
}
.faq-item.open .faq-caret { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 24px;
}
.faq-a p {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  padding-bottom: 20px;
  line-height: 1.65;
}
.faq-item.open .faq-a { max-height: 300px; }

/* ── CTA BAND ── */
.cta-band {
  padding: 96px 0 120px;
  position: relative;
  background: var(--bg);
}
.cta-band::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(14,174,193,.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.cta-band-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-band-inner h2 {
  color: var(--white);
  margin-bottom: 16px;
  text-shadow: 0 0 30px rgba(14,174,193,.4), 0 0 70px rgba(14,174,193,.15);
}
.cta-band-inner h2 span { color: var(--teal); }
.cta-band-inner p {
  color: rgba(255,255,255,.55);
  font-size: 1.05rem;
  margin-bottom: 36px;
}
.cta-band-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FOOTER ── */
.footer {
  background: var(--bg);
  padding: 64px 0 0;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(14,174,193,.5) 30%, rgba(14,174,193,.5) 70%, transparent);
  pointer-events: none;
  z-index: 2;
}
.footer-circuit-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.footer .container { position: relative; z-index: 1; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-brand .nav-logo { margin-bottom: 14px; display: inline-flex; }
.footer-brand-desc {
  font-size: .82rem;
  color: rgba(255,255,255,.35);
  line-height: 1.7;
  max-width: 230px;
  margin-top: 4px;
}
.footer-col-title {
  font-size: .72rem;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 16px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-link {
  font-size: .855rem;
  color: rgba(255,255,255,.38);
  text-decoration: none;
  transition: color .2s, padding-left .2s;
  display: inline-block;
}
.footer-link:hover     { color: var(--teal); padding-left: 4px; }
.footer-link-active    { color: var(--teal) !important; }

/* Status */
.footer-status-wrap { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.footer-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(16,185,129,.12);
  border: 1px solid rgba(16,185,129,.25);
  color: var(--success-l);
  font-size: .8rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  width: fit-content;
}
.footer-status-dot {
  width: 7px; height: 7px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

/* Made in Germany */
.footer-mig {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;
  padding: 6px 14px 6px 8px;
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
}
.footer-mig-flag {
  display: flex;
  flex-direction: column;
  width: 18px;
  height: 13px;
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
}
.footer-mig-flag span {
  flex: 1;
  display: block;
}

/* Bottom bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 28px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: .78rem;
  color: rgba(255,255,255,.25);
}
.footer-copy-sep { margin: 0 6px; opacity: .4; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  font-size: .78rem;
  color: rgba(255,255,255,.28);
  text-decoration: none;
  transition: color .2s;
}
.footer-legal a:hover { color: var(--teal); }

.hidden { display: none !important; }

/* ── 404 ERROR PAGE ── */
.error-page {
  min-height: calc(100vh - 220px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 80px;
}
.error-inner {
  text-align: center;
  max-width: 560px;
}
.error-icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}
.error-icon-ring {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid rgba(14,174,193,.2);
  background: radial-gradient(circle, rgba(14,174,193,.08) 0%, transparent 70%);
  animation: error-pulse 3s ease-in-out infinite;
}
@keyframes error-pulse {
  0%, 100% { transform: scale(1);   opacity: .6; }
  50%       { transform: scale(1.1); opacity: 1;  }
}
.error-icon {
  font-size: 3.5rem;
  color: var(--teal);
  position: relative;
  z-index: 1;
}
.error-code {
  font-size: clamp(5rem, 15vw, 8rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -4px;
  background: linear-gradient(135deg, var(--teal), rgba(14,174,193,.4));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}
.error-title {
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.error-sub {
  font-size: .95rem;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  margin-bottom: 36px;
}
.error-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.error-links .btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.error-links .ti { font-size: 1.1rem; }
.error-hint {
  font-size: .82rem;
  color: rgba(255,255,255,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}
.error-hint .ti { font-size: .9rem; color: rgba(14,174,193,.6); }
.error-hint a { color: var(--teal); }

/* ── LEGAL PAGES ── */
.legal-wrap {
  max-width: 860px;
  margin: 0 auto;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 48px;
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal);
  font-size: .875rem;
  font-weight: 600;
  margin-bottom: 36px;
  text-decoration: none;
  transition: gap .2s;
}
.legal-back:hover { gap: 10px; }
.legal-meta {
  font-size: .8rem;
  color: rgba(255,255,255,.35);
  margin-bottom: 32px;
}
.legal-wrap h1 { color: var(--white); margin-bottom: 8px; font-size: clamp(1.6rem, 3vw, 2rem); }

.legal-wrap h2 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 36px;
  margin-bottom: 14px;
  padding-left: 14px;
  border-left: 3px solid var(--teal);
}
.legal-wrap p  { font-size: .9rem; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 14px; }
.legal-wrap ul { padding-left: 20px; margin-bottom: 14px; }
.legal-wrap li { font-size: .9rem; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 6px; }
.legal-wrap a  { color: var(--teal); }
.legal-toc {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 36px;
}
.legal-toc-title { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.3); margin-bottom: 10px; }
.legal-toc ol { padding-left: 18px; }
.legal-toc li { font-size: .875rem; color: rgba(255,255,255,.5); line-height: 1.8; }
.legal-toc a  { color: var(--teal); }
.legal-block {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 10px;
  padding: 20px 24px;
  margin: 14px 0;
}
.legal-block p { margin: 0; }
.legal-sep { height: 1px; background: rgba(255,255,255,.08); margin: 36px 0; }
.legal-highlight {
  background: rgba(14,174,193,.07);
  border: 1px solid rgba(14,174,193,.2);
  border-radius: 8px;
  padding: 14px 18px;
  margin: 14px 0;
  font-size: .875rem;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
}
.legal-wrap h3 { font-size: .95rem; font-weight: 700; color: rgba(255,255,255,.8); margin: 22px 0 8px; }
.legal-wrap ol { padding-left: 20px; margin-bottom: 14px; }
.legal-title { color: var(--white); margin-bottom: 8px; font-size: clamp(1.6rem, 3vw, 2rem); }

/* ── RESPONSIVE ────────────────────────────── */

/* max-width: 600px – Kleine Smartphones */
@media only screen and (max-width: 600px) {
  .section { padding: 64px 0; }
  .features-grid { grid-template-columns: 1fr; }
  .hero { padding: 104px 16px 56px; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 0; }
  .hero-mockup { display: none; }
  .float-cards { display: none; }
  .hero-stats { flex-wrap: nowrap; gap: 6px; }
  .hero-stats .wave-connector { display: none; }
  .hero-stat { flex: 1 1 calc(33% - 6px); min-width: 0; padding: 10px 8px; }
  .hero-stat-num { font-size: .95rem; }
  .hero-stat-label { font-size: .62rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .security-badges { grid-template-columns: 1fr; }
  .security-inner { grid-template-columns: 1fr; gap: 40px; }
  .how-grid { grid-template-columns: 1fr; gap: 40px; }
  .how-grid > div:last-child { display: none; }
  .cmp-col-header.col-labels,
  .cmp-price-cell.col-labels,
  .cmp-cell.col-labels { display: none; }
  .cmp-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { grid-column: auto; }
  .cta-band-btns { flex-direction: column; align-items: center; }
  .trust-badges-inner { gap: 14px; }
  .trial-banner { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .legal-wrap { padding: 20px 16px; }
}

/* max-width: 767px – Nav Hamburger für alle Mobilgeräte */
@media only screen and (max-width: 767px) {
  .nav { border-radius: 14px; padding: 0 16px; top: 8px; }
  .nav-links, .nav-ctas { display: none; }
  .nav-hamburger { display: flex; }
}

/* min-width: 600px – Große Smartphones / kleines Tablet */
@media only screen and (min-width: 600px) {
  .hero-stat { padding: 14px 16px; }
}

/* min-width: 768px – Tablets Portrait */
@media only screen and (min-width: 768px) {
  .nav { border-radius: 16px; padding: 0 20px; top: 10px; }
  .nav-links, .nav-ctas { display: flex; }
  .nav-hamburger { display: none; }
  .nav-mobile { display: none; }
  .hero { padding: 110px 20px 60px; }
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .hero-mockup { display: block; }
  .float-cards { display: flex; }
  .hero-stats .wave-connector { display: block; }
  .security-badges { grid-template-columns: repeat(2, 1fr); }
  .cmp-col-header.col-labels,
  .cmp-price-cell.col-labels,
  .cmp-cell.col-labels { display: flex; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: row; align-items: center; }
  .legal-wrap { padding: 48px; }
}

/* min-width: 992px – Tablets Landscape / kleiner Desktop */
@media only screen and (min-width: 992px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid  { grid-template-columns: repeat(3, 1fr); }
  .security-inner { grid-template-columns: 1fr 1fr; gap: 60px; }
  .security-checklist { position: sticky; }
  .how-grid { grid-template-columns: 1fr 1fr; gap: 80px; }
  .how-grid > div:last-child { display: block; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* min-width: 1200px – Desktop */
@media only screen and (min-width: 1200px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-brand .footer-brand-desc { max-width: 260px; }
}
