/* DigiCheck24 Demo-Einstieg – start.html */
:root {
  --digi-navy: #0C2340;
  --digi-navy-light: #132d52;
  --digi-yellow: #FFD700;
  --digi-yellow-dim: rgba(255, 215, 0, 0.15);
  --digi-text: #e8edf4;
  --digi-muted: #9eb0c8;
}

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

html {
  scroll-behavior: smooth;
}

body.start-page {
  margin: 0;
  min-height: 100vh;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--digi-navy);
  color: var(--digi-text);
  line-height: 1.6;
}

.start-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255, 215, 0, 0.12);
  background: rgba(12, 35, 64, 0.95);
  position: sticky;
  top: 0;
  z-index: 10;
}

.start-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.start-brand-haken {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.start-brand-name {
  font-size: clamp(1.45rem, 2.8vw, 1.85rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.start-brand-name span {
  color: var(--digi-yellow);
}

.start-header-note {
  font-size: 0.8rem;
  color: var(--digi-muted);
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-radius: 999px;
}

.start-header-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1rem;
  font-size: 0.88rem;
}

.start-header-nav a {
  color: var(--digi-yellow);
  text-decoration: none;
  font-weight: 600;
  padding: 0.35rem 0.5rem;
  border-radius: 6px;
}

.start-header-nav a:hover {
  background: rgba(255, 215, 0, 0.1);
  text-decoration: underline;
}

@media (max-width: 640px) {
  .start-header {
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .start-header-nav {
    width: 100%;
    justify-content: flex-end;
  }
}

.start-hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .start-hero {
    grid-template-columns: 1.15fr 0.85fr;
    padding-top: 4rem;
  }
}

.start-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--digi-yellow);
  background: var(--digi-yellow-dim);
  border: 1px solid rgba(255, 215, 0, 0.35);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  margin-bottom: 1.25rem;
}

.start-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  line-height: 1.15;
  font-weight: 800;
}

.start-hero h1 em {
  font-style: normal;
  color: var(--digi-yellow);
}

.start-lead {
  font-size: 1.1rem;
  color: var(--digi-text);
  margin: 0 0 1rem;
  max-width: 38rem;
}

.start-lead strong {
  color: #fff;
}

.start-body {
  color: var(--digi-muted);
  margin: 0 0 1.75rem;
  max-width: 38rem;
}

.start-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.start-pill {
  font-size: 0.78rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  color: var(--digi-muted);
}

.start-cta-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.start-cta-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1.15rem 2.25rem;
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--digi-navy);
  background: linear-gradient(180deg, #ffe033 0%, var(--digi-yellow) 45%, #e6c200 100%);
  border: none;
  border-radius: 14px;
  box-shadow:
    0 0 0 1px rgba(255, 215, 0, 0.5),
    0 8px 32px rgba(255, 215, 0, 0.35),
    0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  cursor: pointer;
}

.start-cta-main:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(255, 215, 0, 0.7),
    0 12px 40px rgba(255, 215, 0, 0.45),
    0 6px 16px rgba(0, 0, 0, 0.3);
}

.start-cta-main:active {
  transform: translateY(0);
}

.start-cta-main svg {
  width: 1.35em;
  height: 1.35em;
  flex-shrink: 0;
}

.start-cta-hint {
  font-size: 0.88rem;
  color: var(--digi-muted);
  margin: 0;
}

.start-cta-hint kbd {
  font-family: inherit;
  font-size: 0.82em;
  padding: 0.1em 0.45em;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.start-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.start-phone-mockup {
  width: min(100%, 300px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 56px rgba(0, 0, 0, 0.5));
  transform: rotate(-2deg);
}

@media (min-width: 900px) {
  .start-phone-mockup {
    width: min(100%, 340px);
  }
}

.start-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
}

.start-section--ausw {
  padding-bottom: 4rem;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
  padding-top: 2.5rem;
}

.start-section h2 {
  font-size: 1.35rem;
  margin: 0 0 0.65rem;
  color: #fff;
}

.start-section-lead {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  color: var(--digi-muted);
  max-width: 42rem;
}

.start-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.start-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 215, 0, 0.12);
  border-radius: 14px;
  padding: 1.25rem 1.35rem;
}

.start-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: var(--digi-yellow);
}

.start-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--digi-muted);
}

.start-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

.start-card-link:hover {
  border-color: rgba(255, 215, 0, 0.45);
  background: rgba(255, 215, 0, 0.06);
  transform: translateY(-2px);
}

.start-card-more {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--digi-yellow);
}

.start-footer {
  text-align: center;
  padding: 2rem 1.5rem 3rem;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
  font-size: 0.82rem;
  color: var(--digi-muted);
}

.start-footer a {
  color: var(--digi-yellow);
  text-decoration: none;
}

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

.start-pricing-teaser {
  margin-top: 2.5rem;
  padding: 1.25rem 1.35rem;
  border: 1px solid rgba(255, 215, 0, 0.28);
  border-radius: 12px;
  background: rgba(255, 215, 0, 0.06);
}

.start-section--preise {
  border-top: 1px solid rgba(255, 215, 0, 0.1);
  padding-top: 2rem;
  padding-bottom: 2.5rem;
}

.start-price-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
  width: 100%;
}

@media (min-width: 720px) {
  .start-price-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }
}

.start-price-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.5rem 1.45rem 1.6rem;
  border-radius: 16px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 2px solid rgba(255, 215, 0, 0.22);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.start-price-card:hover {
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateY(-3px);
}

.start-price-card--main {
  border-color: rgba(255, 215, 0, 0.55);
  background: linear-gradient(165deg, rgba(255, 215, 0, 0.14) 0%, rgba(255, 215, 0, 0.04) 100%);
  box-shadow: 0 8px 36px rgba(255, 215, 0, 0.12), 0 4px 24px rgba(0, 0, 0, 0.3);
}

.start-price-badge {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--digi-yellow);
}

.start-price-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.15rem;
  color: #fff;
}

.start-price-amt {
  margin: 0 0 0.35rem;
  font-size: 2rem;
  font-weight: 800;
  color: var(--digi-yellow);
  line-height: 1.1;
}

.start-price-amt span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--digi-muted);
}

.start-price-note {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  color: var(--digi-muted);
  line-height: 1.4;
}

.start-price-includes-title {
  margin: 0 0 0.65rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}

.start-price-list {
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 1;
}

.start-price-list li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.35rem;
  font-size: 0.88rem;
  color: var(--digi-text);
  line-height: 1.45;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.start-price-list li:first-child {
  border-top: none;
  padding-top: 0;
}

.start-price-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.38rem;
  color: var(--digi-yellow);
  font-weight: 700;
  font-size: 0.85rem;
}

.start-price-komplett {
  margin: 1.5rem 0 0;
  padding: 1rem 1.25rem;
  text-align: center;
  font-size: 0.92rem;
  color: var(--digi-muted);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 10px;
  background: rgba(12, 35, 64, 0.4);
}

.start-price-komplett strong {
  color: var(--digi-yellow);
}

.start-section--standard {
  border-top: 1px solid rgba(255, 215, 0, 0.1);
  padding-top: 2.5rem;
  padding-bottom: 4rem;
}

.start-nav-overview {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  .start-nav-overview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .start-nav-overview {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.start-nav-group {
  padding: 1.25rem 1.35rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 215, 0, 0.15);
}

.start-nav-group h3 {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--digi-yellow);
  letter-spacing: 0.02em;
}

.start-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.start-nav-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.45rem 0;
  font-size: 0.88rem;
  color: var(--digi-text);
  line-height: 1.45;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.start-nav-list li:first-child {
  border-top: none;
  padding-top: 0;
}

.start-nav-icon {
  flex-shrink: 0;
  width: 1.35rem;
  text-align: center;
}

.start-nav-premium-hint {
  margin: 1.75rem 0 0;
  padding: 1rem 1.25rem;
  font-size: 0.88rem;
  color: var(--digi-muted);
  border: 1px dashed rgba(255, 215, 0, 0.25);
  border-radius: 10px;
  background: rgba(12, 35, 64, 0.35);
  line-height: 1.5;
}

.start-nav-premium-hint strong {
  color: var(--digi-yellow);
}

.start-price-more-link {
  margin: 0.85rem 0 0;
  font-size: 0.82rem;
}

.start-price-more-link a {
  color: var(--digi-yellow);
  font-weight: 600;
  text-decoration: none;
}

.start-price-more-link a:hover {
  text-decoration: underline;
}

.start-section--mobil {
  border-top: 1px solid rgba(255, 215, 0, 0.1);
  padding-top: 2.5rem;
  padding-bottom: 2rem;
}

.start-mobile-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: center;
  margin-top: 1.25rem;
}

@media (min-width: 720px) {
  .start-mobile-block {
    grid-template-columns: minmax(200px, 300px) 1fr;
    gap: 2.5rem;
  }
}

.start-mobile-shot {
  width: 100%;
  max-width: 280px;
  height: auto;
  margin: 0 auto;
  display: block;
  border-radius: 20px;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.45));
}

.start-mobile-points li {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.start-mobile-points li:first-child {
  border-top: none;
  padding-top: 0;
}

.start-role-title {
  margin: 2.25rem 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--digi-yellow);
  letter-spacing: 0.01em;
}

.start-role-title:first-of-type {
  margin-top: 1.25rem;
}

.start-role-lead {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  color: var(--digi-muted);
  max-width: 44rem;
  line-height: 1.5;
}
