/* ============================================================
   Praxano – Elegant Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800&display=swap');

:root {
  --blue:        #66aaff;
  --blue-dark:   #4d95f0;
  --blue-deeper: #3a7dd9;
  --blue-light:  #eef5ff;
  --blue-glow:   rgba(102, 170, 255, .18);

  --ink:         #111318;
  --ink-2:       #3a3f4a;
  --ink-3:       #717788;
  --ink-4:       #a0a8b8;

  --surface:     #ffffff;
  --surface-2:   #f8f9fc;
  --border:      rgba(0, 0, 0, .07);

  --font: 'Inter', -apple-system, 'Helvetica Neue', sans-serif;

  --r-sm:  10px;
  --r-md:  16px;
  --r-lg:  24px;
  --ease:  cubic-bezier(.22, 1, .36, 1);
  --t:     .35s var(--ease);
  --w:     1100px;
}

/* ── Base ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

.container {
  max-width: var(--w);
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 600px) { .container { padding: 0 24px; } }

/* ══════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  background: var(--blue);
  height: 76px;
  display: flex;
  align-items: center;
  transition: box-shadow var(--t);
}
.nav.scrolled {
  box-shadow: 0 1px 32px rgba(102,170,255,.35);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  gap: 48px;
}

/* Logo – weiß auf blauem Hintergrund: kein Filter nötig */
.nav__logo img {
  height: 58px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  letter-spacing: -.01em;
  transition: color var(--t);
}
.nav__links a:hover { color: #fff; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: #fff;
  border-radius: 2px;
  transition: var(--t);
}
.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--blue-dark);
  padding: 12px 24px 20px;
  gap: 4px;
}
.nav__mobile a {
  font-size: .95rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

@media (max-width: 640px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__mobile.open { display: flex; }
}

/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
.hero {
  padding: 192px 0 140px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--surface);
}

/* Feiner Glow aus dem Blau */
.hero::after {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse at 50% 20%,
    rgba(102,170,255,.13) 0%,
    transparent 65%);
  pointer-events: none;
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 32px;
  opacity: 0;
  animation: rise .9s .05s var(--ease) forwards;
}
.hero__kicker-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  animation: blink 2.4s ease-in-out infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; }
  50%      { opacity: .25; }
}

.hero__title {
  font-size: clamp(3rem, 8.5vw, 6rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.05em;
  color: var(--ink);
  margin-bottom: 28px;
  opacity: 0;
  animation: rise .9s .15s var(--ease) forwards;
}
.hero__title em {
  font-style: normal;
  color: var(--blue);
}

.hero__lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 400;
  color: var(--ink-3);
  max-width: 500px;
  margin: 0 auto 52px;
  line-height: 1.65;
  letter-spacing: -.01em;
  opacity: 0;
  animation: rise .9s .28s var(--ease) forwards;
}

/* E-Mail notify row */
.hero__form {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  max-width: 400px;
  margin: 0 auto 16px;
  opacity: 0;
  animation: rise .9s .42s var(--ease) forwards;
  border-radius: var(--r-sm);
  box-shadow: 0 2px 24px rgba(0,0,0,.08);
  overflow: hidden;
}
.hero__form input {
  flex: 1;
  padding: 15px 20px;
  border: 1.5px solid var(--border);
  border-right: none;
  border-radius: var(--r-sm) 0 0 var(--r-sm);
  font-family: var(--font);
  font-size: .92rem;
  color: var(--ink);
  background: var(--surface);
  outline: none;
  transition: border-color var(--t);
}
.hero__form input:focus { border-color: var(--blue); }
.hero__form input::placeholder { color: var(--ink-4); }
.hero__form button {
  padding: 15px 22px;
  background: var(--blue);
  color: #fff;
  border: none;
  font-family: var(--font);
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  transition: background var(--t);
  letter-spacing: -.01em;
}
.hero__form button:hover { background: var(--blue-dark); }

.hero__hint {
  font-size: .75rem;
  color: var(--ink-4);
  text-align: center;
  opacity: 0;
  animation: rise .9s .56s var(--ease) forwards;
  letter-spacing: .01em;
}

/* Divider line */
.hero__line {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 80px;
  opacity: 0;
  animation: rise .9s .7s var(--ease) forwards;
}
.hero__line-bar {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, var(--blue), transparent);
}
.hero__line-label {
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-4);
}

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

/* ══════════════════════════════════════════════════════════
   FEATURES
══════════════════════════════════════════════════════════ */
.features {
  padding: 120px 0;
  background: var(--surface-2);
}
.section-eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 72px;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.feature {
  background: var(--surface);
  padding: 44px 36px;
  transition: background var(--t);
}
.feature:hover { background: #fafbff; }
.feature__icon {
  font-size: 1.6rem;
  margin-bottom: 22px;
  display: block;
  line-height: 1;
}
.feature__title {
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 10px;
}
.feature__body {
  font-size: .88rem;
  color: var(--ink-3);
  line-height: 1.7;
}

@media (max-width: 840px) { .features__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .features__grid { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════════════
   COMING SOON
══════════════════════════════════════════════════════════ */
.coming {
  padding: 140px 0;
  background: var(--surface);
  text-align: center;
}
.coming__chip {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 32px;
}
.coming__title {
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1.06;
  color: var(--ink);
  margin-bottom: 22px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.coming__title em { font-style: normal; color: var(--blue); }
.coming__body {
  font-size: 1.05rem;
  color: var(--ink-3);
  max-width: 480px;
  margin: 0 auto 44px;
  line-height: 1.7;
  font-weight: 400;
}
.coming__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: #fff;
  padding: 16px 36px;
  border-radius: 100px;
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: -.01em;
  transition: background var(--t), transform var(--t);
}
.coming__cta:hover {
  background: var(--ink-2);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════════════════ */
.about {
  padding: 120px 0;
  background: var(--surface-2);
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.about__body { display: flex; flex-direction: column; gap: 18px; }
.about__text {
  font-size: .97rem;
  color: var(--ink-3);
  line-height: 1.78;
}
.about__nums {
  display: flex;
  gap: 48px;
  padding-top: 8px;
}
.about__num-val {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -.05em;
  color: var(--ink);
  line-height: 1;
}
.about__num-val sup {
  font-size: 1.1rem;
  color: var(--blue);
  font-weight: 700;
}
.about__num-label {
  font-size: .78rem;
  color: var(--ink-4);
  margin-top: 6px;
  letter-spacing: .02em;
}

/* Right card */
.about__card {
  background: var(--surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}
.about__card-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 28px;
  border-bottom: 1px solid var(--border);
  transition: background var(--t);
}
.about__card-row:last-child { border-bottom: none; }
.about__card-row:hover { background: #fafbff; }
.about__card-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  opacity: .8;
}
.about__card-label {
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.01em;
}
.about__card-sub {
  font-size: .78rem;
  color: var(--ink-4);
  margin-top: 2px;
}

@media (max-width: 860px) {
  .about__inner { grid-template-columns: 1fr; gap: 56px; }
}

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.footer {
  background: var(--ink);
  padding: 64px 0 32px;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  gap: 40px;
  flex-wrap: wrap;
}
.footer__brand img {
  height: 36px;
  margin-bottom: 14px;
  opacity: .65;
}
.footer__tagline {
  font-size: .82rem;
  color: rgba(255,255,255,.28);
  line-height: 1.7;
  max-width: 200px;
}
.footer__nav { display: flex; gap: 56px; flex-wrap: wrap; }
.footer__col-head {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.22);
  margin-bottom: 16px;
}
.footer__col-links { display: flex; flex-direction: column; gap: 12px; }
.footer__col-links a {
  font-size: .84rem;
  color: rgba(255,255,255,.42);
  transition: color var(--t);
}
.footer__col-links a:hover { color: rgba(255,255,255,.85); }
.footer__bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copy { font-size: .78rem; color: rgba(255,255,255,.2); }
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { font-size: .78rem; color: rgba(255,255,255,.25); transition: color var(--t); }
.footer__legal a:hover { color: rgba(255,255,255,.6); }

/* ══════════════════════════════════════════════════════════
   INNER PAGES – page header
══════════════════════════════════════════════════════════ */
.page-header {
  padding: 124px 0 60px;
  border-bottom: 1px solid var(--border);
}
.page-header__eye {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.page-header__title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -.05em;
  color: var(--ink);
}

/* ══════════════════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════════════════ */
.contact { padding: 80px 0 120px; }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 96px;
  align-items: flex-start;
}
.contact__meta { display: flex; flex-direction: column; gap: 36px; }
.contact__item-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: 5px;
}
.contact__item-val {
  font-size: .97rem;
  font-weight: 600;
  color: var(--ink);
}
.contact__item-val a { color: var(--blue); }
.contact__note {
  background: var(--surface-2);
  border-radius: var(--r-md);
  padding: 20px 22px;
  font-size: .83rem;
  color: var(--ink-3);
  line-height: 1.65;
  border: 1px solid var(--border);
}
.contact__note strong { color: var(--ink); }

@media (max-width: 780px) { .contact__grid { grid-template-columns: 1fr; gap: 48px; } }

/* ══════════════════════════════════════════════════════════
   FORMS
══════════════════════════════════════════════════════════ */
.form { display: flex; flex-direction: column; gap: 14px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-size: .75rem;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: .02em;
}
.form-field input,
.form-field textarea {
  padding: 13px 16px;
  border: 1.5px solid rgba(0,0,0,.1);
  border-radius: var(--r-sm);
  font-family: var(--font);
  font-size: .92rem;
  color: var(--ink);
  background: var(--surface);
  outline: none;
  transition: border-color var(--t), box-shadow var(--t);
  width: 100%;
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-glow);
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form__check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .8rem;
  color: var(--ink-3);
  line-height: 1.55;
  cursor: pointer;
}
.form__check input[type="checkbox"] {
  width: 15px; height: 15px;
  margin-top: 2px;
  accent-color: var(--blue);
  flex-shrink: 0;
}
.form__check a { color: var(--blue); }
.form__btn {
  align-self: flex-start;
  padding: 14px 32px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-family: var(--font);
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: -.01em;
  transition: background var(--t), transform var(--t);
}
.form__btn:hover { background: var(--blue-dark); transform: translateY(-1px); }
.form__notice {
  padding: 13px 16px;
  border-radius: var(--r-sm);
  font-size: .85rem;
  display: none;
}
.form__notice--ok  { background: #edf9f1; border: 1px solid #b7e4c7; color: #1a7a3d; display: block; }
.form__notice--err { background: #fef2f2; border: 1px solid #fcc; color: #c0392b; display: block; }

@media (max-width: 560px) { .form__row { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════════════
   TABS (Vertragsende)
══════════════════════════════════════════════════════════ */
.tabs { padding: 56px 0 120px; }
.tabs__strip {
  display: inline-flex;
  background: var(--surface-2);
  border-radius: var(--r-sm);
  padding: 4px;
  gap: 2px;
  margin-bottom: 56px;
}
.tabs__btn {
  padding: 10px 24px;
  background: none;
  border: none;
  border-radius: calc(var(--r-sm) - 2px);
  font-family: var(--font);
  font-size: .85rem;
  font-weight: 500;
  color: var(--ink-3);
  cursor: pointer;
  transition: background var(--t), color var(--t), box-shadow var(--t);
}
.tabs__btn.active {
  background: var(--surface);
  color: var(--ink);
  font-weight: 600;
  box-shadow: 0 1px 6px rgba(0,0,0,.08);
}
.tabs__panel { display: none; }
.tabs__panel.active { display: grid; grid-template-columns: 1.2fr 1fr; gap: 72px; align-items: flex-start; }

.info-card {
  background: var(--surface-2);
  border-radius: var(--r-md);
  padding: 24px;
  border: 1px solid var(--border);
}
.info-card + .info-card { margin-top: 14px; }
.info-card--accent {
  background: var(--blue-light);
  border-color: rgba(102,170,255,.25);
}
.info-card__head {
  font-size: .82rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -.01em;
}
.info-card__body {
  font-size: .83rem;
  color: var(--ink-3);
  line-height: 1.7;
}
.info-card__body a { color: var(--blue); }
.info-card__body strong { color: var(--ink); }
.ktable { width: 100%; border-collapse: collapse; margin-top: 10px; }
.ktable th, .ktable td {
  padding: 9px 12px;
  text-align: left;
  font-size: .78rem;
  border-bottom: 1px solid var(--border);
}
.ktable th { font-weight: 700; color: var(--ink); }
.ktable td { color: var(--ink-3); }
.tabs__form-title {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--ink);
  margin-bottom: 8px;
}
.tabs__form-sub {
  font-size: .88rem;
  color: var(--ink-3);
  margin-bottom: 28px;
  line-height: 1.6;
}

@media (max-width: 780px) { .tabs__panel.active { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .tabs__btn { padding: 9px 16px; font-size: .8rem; } }

/* ══════════════════════════════════════════════════════════
   LEGAL PAGES
══════════════════════════════════════════════════════════ */
.legal { padding: 60px 0 120px; }
.legal__doc {
  max-width: 720px;
  line-height: 1.8;
}
.legal__doc h2 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin: 40px 0 10px;
  letter-spacing: -.02em;
}
.legal__doc p   { font-size: .9rem; color: var(--ink-3); margin-bottom: 10px; }
.legal__doc a   { color: var(--blue); }
.legal__doc table { width: 100%; border-collapse: collapse; margin: 14px 0; }
.legal__doc th,
.legal__doc td  { padding: 9px 12px; border-bottom: 1px solid var(--border); font-size: .85rem; text-align: left; }
.legal__doc th  { font-weight: 700; color: var(--ink); }
.legal__doc td  { color: var(--ink-3); }

/* ══════════════════════════════════════════════════════════
   SCROLL TOP
══════════════════════════════════════════════════════════ */
.scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 40px; height: 40px;
  background: var(--ink);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: .9rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t), background var(--t);
  z-index: 500;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--blue); }
