/* =========================
   RESET & BASIS
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Inter, Arial, sans-serif;
  background: radial-gradient(circle at top, #141414 0%, #0b0b0b 65%);
  color: #f2f2f2;
  line-height: 1.6;
}

/* Browser-Fallback-Menüs killen */
menu,
menuitem {
  display: none !important;
}

/* =========================
   CONTAINER / HELFER
========================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.muted {
  color: #b5b5b5;
}

.h2 {
  font-size: clamp(26px, 3vw, 34px);
  margin-bottom: 14px;
}

.h3 {
  font-size: 20px;
  margin: 10px 0;
}

/* =========================
   TOPBAR
========================= */
.topbar {
  background: #050505;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: 14px;
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40px;
}

.topbar__left,
.topbar__right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar i {
  color: #00b3ff;
}

/* =========================
   HEADER / NAV
========================= */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,.95),
    rgba(10,10,10,.85)
  );
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand__logo {
  height: 44px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav__link {
  font-size: 15px;
  opacity: .85;
}

.nav__link:hover,
.nav__link.is-active {
  opacity: 1;
}

.nav__cta {
  background: #00b3ff;
  color: #000;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
}

/* =========================
   DROPDOWN (STABIL)
========================= */
.nav__dropdown {
  position: relative;
}

.nav__dropbtn {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav__dropmenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  background: #121212;
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 20px 40px rgba(0,0,0,.6);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .2s ease;
  z-index: 999;
}

.nav__dropdown:hover .nav__dropmenu,
.nav__dropdown:focus-within .nav__dropmenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__droplink {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
}

.nav__droplink:hover,
.nav__droplink.is-active {
  background: rgba(255,255,255,.08);
  color: #00b3ff;
}

/* =========================
   HERO
========================= */
.hero {
  padding: 90px 0 80px;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
}

.eyebrow {
  color: #00b3ff;
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.hero__title {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 18px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  margin: 26px 0;
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 12px;
}

.fact {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fact i {
  color: #00b3ff;
}

/* =========================
   BUTTONS
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
}

.btn--primary {
  background: #00b3ff;
  color: #000;
}

.btn--ghost {
  border: 1px solid rgba(255,255,255,.25);
}

/* =========================
   SECTION / SPLIT
========================= */
.section {
  padding: 80px 0;
}

.section--dark {
  background: rgba(255,255,255,.03);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.split--wide {
  grid-template-columns: 1.2fr .8fr;
}

/* =========================
   CHECKS
========================= */
.checks {
  display: grid;
  gap: 10px;
  margin: 20px 0 30px;
}

.check {
  display: flex;
  align-items: center;
  gap: 10px;
}

.check i {
  color: #00b3ff;
}

/* =========================
   PANELS
========================= */
.panel {
  background: #111;
  border-radius: 14px;
  padding: 24px;
}

.panel__row {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}

.panel__icon i {
  color: #00b3ff;
  font-size: 18px;
}

/* =========================
   GRID / CARDS
========================= */
.grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
}

.card {
  background: #111;
  border-radius: 16px;
  padding: 28px;
  transition: .2s;
}

.card:hover {
  transform: translateY(-4px);
}

.card__icon {
  font-size: 26px;
  color: #00b3ff;
  margin-bottom: 12px;
}

.card__more {
  display: inline-flex;
  gap: 6px;
  margin-top: 10px;
  font-size: 14px;
  color: #00b3ff;
}

/* =========================
   PAGEHEAD
========================= */
.pagehead {
  padding: 70px 0 50px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.pagehead__title {
  font-size: 40px;
  margin-bottom: 10px;
}

/* =========================
   CONTACT
========================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.infoItem {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.infoItem i {
  color: #00b3ff;
  font-size: 18px;
  min-width: 20px;
}

/* Formular */
.contact-card {
  background: linear-gradient(180deg,#161616,#0f0f0f);
  border-radius: 16px;
  padding: 40px;
}

.contact-card form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card input,
.contact-card select,
.contact-card textarea {
  background: #0d0d0d;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  padding: 14px 16px;
  color: #fff;
}

.contact-card textarea {
  min-height: 120px;
}

/* =========================
   FOOTER
========================= */
.footer {
  background: #050505;
  margin-top: 80px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 60px 0;
  align-items: flex-start;
}


.footer__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.footer__list i {
  color: #00b3ff;
  min-width: 18px;
}

.footer__social {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}

.footer__col--right .footer__social {
  justify-content: flex-end;
}

.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #111;
  display: grid;
  place-items: center;
  transition: background 0.2s, transform 0.2s;
}

.footer__social a:hover {
  background: #00b3ff;
  color: #000;
  transform: translateY(-2px);
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding-bottom: 20px;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
}

.footer__top > div:empty {
  display: none !important;
}

/* =========================
   OFFCANVAS HARD DISABLE (Desktop & ohne JS)
========================= */
.offcanvas,
.offcanvas__panel,
.offcanvas__backdrop {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .hero__inner,
  .split,
  .grid,
  .contact-grid,
  .footer__top {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
  }
}

/* =========================
   HEADER FIX: Desktop "Strich" weg + Text statt Logo
   -> ganz unten in style.css einfügen
========================= */

/* 1) Burger am Desktop komplett ausblenden (der "Strich") */
@media (min-width: 901px) {
  .burger,
  .burger span {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
}

/* 2) Logo-Bild ausblenden */
.header__inner > a > img.brand__logo {
  display: none !important;
}

/* 3) Stattdessen Text anzeigen */
.header__inner > a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  color: #f2f2f2;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.2px;
}

/* Der eigentliche Text */
.header__inner > a::after {
  content: "PolishUp Autopflege";
  line-height: 1;
}

/* Optional: kleiner Effekt beim Hover */
.header__inner > a:hover {
  opacity: 0.95;
}

