:root {
  color-scheme: light dark;
  /* Feder-Orange aus dem App-Icon (Lesbarkeit: etwas gedämpft für Flächen & Links) */
  --accent-rgb: 218, 102, 28;
  --accent: rgb(var(--accent-rgb));
  --accent-hover: #b8570f;
  --accent-soft: rgba(var(--accent-rgb), 0.14);
  --bg: #f5f5f7;
  --bg-elevated: #ffffff;
  --text: #1d1d1f;
  --text-secondary: #6e6e73;
  --border: rgba(0, 0, 0, 0.08);
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  --max: 1080px;
  --font: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --table-head-bg: #f2f2f2;
  --yes-color: #0a7d2a;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0c0c0e;
    --bg-elevated: #161618;
    --text: #f5f5f7;
    --text-secondary: #a1a1a6;
    --border: rgba(255, 255, 255, 0.1);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
    --accent-soft: rgba(var(--accent-rgb), 0.22);
    --accent-hover: #e07835;
    --table-head-bg: #2c2c2e;
    --yes-color: #34c759;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
}

.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.wrap.narrow {
  max-width: 720px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

@media (prefers-color-scheme: dark) {
  .site-header {
    background: rgba(22, 22, 24, 0.82);
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  min-height: 3.25rem;
  padding-block: 0.5rem;
}

.brand {
  margin-right: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: flex;
  flex-shrink: 0;
}

.brand-icon {
  width: 28px;
  height: 28px;
  border-radius: 6.5px;
  display: block;
  object-fit: cover;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  flex: 1;
  min-width: 0;
  margin-right: 0.45rem;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.link-quiet {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
}

.link-quiet:hover {
  color: var(--text);
}

.header-lang {
  flex-shrink: 0;
  position: relative;
  margin-left: auto;
}

.lang-menu {
  position: relative;
}

.lang-menu__trigger {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.12rem 0.2rem 0.12rem 0.12rem;
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-weight: 600;
}

.lang-menu__trigger::-webkit-details-marker {
  display: none;
}

.lang-menu__trigger::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--text-secondary);
  margin-top: 2px;
  flex-shrink: 0;
  transition: transform 0.15s ease;
}

.lang-menu[open] > .lang-menu__trigger::after {
  transform: rotate(180deg);
}

.lang-menu__trigger:hover {
  color: var(--text);
}

.lang-menu__trigger:hover::after {
  border-top-color: var(--text);
}

.lang-menu__trigger:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.lang-menu__current {
  display: inline-flex;
  line-height: 0;
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}

.lang-menu__current::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.48);
  pointer-events: none;
}

@media (prefers-color-scheme: dark) {
  .lang-menu__current::after {
    background: rgba(255, 255, 255, 0.28);
  }
}

.lang-menu__panel {
  position: absolute;
  top: calc(100% + 0.35rem);
  right: 0;
  z-index: 80;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  max-width: min(100vw - 2rem, 20rem);
  padding: 0.4rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lang-menu__link {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  min-width: max-content;
  box-sizing: border-box;
  padding: 0.35rem 0.45rem;
  border-radius: 8px;
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.78rem;
  line-height: 1.25;
  white-space: nowrap;
}

.lang-menu__label {
  flex-shrink: 0;
}

.lang-menu__link .lang-flag {
  flex-shrink: 0;
}

.lang-menu__link:hover {
  color: var(--text);
  background: var(--accent-soft);
}

.lang-menu__link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.lang-flag {
  display: block;
  width: 22px;
  height: 16px;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--text) 14%, transparent);
}

.lang-menu__link:hover .lang-flag {
  filter: brightness(0.92);
}

.header-lang__sep {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-hover);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(var(--accent-rgb), 0.42);
}

.btn-ghost:hover {
  background: var(--accent-soft);
}

.btn-lg {
  padding: 0.75rem 1.35rem;
  font-size: 1rem;
}

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

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 1.05fr);
    gap: 3rem;
    align-items: start;
  }
}

.eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  margin: 0 0 0.75rem;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 1rem;
}

.hero-lead {
  margin: 0 0 1.75rem;
  color: var(--text-secondary);
  font-size: 1.125rem;
  max-width: 36rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.trust-row {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.trust-row li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.trust-row li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.85;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.ipad-showcase {
  margin: 0;
  width: 100%;
  max-width: 540px;
}

.ipad-caption {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-align: center;
  margin: 0 auto 1rem;
  max-width: 22rem;
  line-height: 1.4;
}

.ipad-frame {
  width: 100%;
}

.ipad-bezel {
  position: relative;
  padding: 12px 12px 14px 18px;
  border-radius: 22px;
  background: linear-gradient(155deg, #3a3a3c 0%, #1c1c1e 42%, #2c2c2e 100%);
  box-shadow: var(--shadow), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.ipad-camera {
  position: absolute;
  left: 7px;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #121214;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ipad-screen {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.35);
  background: linear-gradient(180deg, #ffffff 0%, #f2f2f7 100%);
  min-height: 200px;
}

.ipad-layout {
  display: grid;
  grid-template-columns: minmax(0, 36%) 1fr;
  min-height: 210px;
}

.mock-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0.55rem 0.45rem;
  background: rgba(242, 242, 247, 0.98);
  border-right: 1px solid var(--border);
}

.mock-sidebar-head {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: -0.02em;
  padding: 0 0.2rem 0.25rem;
}

.mock-sidebar-icon {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  object-fit: cover;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.mock-list-compact {
  gap: 0.3rem;
}

.mock-list-compact .mock-row {
  padding: 0.45rem 0.5rem;
  font-size: 0.6875rem;
}

.mock-main {
  position: relative;
  padding: 0.65rem 0.85rem 2.75rem;
  text-align: left;
}

.mock-main-title {
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.mock-main-sub {
  font-size: 0.6875rem;
  color: var(--text-secondary);
  margin: 0.15rem 0 0.5rem;
  line-height: 1.3;
}

.mock-main-body {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
}

.mock-line {
  font-size: 0.6875rem;
  color: var(--text-secondary);
  line-height: 1.35;
}

.mock-line-strong {
  font-weight: 600;
  color: var(--text);
  font-size: 0.71875rem;
  margin-top: 0.1rem;
}

.mock-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mock-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.75rem 0.85rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: 0.875rem;
}

.mock-row-accent {
  border-color: rgba(var(--accent-rgb), 0.32);
  box-shadow: 0 0 0 1px var(--accent-soft);
}

.mock-title {
  font-weight: 600;
}

.mock-meta {
  color: var(--text-secondary);
  font-size: 0.8125rem;
  white-space: nowrap;
}

.mock-fab {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 1.75rem;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(var(--accent-rgb), 0.38);
}

.mock-fab-tablet {
  right: 0.65rem;
  bottom: 0.65rem;
  width: 42px;
  height: 42px;
  font-size: 1.45rem;
}

@media (max-width: 480px) {
  .ipad-bezel {
    padding: 10px 10px 12px 16px;
    border-radius: 18px;
  }

  .ipad-layout {
    grid-template-columns: minmax(0, 40%) 1fr;
    min-height: 188px;
  }

  .mock-main-body .mock-line:nth-child(n + 5) {
    display: none;
  }
}

.section {
  padding: 4rem 0;
}

.section-alt {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
  text-align: center;
}

.section-intro {
  margin: 0 auto 2.5rem;
  max-width: 42rem;
  text-align: center;
  color: var(--text-secondary);
}

.card-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .card-grid.three {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--bg-elevated);
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.section-alt .card {
  background: var(--bg);
}

.card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.125rem;
}

.card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.96875rem;
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  box-shadow: var(--shadow);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.compare-table th,
.compare-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.compare-table thead th {
  background: var(--table-head-bg);
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table td:first-child {
  font-weight: 500;
}

/* Spalte „My Minutes“ in Feder-Orange */
.compare-table thead th:nth-child(2),
.compare-table tbody td:nth-child(2) {
  color: var(--accent);
}

.compare-table tbody td:nth-child(2) .yes {
  color: var(--accent);
}

.yes {
  color: var(--yes-color);
  font-weight: 600;
}

.muted {
  color: var(--text-secondary);
}

.feature-blocks {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .feature-blocks {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-block {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
}

.feature-block h3 {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
}

.feature-block > p {
  margin: 0 0 1rem;
  color: var(--text-secondary);
  font-size: 0.96875rem;
}

.feature-block ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.feature-block li {
  margin-bottom: 0.35rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  padding: 0 1rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  padding: 1rem 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-weight: 400;
  color: var(--text-secondary);
  font-size: 1.25rem;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0 0 1rem;
  color: var(--text-secondary);
  font-size: 0.96875rem;
}

.faq-item a {
  color: var(--accent);
}

.cta-bottom {
  padding: 4rem 0;
  text-align: center;
}

.cta-bottom-inner h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.02em;
}

.cta-bottom-inner p {
  margin: 0 0 1.5rem;
  color: var(--text-secondary);
}

.site-footer {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.footer-inner {
  text-align: center;
}

.footer-inner p {
  margin: 0.35rem 0;
}

.footer-links a {
  color: var(--accent);
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.sep {
  margin: 0 0.5rem;
  opacity: 0.5;
}

@media (max-width: 720px) {
  .header-nav .link-quiet {
    display: none;
  }
}
