/* CC Trust Service – Coming Soon
   Farben laut Logo-Richtlinien: Blau #3490D6 (Reinigung), Orange #E8791A (Umzug) */
:root {
  --bg: #121A21;
  --panel: #0C1217;
  --line: #243140;
  --line-strong: #2E3B48;
  --text: #FFFFFF;
  --text-soft: #D5DBE3;
  --text-muted: #B7C0CC;
  --text-faint: #9AA5B4;
  --blue: #3490D6;
  --orange: #E8791A;
  --pad: clamp(20px, 6.6vw, 96px);
  --font: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-weight: 500;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--orange); }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 6px; }

svg { width: 20px; height: 20px; flex-shrink: 0; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* Farbstreifen oben */
.stripe { display: flex; height: 6px; flex-shrink: 0; }
.stripe span { flex: 1; background: var(--blue); }
.stripe span + span { background: var(--orange); }

.page {
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-top: env(safe-area-inset-top, 0px);
}

/* Kopfzeile */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: clamp(20px, 2.5vw, 36px) var(--pad) 0;
}
.logo { display: block; width: clamp(200px, 22vw, 320px); height: auto; }

.call {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 22px;
  border: 1.5px solid var(--line-strong);
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
}
.call svg { color: var(--orange); width: 18px; height: 18px; }

/* Hauptbereich */
.main {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: center;
  gap: clamp(40px, 6.6vw, 96px);
  padding: clamp(40px, 5vw, 64px) var(--pad);
}

.intro { display: flex; flex-direction: column; gap: 28px; min-width: 0; }

.status {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
}
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); }

h1 {
  margin: 0;
  font-size: clamp(34px, 4.45vw, 64px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.lead { margin: 0; max-width: 600px; font-size: clamp(16px, 1.35vw, 19px); line-height: 1.63; color: var(--text-muted); }

/* Formular */
.notify { display: flex; flex-direction: column; gap: 10px; max-width: 600px; }
.notify label { font-size: 14px; font-weight: 600; color: var(--text-muted); }
.notify-row { display: flex; gap: 12px; }
.notify input {
  flex: 1;
  min-width: 0;
  min-height: 56px;
  padding: 0 20px;
  border: 1.5px solid var(--line-strong);
  border-radius: 12px;
  background: var(--panel);
  color: var(--text);
  font: 500 16px/1 var(--font);
}
.notify input::placeholder { color: #7D8A9A; }
.notify input[aria-invalid="true"] { border-color: var(--orange); }
.notify button {
  min-height: 56px;
  padding: 0 28px;
  border: 0;
  border-radius: 12px;
  background: var(--orange);
  color: var(--bg);
  font: 800 16px/1 var(--font);
  cursor: pointer;
}
.notify button:hover { background: #F28A2E; }
.notify-error { margin: 0; font-size: 14px; color: #F4A261; }
.notify-done {
  margin: 0;
  max-width: 600px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 14px 20px;
  border: 1.5px solid var(--blue);
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
}
.notify-done svg { color: var(--blue); stroke-width: 2.4; }
[hidden] { display: none !important; }

/* Kontakt */
.contact { list-style: none; margin: 0; padding: 8px 0 0; display: flex; flex-wrap: wrap; gap: 8px 40px; }
.contact a { display: inline-flex; align-items: center; gap: 12px; min-height: 44px; font-size: 17px; font-weight: 600; }
.i-blue { color: var(--blue); }
.i-orange { color: var(--orange); }

/* Leistungen */
.services { display: flex; flex-direction: column; gap: 24px; min-width: 0; }
.service {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px 36px;
  border-radius: 20px;
  background: var(--panel);
  border: 1.5px solid var(--line);
}
.service-head { display: flex; align-items: center; gap: 14px; }
.badge { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.badge svg { width: 22px; height: 22px; }
.badge-blue { background: var(--blue); color: #fff; }
.badge-orange { background: var(--orange); color: var(--bg); }
.service h2 { margin: 0; font-size: 22px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; }
.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 20px;
  font-size: 15px;
  line-height: 22px;
  color: var(--text-soft);
}

/* Fußzeile */
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px 24px;
  flex-wrap: wrap;
  padding: 22px var(--pad);
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--text-faint);
}
.footer p { margin: 0; }
.footer nav { display: flex; gap: 28px; }
.footer a { display: inline-flex; align-items: center; min-height: 44px; }

/* Tablet: Spalten untereinander */
@media (max-width: 1024px) {
  .main { grid-template-columns: minmax(0, 1fr); align-items: start; }
  .services { flex-direction: row; }
  .service { flex: 1; }
  .service-list { grid-template-columns: minmax(0, 1fr); }
}

/* Smartphone */
@media (max-width: 680px) {
  .call { width: 48px; padding: 0; justify-content: center; }
  .call-number { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
  .intro { gap: 22px; }
  .notify-row { flex-direction: column; gap: 10px; }
  .contact { flex-direction: column; gap: 4px; }
  .services { flex-direction: column; gap: 16px; }
  .service { padding: 24px 22px; border-radius: 18px; }
  .service h2 { font-size: 18px; letter-spacing: 1px; }
  .footer { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
