*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  /* COLORS */
  --primary: #9333EA;
  --secondary: #2DD4BF;
  --tertiary: #A855F7;
  --accent: #FB7185;

  --bg: #F8FAFC;
  --card: #FFFFFF;
  --text: #0F172A;
  --muted: #3b0d1493;

      --waitlist-bg: #0a0a12;
      --waitlist-card: rgba(255,255,255,0.04);
      --waitlist-border: rgba(255,255,255,0.08);
      --waitlist-text: #f1f5f9;
      --waitlist-muted: rgba(241,245,249,0.5);

  /* SPACING SYSTEM (8px Grid) */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-xxl: 100px;

  /* BORDER RADIUS */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;

  /* SHADOWS */
  --shadow-sm: 0 5px 15px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 25px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);

  /* TEXT */
  --text-sm: 0.9rem;
  --text-base: 1rem;
  --text-lg: 1.2rem;
}
/* NAV */
.nav {
  width:100vw;
  background: rgba(10,10,18,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: #f1f5f9;
  position: sticky;
  top: 0;
  overflow: visible;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-links a {
  margin: 0 10px;
  color: #f1f5f9;
  text-decoration: none;
}

.nav-links a:hover {
  color:rgb(209, 126, 247);
}

#nav {
  position: sticky;
  top: 0;
  z-index: 999;
}
.nav-logo {
  height: 75px;
  width: auto;
}
.nav-logo-container {
  background-color: #fff;
  height: 85px;
  width: 85px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 735px) {
  .nav-inner h3 {
    margin-left: 50px;     /* Abstand zum Logo anpassen */
  }
}

/* Überschriften */
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: 'Inter', sans-serif; /* Oder deine gewählte Schriftart */
  line-height: 1.2;
  margin-top: 1.5em;    /* Mehr Platz nach oben für bessere Trennung */
  margin-bottom: 0.5em; /* Weniger Platz zum folgenden Text */
  font-weight: 700;
}

/* Spezifische Größen-Hierarchie */
h1 { font-size: 2.5rem;   letter-spacing: -0.02em; } 
h2 { font-size: 2rem;     letter-spacing: -0.01em; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem;     text-transform: uppercase; }

/* Responsive Anpassung für kleinere Bildschirme */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.5rem; }
}

/* HERO */
.hero {
  text-align: center;
  padding: 80px 20px;
  color: #f1f5f9;
  background: transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero::after {
  display: none;
}

.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: #f1f5f9;
}

.hero h1 em {
  font-style: italic;
  color: var(--secondary);
}

/* CARDS */
.card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 20px;
  border-radius: 12px;
  box-shadow: none;
  transition: all 0.25s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(147,51,234,0.3);
  background: rgba(255,255,255,0.06);
}

.card.highlight {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(79,70,229,0.2);
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #f1f5f9;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.btn.primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  transition: all 0.25s ease;
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(79, 70, 229, 0.4);
}

.btn.large {
  padding: 15px 30px;
  font-size: 1.1rem;
}

/* CTA */
.cta {
  text-align: center;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 20px;
  background: rgba(0,0,0,0.4);
  border-top: 1px solid rgba(255,255,255,0.06);
  color: #f1f5f9 !important;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
/* ============================= */
/* FOOTER MOBILE                 */
/* ============================= */

@media (max-width: 735px) {
  .footer .nav-inner {
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
  }
}

/* ============================= */
/* GLOBAL SPACING SYSTEM */
/* ============================= */

.section {
  padding: 100px 20px;
}

.section h2 {
  margin-bottom: 20px;
}

.section .center {
  max-width: 600px;
  margin: 0 auto 60px auto;
  line-height: 1.7;
  opacity: 0.8;
}

/* ============================= */
/* GRID SPACING */
/* ============================= */

.grid-3 {
  display: grid;
  gap: 30px;
  margin-top: 40px;
}

.grid-2 {
  display: grid;
  gap: 30px;
  margin-top: 40px;
}

/* ============================= */
/* CARDS – MODERN LOOK */
/* ============================= */

.card {
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.card h3 {
  margin-bottom: 12px;
  line-height: 1.4;
}

.card p {
  line-height: 1.7;
  opacity: 0.85;
}

/* Mehr Abstand zwischen Cards & Content */
.card + .card {
  margin-top: 0;
}

/* Optional: subtiler Border für mehr Definition */
.card {
  border: 1px solid rgba(0,0,0,0.04);
}

/* ============================= */
/* FEATURE BLOCK (unten im Bereich) */
/* ============================= */

.feature {
  margin-top: 80px;
  padding: 40px;
  border-radius: 16px;
  background: rgba(79,70,229,0.03);
}

.feature h3 {
  margin-bottom: 15px;
}

.feature p {
  max-width: 700px;
  margin: 0 auto 25px auto;
  line-height: 1.7;
  opacity: 0.85;
}

/* ============================= */
/* BUTTON SPACING */
/* ============================= */

.btn {
  margin-top: 10px;
}

/* ============================= */
/* HERO FINETUNING */
/* ============================= */

.hero {
  padding: 80px 20px;
}

.hero p {
  margin-bottom: 30px;
  opacity: 0.9;
  color:#fff;
}

/* ============================= */
/* RESPONSIVE FINETUNING */
/* ============================= */

@media (max-width: 768px) {
  .section {
    padding: 70px 20px;
  }

  .feature {
    padding: 25px;
  }

  .card {
    padding: 25px;
  }
}

/* Preise */
.price {
  font-size: 2.5rem;
  color:var(--tertiary);
  font-weight: 700;
}

.price-old {
  display: block;
  font-size: 1rem;
  color: #999;
  text-decoration: line-through;
  min-height: 1.2em;
}

.price-current {
  font-size: 2rem;
  font-weight: 700;
  color: var(--tertiary);
}

.price-period {
  font-size: 1rem;
  color: var(--muted);
  font-weight: normal;
}
.price span {
  font-size: 2rem!important;
  color:var(--tertiary)!important;
  font-weight: 700!important;
}

/* ============================= */
/* PRICING CARDS */
/* ============================= */

.pricing-card {
  position: relative;
  text-align: center;
  padding: var(--space-lg);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.pricing-card.highlight {
  transform: scale(1.08);
  background: rgba(147,51,234,0.08);
  border: 1px solid rgba(147,51,234,0.4);
  box-shadow: 0 20px 40px rgba(147,51,234,0.15);
  z-index: 2;
}

/* Badge */
.badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--primary);
  color: white;
  font-size: 0.75rem;
  padding: 5px 10px;
  border-radius: 999px;
  font-weight: bold;
}

/* Preis */
.price {
  font-size: 2rem;
  font-weight: 700;
  margin: var(--space-sm) 0;
}

.price span {
  font-size: 1rem;
  color: var(--muted);
  font-weight: normal;
}

/* Subline */
.muted {
  color: rgba(241,245,249,0.5);
  margin-bottom: var(--space-md);
}

/* Liste */
.pricing-list {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-md);
  text-align: left;
}

.pricing-list li {
  margin-bottom: var(--space-sm);
  line-height: 1.6;
  color: rgba(241,245,249,0.7);
}

/* Button */
.pricing-card .btn {
  width: 100%;
}

/* Hover Effekt */
.pricing-card:hover {
  transform: scale(1.08) translateY(-6px);
  transition: all 0.25s ease;
}

/* GRID */
.pricing-grid {
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

/* TRUST ELEMENT */
.pricing-trust {
  text-align: center;
  margin-top: var(--space-xl);
  font-weight: 500;
  color: var(--text);
  opacity: 0.9;
}

.pricing-trust p {
  display: inline-block;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  background: rgba(0,0,0,0.03);
}

/* MOBILE */
@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.highlight {
    transform: none;
  }
}
/* ============================= */
/* FAQ */
/* ============================= */

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  cursor: pointer;
  color: #f1f5f9;
}

.faq-item p {
  color: rgba(241,245,249,0.65);
  line-height: 1.7;
}

#faq .section {
  background-color: #e1c5fc1a;
}
/* TOGGLE */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.toggle-switch {
  position: relative;
  width: 48px;
  height: 26px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  inset: 0;
  background: #ccc;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.3s;
}

.toggle-slider::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: 0.3s;
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--primary);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(22px);
}

.pricing-badge-save {
  background: var(--secondary);
  color: #333333;
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: bold;
}
/* ============================= */
/* LANG SWITCH (Button Style)    */
/* ============================= */

.lang-bar {
  display: flex;
  gap: 8px;
  align-items: center;
}

.lang-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  color: rgba(241,245,249,0.5);
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  padding: 4px 10px;
  transition: all 0.2s;
}

.lang-btn:hover,
.lang-btn.active {
  border-color: rgba(147,51,234,0.4);
  color: #f1f5f9;
}
/* ============================= */
/* APP BANNER                    */
/* ============================= */

.app-banner {
  background: linear-gradient(135deg, #0F172A, #1e293b);
  color: #f1f5f9;
}

.app-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.app-banner-content {
  flex: 1;
}

.app-banner-content h2 {
  color: #f1f5f9;
  margin-bottom: 16px;
}

.app-banner-content p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
  max-width: 480px;
}

.app-banner-badge {
  display: inline-block;
  background: var(--secondary);
  color: #0F172A;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.app-banner-visual {
  flex-shrink: 0;
}

.app-banner-phone {
  width: 220px;
  background: #1e293b;
  border-radius: 24px;
  border: 2px solid rgba(255,255,255,0.1);
  padding: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.app-banner-screen {
  background: #0F172A;
  border-radius: 16px;
  padding: 14px;
}

.app-banner-screen-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 0.8rem;
  color: #f1f5f9;
  font-weight: 700;
}

.app-banner-screen-badge {
  background: rgba(255,255,255,0.1);
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
}

.app-banner-screen-total {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.app-banner-screen-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.app-banner-screen-item:last-child {
  border-bottom: none;
}

@media (max-width: 768px) {
  .app-banner-inner {
    flex-direction: column;
    text-align: center;
  }

  .app-banner-content p {
    margin: 0 auto 24px auto;
  }

  .app-banner-phone {
    width: 180px;
  }
}
/* ============================= */
/* ABOUT TEASER                  */
/* ============================= */

.about-teaser-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-badge {
  display: inline-block;
  background: rgba(147, 51, 234, 0.1);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-teaser-content h2 {
  margin-bottom: 16px;
}

.about-teaser-content p {
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 24px;
  opacity: 0.85;
}

@media (max-width: 768px) {
  .about-teaser-inner {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }

  .about-teaser-content p {
    margin: 0 auto 24px auto;
  }
}
.screenshots-section {
  margin-bottom: 48px;
  text-align: center;
    /*background-color: #fff;*/
  padding: 15px;
  border-radius: 12px;
}

.screenshots-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 24px;
}

.slider-track {
  display: flex;
  transition: transform 0.4s ease;
  will-change: transform;
  cursor: grab;
}

.slider-track.grabbing {
  cursor: grabbing;
}

.slider-slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 20px;
}

.slider-slide img {
  height: 600px;
  width: auto;
  border-radius: 4px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(83, 83, 83, 0.2);
  cursor: pointer;
  transition: background 0.2s ease;
}

.slider-dot.active {
  background: var(--primary);
}

.slider-outer {
  overflow: hidden;
}

@media (max-width: 640px) {
  .slider-slide img {
    height: 600px;
  }
}
/* ── CTA CARD ── */
    .cta-card {
      background: var(--waitlist-card);
      border: 1px solid var(--waitlist-border);
      border-radius: 16px;
      padding: 32px;
      margin-top: 50px;;
      margin-bottom: 40px;

    }

    .cta-label {
      font-size: 0.85rem;
      color: var(--secondary);
      font-weight: 500;
      margin-bottom: 8px;
      letter-spacing: 0.04em;
    }

    .cta-headline {
      font-family: 'DM Serif Display', serif;
      font-size: 1.5rem;
      margin-bottom: 6px;
      line-height: 1.3;
    }

    .cta-sub {
      font-size: 0.9rem;
      color: var(--waitlist-muted);
      margin-bottom: 24px;
    }

    .cta-sub strong {
      color: var(--secondary);
      font-weight: 500;
    }
     /* Form */
    .form-row {
      display: flex;
      gap: 10px;
    }

    .form-row input[type="email"] {
      flex: 1;
      background: rgba(255,255,255,0.06);
      border: 1px solid var(--border);
      border-radius: 10px;
      color: var(--waitlist-text);
      font-family: 'DM Sans', sans-serif;
      font-size: 0.95rem;
      padding: 13px 16px;
      outline: none;
      transition: border-color 0.2s;
      min-width: 0;
    }

    .form-row input[type="email"]::placeholder {
      color: rgba(241,245,249,0.3);
    }

    .form-row input[type="email"]:focus {
      border-color: rgba(147,51,234,0.5);
    }

    .form-row button {
      background: linear-gradient(135deg, var(--primary), #7c3aed);
      border: none;
      border-radius: 10px;
      color: white;
      cursor: pointer;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9rem;
      font-weight: 500;
      padding: 13px 22px;
      transition: opacity 0.2s, transform 0.15s;
      white-space: nowrap;
      flex-shrink: 0;
    }

    .form-row button:hover { opacity: 0.9; transform: translateY(-1px); }
    .form-row button:active { transform: translateY(0); }
    .form-row button:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

    .form-hint {
      font-size: 0.78rem;
      color: rgba(241,245,249,0.3);
      margin-top: 10px;
    }

    /* Success State */
    .success-msg {
      display: none;
      align-items: center;
      gap: 10px;
      background: rgba(45,212,191,0.08);
      border: 1px solid rgba(45,212,191,0.2);
      border-radius: 10px;
      color: var(--secondary);
      font-size: 0.95rem;
      padding: 14px 18px;
      margin-top: 12px;
    }
    /* ============================= */
/* HAMBURGER MENU                */
/* ============================= */

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #f1f5f9;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hamburger → X Animation */
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 735px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(10,10,18,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px 24px;
    gap: 16px;
    z-index: 998;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1rem;
    padding: 4px 0;
    width: 100%;
  }

  .lang-bar {
    margin-top: 8px;
  }
}