/* =========================================================
   Noto Sans – lokal eingebunden (DSGVO-konform)
   Dateien: fonts/NotoSans/
   ========================================================= */
@font-face {
  font-family: 'Noto Sans';
  src: url('fonts/NotoSans/NotoSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Noto Sans';
  src: url('fonts/NotoSans/NotoSans-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Noto Sans';
  src: url('fonts/NotoSans/NotoSans-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Noto Sans';
  src: url('fonts/NotoSans/NotoSans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Noto Sans';
  src: url('fonts/NotoSans/NotoSans-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Noto Sans';
  src: url('fonts/NotoSans/NotoSans-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* ── VARIABLEN ── */
:root {
  --orange:       #E95420;
  --orange-light: #ff6b3d;
  --orange-dark:  #c8421a;
  --dark:         #1C1C1C;
  --light-bg:     #f4f4f4;
  --white:        #FFFFFF;
}

/* ── RESET ── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Noto Sans', sans-serif;
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--white);
  letter-spacing: 0px;
  display: flex;
  align-items: baseline;
  gap: 0;
  text-decoration: none;
}

.nav-logo span {
  color: var(--orange);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
}

nav ul a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color .2s;
}

nav ul a:hover {
  color: var(--white);
}

.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: 4px;
  font-weight: 700 !important;
}

.nav-cta:hover {
  background: var(--orange-dark);
  color: var(--white) !important;
}

/* ── HERO ── */
.hero {
  background: var(--dark);
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 48px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(232, 81, 26, 0.12) 0%, transparent 70%);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 81, 26, 0.15);
  border: 1px solid rgba(232, 81, 26, 0.4);
  color: var(--orange-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: 'Noto Sans', sans-serif;
  font-stretch: condensed;
  font-size: 62px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--orange);
}

.hero p {
  color: #aaa;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 460px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

.stat-item .stat-num {
  font-family: 'Noto Sans', sans-serif;
  font-stretch: condensed;
  font-size: 32px;
  font-weight: 800;
  color: var(--orange);
}

.stat-item .stat-label {
  font-size: 12px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  padding: 14px 30px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background .2s, transform .15s;
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 14px 30px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 1.5px solid #555;
  transition: border-color .2s, color .2s;
}

.btn-secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* ── ECHTE SCREENSHOTS ── */
.real-phone {
  display: flex;
  justify-content: center;
  align-items: center;
}

.real-phone img {
  width: 280px;
  max-width: 100%;
  border-radius: 38px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 40px 100px rgba(0, 0, 0, 0.65),
    0 10px 30px rgba(0, 0, 0, 0.4);
  display: block;
}

.hero-phone img {
  width: 310px;
  filter: drop-shadow(0 0 60px rgba(233, 84, 32, 0.22));
}

/* ── SECTION GENERIC ── */
section {
  width: 100%;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Noto Sans', sans-serif;
  font-stretch: condensed;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--dark);
}

.section-title.light {
  color: var(--white);
}

.section-sub {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  max-width: 560px;
}

.section-sub.light {
  color: #aaa;
}

/* ── NORMS BAR ── */
.norms-bar {
  background: var(--orange);
  padding: 18px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.norms-bar span {
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  opacity: .9;
  letter-spacing: .5px;
}

.norm-sep {
  color: rgba(255, 255, 255, .4);
}

/* ── FEATURES ── */
.features {
  background: var(--white);
  padding: 100px 48px;
}

.features-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.features-header {
  text-align: center;
  margin-bottom: 70px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  padding: 36px 32px;
  border: 1.5px solid #e8e8e8;
  border-radius: 8px;
  transition: border-color .25s, transform .2s, box-shadow .2s;
}

.feature-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(232, 81, 26, 0.1);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(232, 81, 26, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 10px;
  color: var(--dark);
}

.feature-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.65;
}

.feature-list {
  list-style: none;
  margin-top: 12px;
}

.feature-list li {
  font-size: 13px;
  color: #555;
  padding: 3px 0;
  padding-left: 16px;
  position: relative;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

/* ── APP IN AKTION ── */
.screenshots {
  background: var(--dark);
  padding: 100px 48px;
}

.screenshots-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.screenshots-header {
  text-align: center;
  margin-bottom: 70px;
}

.screen-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}

.screen-showcase:last-child {
  margin-bottom: 0;
}

.screen-showcase.reverse {
  direction: rtl;
}

.screen-showcase.reverse > * {
  direction: ltr;
}

.screen-step {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.screen-info h3 {
  font-family: 'Noto Sans', sans-serif;
  font-stretch: condensed;
  font-size: 34px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}

.screen-info p {
  font-size: 15px;
  color: #999;
  line-height: 1.7;
  margin-bottom: 24px;
}

.screen-bullets {
  list-style: none;
}

.screen-bullets li {
  font-size: 14px;
  color: #bbb;
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.screen-bullets li:last-child {
  border-bottom: none;
}

.screen-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
}

.screen-visual {
  display: flex;
  justify-content: center;
}

/* ── NORMS ── */
.norms-section {
  background: var(--light-bg);
  padding: 100px 48px;
}

.norms-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.norms-header {
  text-align: center;
  margin-bottom: 60px;
}

.norms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.norm-card {
  background: var(--white);
  border-radius: 8px;
  padding: 32px;
  border-left: 4px solid var(--orange);
  box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
  transition: transform .2s, box-shadow .2s;
}

.norm-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(232, 81, 26, 0.12);
}

.norm-id {
  font-family: 'Noto Sans', sans-serif;
  font-stretch: condensed;
  font-size: 22px;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 6px;
}

.norm-card h3 {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 6px;
}

.norm-card p {
  font-size: 13px;
  color: #777;
  line-height: 1.5;
}

/* ── PRICING ── */
.pricing {
  background: var(--white);
  padding: 100px 48px;
}

.pricing-inner {
  max-width: 900px;
  margin: 0 auto;
}

.pricing-header {
  text-align: center;
  margin-bottom: 60px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.plan-card {
  border: 2px solid #e8e8e8;
  border-radius: 10px;
  padding: 40px 36px;
  position: relative;
  transition: border-color .2s, transform .2s;
}

.plan-card.featured {
  border-color: var(--orange);
  background: linear-gradient(135deg, rgba(232, 81, 26, .03), transparent);
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: white;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 5px 18px;
  border-radius: 20px;
  text-transform: uppercase;
}

.plan-name {
  font-family: 'Noto Sans', sans-serif;
  font-stretch: condensed;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 8px;
}

.plan-price {
  font-family: 'Noto Sans', sans-serif;
  font-stretch: condensed;
  font-size: 48px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
}

.plan-price span {
  font-size: 18px;
  color: #888;
}

.plan-period {
  font-size: 13px;
  color: #888;
  margin-bottom: 28px;
}

.plan-features {
  list-style: none;
  margin-bottom: 32px;
}

.plan-features li {
  font-size: 14px;
  color: #555;
  padding: 7px 0;
  padding-left: 22px;
  position: relative;
  border-bottom: 1px solid #f0f0f0;
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 800;
}

.plan-features li.no::before {
  content: '–';
  color: #ccc;
}

.plan-features li.no {
  color: #bbb;
}

.plan-btn {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all .2s;
}

.plan-btn.outline {
  border: 2px solid #ddd;
  color: var(--dark);
}

.plan-btn.outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.plan-btn.filled {
  background: var(--orange);
  color: white;
}

.plan-btn.filled:hover {
  background: var(--orange-dark);
}

/* ── CTA ── */
.cta-section {
  background: linear-gradient(135deg, #1e2a3a 0%, #1a1a1a 100%);
  padding: 100px 48px;
  text-align: center;
}

.cta-section h2 {
  font-family: 'Noto Sans', sans-serif;
  font-stretch: condensed;
  font-size: 52px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 18px;
}

.cta-section h2 span {
  color: var(--orange);
}

.cta-section p {
  font-size: 17px;
  color: #999;
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  color: var(--dark);
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: transform .15s, box-shadow .15s;
}

.store-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
}

.store-btn small {
  display: block;
  font-weight: 400;
  font-size: 11px;
  color: #888;
}

/* ── FOOTER ── */
.footer {
  background: var(--dark);
  padding: 60px 24px 28px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #2a2a2a;
  margin-bottom: 28px;
}

.footer-brand p {
  font-size: 13px;
  color: #666;
  line-height: 1.65;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul a {
  font-size: 13px;
  color: #777;
  transition: color .2s;
}

.footer-col ul a:hover {
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #555;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 32px;
  height: 32px;
  background: #2a2a2a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 13px;
  transition: background .2s, color .2s;
}

.footer-social a:hover {
  background: var(--orange);
  color: var(--white);
}



/* ── RESPONSIVE: TABLET (≤900px) ── */
@media (max-width: 900px) {
  nav { padding: 0 24px; }

  .hero { padding: 60px 24px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero h1 { font-size: 46px; }

  .features { padding: 70px 24px; }
  .features-grid { grid-template-columns: 1fr 1fr; }

  .screenshots { padding: 70px 24px; }
  .screen-showcase { grid-template-columns: 1fr; gap: 40px; }
  .screen-showcase.reverse { direction: ltr; }

  .norms-section { padding: 70px 24px; }
  .norms-grid { grid-template-columns: 1fr; }

  .pricing { padding: 70px 24px; }
  .pricing-grid { grid-template-columns: 1fr; }

  .cta-section { padding: 70px 24px; }

  .footer-top { grid-template-columns: 1fr 1fr; }

  nav ul { gap: 18px; }
}

/* ── RESPONSIVE: SMARTPHONE (≤600px) ── */
@media (max-width: 600px) {

  /* NAV */
  nav { padding: 0 16px; height: 56px; }
  .nav-logo { font-size: 18px; }
  .nav-logo span { font-size: 14px; }
  nav ul { display: none; }

  /* HERO */
  .hero { padding: 48px 16px 56px; min-height: auto; }
  .hero h1 { font-size: 34px; line-height: 1.1; }
  .hero p { font-size: 15px; margin-bottom: 28px; }
  .hero-badge { font-size: 10px; padding: 5px 10px; margin-bottom: 18px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; margin-bottom: 28px; }
  .stat-item .stat-num { font-size: 24px; }
  .stat-item .stat-label { font-size: 11px; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .btn-primary,
  .btn-secondary { width: 100%; justify-content: center; text-align: center; padding: 14px 20px; font-size: 14px; }

  /* NORMS BAR */
  .norms-bar { padding: 14px 16px; gap: 10px 20px; justify-content: flex-start; }
  .norms-bar span { font-size: 12px; }
  .norm-sep { display: none; }

  /* FEATURES */
  .features { padding: 56px 16px; }
  .features-header { margin-bottom: 40px; }
  .section-title { font-size: 30px; }
  .section-sub { font-size: 14px; }
  .features-grid { grid-template-columns: 1fr; gap: 16px; }
  .feature-card { padding: 24px 20px; }
  .feature-card h3 { font-size: 15px; }

  /* SCREENSHOTS */
  .screenshots { padding: 56px 16px; }
  .screenshots-header { margin-bottom: 40px; }
  .screen-showcase { grid-template-columns: 1fr; gap: 32px; margin-bottom: 56px; }
  .screen-showcase.reverse { direction: ltr; }
  .screen-info h3 { font-size: 26px; }
  .screen-info p { font-size: 14px; }
  .screen-bullets li { font-size: 13px; }
  .screen-visual { justify-content: center; }
  .real-phone img { width: 230px; border-radius: 30px; }
  .hero-phone img { width: 250px; }

  /* NORMS SECTION */
  .norms-section { padding: 56px 16px; }
  .norms-header { margin-bottom: 36px; }
  .norms-grid { grid-template-columns: 1fr; gap: 16px; }
  .norm-card { padding: 22px 18px; }
  .norm-id { font-size: 17px; }
  .norms-section h3[style] { font-size: 16px !important; }

  /* PRICING */
  .pricing { padding: 56px 16px; }
  .pricing-header { margin-bottom: 40px; }
  .pricing-grid { grid-template-columns: 1fr; gap: 24px; }
  .plan-card { padding: 28px 20px; }
  .plan-price { font-size: 38px; }
  .plan-btn { font-size: 14px; padding: 13px; }

  /* CTA */
  .cta-section { padding: 56px 16px; }
  .cta-section h2 { font-size: 34px; }
  .cta-section p { font-size: 15px; }
  .cta-btns { flex-direction: column; align-items: center; gap: 12px; }
  .store-btn { width: 100%; justify-content: center; }

  /* FOOTER */
  footer { padding: 40px 16px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; padding-bottom: 28px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
}