:root {
  --ti-primary: #008577;
  --ti-primary-dark: #00574b;
  --ti-teal: #00796b;
  --ti-teal-light: #26a69a;
  --ti-title: #0d3f39;
  --ti-bg: #f2f6f5;
  --ti-surface: #ffffff;
  --ti-border: #d6e6e2;
  --ti-neutral: #f7f7f7;
  --ti-gold: #f1c04b;
  --text: #1d2a28;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f7fbfa 0%, var(--ti-bg) 45%, #eef5f3 100%);
  line-height: 1.6;
}

a {
  color: var(--ti-primary-dark);
}

.container {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--ti-border);
  backdrop-filter: blur(6px);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-height: 72px;
}

.brand {
  font-weight: 800;
  text-decoration: none;
  color: var(--ti-title);
  letter-spacing: 0.2px;
}

.menu {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.menu a {
  text-decoration: none;
  color: #36504b;
  font-weight: 600;
  font-size: 0.95rem;
}

.hero {
  padding: 5.5rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 0 0 0.8rem;
  color: var(--ti-title);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.lead {
  font-size: 1.08rem;
  color: #35534e;
  max-width: 62ch;
}

.hero-card {
  background: var(--ti-surface);
  border: 1px solid var(--ti-border);
  border-radius: 18px;
  padding: 1.2rem;
  box-shadow: 0 10px 30px rgba(0, 87, 75, 0.08);
}

.hero-badge {
  display: inline-block;
  background: #fff5dc;
  color: #5f4b15;
  border: 1px solid #f1d695;
  border-radius: 999px;
  padding: 0.3rem 0.65rem;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.btn-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.btn {
  appearance: none;
  border: 0;
  border-radius: 14px;
  padding: 0.75rem 1rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, #7ab0bb 0%, #1e4a52 100%);
  box-shadow: 0 8px 20px rgba(30, 74, 82, 0.24);
}

.btn-secondary {
  color: var(--ti-primary-dark);
  border: 1px solid var(--ti-border);
  background: #fff;
}

section {
  padding: 2.2rem 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  background: var(--ti-surface);
  border: 1px solid var(--ti-border);
  border-radius: 14px;
  padding: 1rem;
}

.features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.feature {
  background: var(--ti-neutral);
  border: 1px solid var(--ti-border);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  font-weight: 600;
}

.shots {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.shot {
  aspect-ratio: 9 / 19;
  border-radius: 18px;
  border: 1px solid var(--ti-border);
  background: linear-gradient(180deg, #ffffff 0%, #edf4f2 100%);
  position: relative;
  overflow: hidden;
}

.shot::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 12px;
  background: linear-gradient(140deg, #f9fcfb 0%, #dcebe8 95%);
}

.shot span {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  text-align: center;
  font-size: 0.83rem;
  font-weight: 700;
  color: #305550;
  z-index: 2;
}

/* Shot mit echtem Screenshot */
.shot--real::before {
  display: none;
}
.shot--real img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 17px;
  z-index: 1;
}
.shot--real span {
  color: #fff;
  text-shadow: 0 1px 6px rgba(0,0,0,0.55);
  background: linear-gradient(to top, rgba(0,60,50,0.55) 0%, transparent 100%);
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px 10px 10px;
  border-radius: 0 0 17px 17px;
}

.feature-banner-section {
  padding-top: 0;
  padding-bottom: 0.5rem;
}

.feature-banner {
  display: block;
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0, 77, 64, 0.18);
}

.cta {
  background: var(--ti-surface);
  border: 1px solid var(--ti-border);
  border-radius: 18px;
  padding: 1.2rem;
}

.footer {
  margin-top: 2rem;
  padding: 1.4rem 0 2.2rem;
  border-top: 1px solid var(--ti-border);
  color: #446762;
  font-size: 0.95rem;
}

.legal {
  display: grid;
  gap: 1rem;
  padding: 3rem 0;
}

.legal article {
  background: var(--ti-surface);
  border: 1px solid var(--ti-border);
  border-radius: 14px;
  padding: 1rem;
}

@media (max-width: 960px) {
  .hero-grid,
  .cards,
  .shots {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .menu {
    display: none;
  }

  .hero {
    padding-top: 4rem;
  }

  .hero-grid,
  .cards,
  .features,
  .shots {
    grid-template-columns: 1fr;
  }
}
