/* =============================================================
   Trelano – Landingpage Stylesheet
   Design: Precision Navy
   Farben: #0047F0 (Trelano Blue), #0F1A2E (Navy), #FFFFFF
   Schriften: Poppins (Headlines), Inter (Body)
   ============================================================= */

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

:root {
  --blue:    #0047F0;
  --navy:    #0F1A2E;
  --dark:    #06152F;
  --white:   #FFFFFF;
  --gray-50: #F8F9FA;
  --gray-100:#F1F3F5;
  --gray-300:#CED4DA;
  --gray-500:#6C757D;
  --gray-700:#495057;
  --gray-900:#212529;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── NAVBAR ─────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: background 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.navbar.scrolled {
  background: rgba(15, 26, 46, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08);
}

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

.navbar__icon {
  height: 32px;
  width: 32px;
  object-fit: contain;
  border-radius: 6px;
  /* Icon-Dark hat Navy-Hintergrund – passt gut auf Navy-Navbar */
}

.navbar__wordmark {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--white);
  letter-spacing: -0.01em;
}

.navbar__nav {
  display: flex;
  gap: 32px;
  list-style: none;
}

.navbar__nav a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}

.navbar__nav a:hover { color: var(--white); }

.navbar__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--blue);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
  transition: transform 0.16s var(--ease-out), box-shadow 0.16s var(--ease-out);
}

.navbar__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0, 71, 240, 0.4);
}

.navbar__cta:active { transform: scale(0.97); }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(0,71,240,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(0,71,240,0.06) 0%, transparent 60%);
}

/* Subtile Gitter-Linien */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(0,71,240,0.15);
  border: 1px solid rgba(0,71,240,0.3);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: #6B9FFF;
  margin-bottom: 24px;
}

.hero__badge-dot {
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero__title {
  font-size: clamp(36px, 5vw, 58px);
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero__title span {
  color: var(--blue);
  position: relative;
}

.hero__subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--blue);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  border-radius: 10px;
  transition: transform 0.16s var(--ease-out), box-shadow 0.16s var(--ease-out);
  box-shadow: 0 4px 24px rgba(0,71,240,0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,71,240,0.5);
}

.btn-primary:active { transform: scale(0.97); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  font-size: 15px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  transition: color 0.2s, border-color 0.2s;
}

.btn-secondary:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}

.hero__trust {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.hero__trust-item svg { color: #4ADE80; flex-shrink: 0; }

.hero__visual {
  position: relative;
}

.hero__mockup {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.08);
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.4s var(--ease-out);
}

.hero__mockup:hover {
  transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
}

.hero__mockup img {
  width: 100%;
  display: block;
}

/* ── SOCIAL PROOF BAR ────────────────────────────────────── */
.proof-bar {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  padding: 20px 0;
}

.proof-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.proof-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-700);
  font-weight: 500;
}

.proof-bar__item svg { color: var(--blue); }

/* ── FEATURES ────────────────────────────────────────────── */
.features {
  padding: 96px 0;
  background: var(--white);
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 17px;
  color: var(--gray-500);
  max-width: 560px;
  line-height: 1.7;
}

.features__header {
  text-align: center;
  margin-bottom: 64px;
}

.features__header .section-subtitle { margin: 0 auto; }

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  padding: 32px;
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s var(--ease-out);
  background: var(--white);
}

.feature-card:hover {
  border-color: rgba(0,71,240,0.2);
  box-shadow: 0 8px 32px rgba(0,71,240,0.08);
  transform: translateY(-4px);
}

.feature-card__icon {
  width: 48px; height: 48px;
  background: rgba(0,71,240,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--blue);
}

.feature-card__title {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 10px;
}

.feature-card__text {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.65;
}


/* ── SCREENSHOTS ─────────────────────────────────────────── */

.screenshots {
  padding: 96px 0;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

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

.screenshots__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .screenshots__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.screenshot-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.screenshot-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,71,240,0.15);
}

.screenshot-card__label {
  padding: 14px 18px 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.screenshot-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── USP SECTION ─────────────────────────────────────────── */
.usp {
  padding: 96px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.usp::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(0,71,240,0.15) 0%, transparent 70%);
}

.usp__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.usp__label { color: #6B9FFF; }
.usp__title { color: var(--white); margin-bottom: 20px; }
.usp__text {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 32px;
}

.usp__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.usp__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.75);
}

.usp__list li svg {
  color: #4ADE80;
  flex-shrink: 0;
  margin-top: 2px;
}

.usp__comparison {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
}

.usp__comparison-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 16px 24px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.usp__comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 14px;
  align-items: center;
}

.usp__comparison-row:last-child { border-bottom: none; }

.usp__comparison-row .label { color: rgba(255,255,255,0.6); }

.check { color: #4ADE80; font-size: 18px; }
.cross { color: #F87171; font-size: 18px; }
.highlight { color: var(--blue); font-weight: 600; }

/* ── PRICING ─────────────────────────────────────────────── */
.pricing {
  padding: 96px 0;
  background: var(--gray-50);
}

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

.pricing__header .section-subtitle { margin: 0 auto; }

.pricing__card {
  max-width: 480px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 4px 40px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,71,240,0.1);
  text-align: center;
  position: relative;
}

.pricing__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 12px;
  padding: 6px 18px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing__name {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 8px;
}

.pricing__price {
  font-family: 'Poppins', sans-serif;
  font-size: 64px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin: 24px 0 4px;
  letter-spacing: -0.03em;
}

.pricing__price sup {
  font-size: 28px;
  vertical-align: top;
  margin-top: 12px;
  display: inline-block;
}

.pricing__period {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 32px;
}

.pricing__features {
  list-style: none;
  text-align: left;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--gray-700);
}

.pricing__features li svg { color: var(--blue); flex-shrink: 0; }

.pricing__cta {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--blue);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 17px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: transform 0.16s var(--ease-out), box-shadow 0.16s var(--ease-out);
  box-shadow: 0 4px 24px rgba(0,71,240,0.3);
  text-align: center;
}

.pricing__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,71,240,0.45);
}

.pricing__cta:active { transform: scale(0.97); }

.pricing__note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--gray-500);
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq {
  padding: 96px 0;
  background: var(--white);
}

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

.faq__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  overflow: hidden;
}

.faq__item {
  border-bottom: 1px solid var(--gray-100);
}

.faq__item:last-child { border-bottom: none; }

.faq__question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 28px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--navy);
  transition: background 0.15s;
}

.faq__question:hover { background: var(--gray-50); }

.faq__icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.25s var(--ease-out);
  color: var(--gray-700);
}

.faq__item.open .faq__icon {
  background: var(--blue);
  color: var(--white);
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease-out), padding 0.3s;
  padding: 0 28px;
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
}

.faq__item.open .faq__answer {
  max-height: 300px;
  padding: 0 28px 22px;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  padding: 56px 0 32px;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer__icon {
  height: 28px;
  width: 28px;
  object-fit: contain;
  border-radius: 5px;
}

.footer__wordmark {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
  letter-spacing: -0.01em;
}

.footer__tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  max-width: 260px;
}

.footer__col-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.footer__links a:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copy {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}

.footer__legal a:hover { color: rgba(255,255,255,0.6); }

/* ── SUBPAGE (Impressum / Datenschutz) ───────────────────── */
.subpage-header {
  background: var(--navy);
  padding: 120px 0 64px;
}

.subpage-header h1 {
  color: var(--white);
  font-size: 40px;
}

.subpage-content {
  padding: 64px 0 96px;
  max-width: 760px;
  margin: 0 auto;
}

.subpage-content h2 {
  font-size: 22px;
  color: var(--navy);
  margin: 40px 0 12px;
}

.subpage-content h2:first-child { margin-top: 0; }

.subpage-content p, .subpage-content li {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 12px;
}

.subpage-content ul { padding-left: 20px; }

.subpage-nav {
  background: var(--navy);
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
}

.subpage-nav a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.subpage-nav a:hover { color: var(--white); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { order: -1; }
  .hero__mockup { transform: none; }
  .features__grid { grid-template-columns: 1fr 1fr; }
  .usp__inner { grid-template-columns: 1fr; gap: 48px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .navbar__nav { display: none; }
  .features__grid { grid-template-columns: 1fr; }
  .proof-bar__inner { gap: 24px; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .pricing__card { padding: 36px 24px; }
}

/* ═══ WAS PASSIERT NACH DEM KAUF ════════════════════════════ */
.nach-kauf {
  padding: 5rem 0;
  background: #f8f9fc;
}
.nach-kauf__header {
  text-align: center;
  margin-bottom: 3rem;
}
.nach-kauf__steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.nach-kauf__step {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 2rem 1.75rem;
  max-width: 240px;
  text-align: center;
}
.nach-kauf__step-num {
  width: 40px;
  height: 40px;
  background: #0047F0;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 auto 1rem;
  font-family: 'Poppins', sans-serif;
}
.nach-kauf__step h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #0F1A2E;
  margin-bottom: 0.5rem;
}
.nach-kauf__step p {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
}
.nach-kauf__arrow {
  font-size: 1.5rem;
  color: #0047F0;
  font-weight: 700;
}
@media (max-width: 768px) {
  .nach-kauf__arrow { transform: rotate(90deg); }
}

/* ═══ ÜBER TRELANO ══════════════════════════════════════════ */
.ueber-trelano {
  padding: 5rem 0;
  background: #0F1A2E;
  color: #fff;
}
.ueber-trelano__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.ueber-trelano .section-label {
  color: rgba(255,255,255,0.5);
}
.ueber-trelano .section-title {
  color: #fff;
}
.ueber-trelano__text {
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.ueber-trelano__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #0047F0;
  text-decoration: none;
  font-weight: 500;
  margin-top: 0.5rem;
  transition: opacity 0.2s;
}
.ueber-trelano__link:hover { opacity: 0.8; }
.ueber-trelano__values {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-top: 3.5rem;
}
.ueber-trelano__value {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}
.ueber-trelano__value-icon {
  font-size: 1.25rem;
}
@media (max-width: 768px) {
  .ueber-trelano__inner { grid-template-columns: 1fr; gap: 2rem; }
  .ueber-trelano__values { padding-top: 0; }
}
