:root {
  --navy: #0f2a43;
  --navy-dark: #071827;
  --green: #20b486;
  --green-dark: #15956e;
  --text: #1f2937;
  --muted: #667085;
  --bg: #ffffff;
  --soft: #f5f8fb;
  --border: #e5eaf0;
  --shadow: 0 24px 70px rgba(15, 42, 67, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid #e5edf5;
}

.nav-wrapper {
  min-height: 88px;
  display: grid;
  grid-template-columns: 300px 1fr 310px;
  align-items: center;
  gap: 28px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 5px;
  min-width: 0;
  flex-shrink: 0;
}

.logo-img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  transform: scale(1.45);
  transform-origin: center;
  margin-right: 8px;
}

.logo strong {
  display: block;
  color: var(--navy);
  font-size: 20px;
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.logo small {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-top: 6px;
}
.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  background: #f3f7fb;
  border: 1px solid #e4edf6;
  border-radius: 16px;
  min-width: 0;
}

.main-nav a {
  padding: 10px 12px;
  border-radius: 12px;
  color: #51627a;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  transition: 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: #15956e;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(32, 180, 134, 0.12);
}
.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  margin-left: auto;
}

.phone-btn {
  min-height: 44px;
  padding: 0 14px;
  border-radius: 13px;
  border: 1px solid rgba(32, 180, 134, 0.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  background: #ffffff;
  white-space: nowrap;
}

.offer-btn {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 13px;
  background: var(--green);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 12px 26px rgba(32, 180, 134, 0.22);
}
@media (max-width: 1280px) {
  .nav-wrapper {
    grid-template-columns: 270px 1fr 280px;
    gap: 12px;
  }

  .logo-img {
    width: 52px;
    height: 52px;
    transform: scale(1.3);
    margin-right: 6px;
  }

  .logo strong {
    font-size: 18px;
  }

  .logo small {
    font-size: 12px;
  }

  .main-nav a {
    padding: 9px 10px;
    font-size: 13px;
  }

  .phone-btn {
    padding: 0 12px;
    font-size: 13px;
  }

  .offer-btn {
    padding: 0 14px;
    font-size: 13px;
  }
}
.offer-btn:hover {
  background: var(--green-dark);
}

.offer-btn:hover {
  background: #0b5f9d;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
  border-radius: 99px;
}

/* Hero */

.hero {
  padding: 90px 0 80px;
  background:
    radial-gradient(circle at top left, rgba(32, 180, 134, 0.14), transparent 35%),
    linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-dark);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

h1,
h2,
h3 {
  color: var(--navy-dark);
  line-height: 1.1;
}

h1 {
  font-size: clamp(44px, 6vw, 74px);
  letter-spacing: -0.05em;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.hero-text {
  font-size: 20px;
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.2s ease;
  border: 0;
  cursor: pointer;
}

.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 16px 34px rgba(32, 180, 134, 0.3);
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background: #fff;
  color: var(--navy);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-list span {
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
}

.hero-card {
  position: relative;
}

.hero-image-placeholder {
  min-height: 520px;
  border-radius: 34px;
  background-image:
    linear-gradient(rgba(15, 42, 67, 0.15), rgba(15, 42, 67, 0.25)),
    url("images/berlin-hero.jpg");
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-image-placeholder span {
  font-size: 42px;
  color: #fff;
  font-weight: 900;
  letter-spacing: -0.04em;
}
.hero {
  padding: 110px 0 90px;
  min-height: 760px;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.9) 32%,
      rgba(255, 255, 255, 0.55) 55%,
      rgba(255, 255, 255, 0.08) 100%
    ),
    url("images/berlin-hero.png");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.stats-card {
  position: absolute;
  left: -30px;
  bottom: 34px;
  width: 260px;
  padding: 22px;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.stats-card strong {
  display: block;
  color: var(--green-dark);
  font-size: 28px;
  line-height: 1;
}

.stats-card span {
  color: var(--muted);
  font-size: 14px;
}

/* Sections */

.section {
  padding: 90px 0;
}

.section-soft {
  background: var(--soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading p {
  color: var(--muted);
  font-size: 18px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 40px rgba(15, 42, 67, 0.06);
  transition: 0.2s ease;
}
.service-card {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  isolation: isolate;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.96) 45%,
    rgba(255, 255, 255, 0.72) 70%,
    rgba(255, 255, 255, 0.28) 100%
  );
  z-index: -1;
}

.service-wohnung {
  background-image: url("images/wohnung.png");
}
.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: rgba(32, 180, 134, 0.12);
  color: var(--green-dark);
  display: grid;
  place-items: center;
  font-size: 26px;
  margin-bottom: 22px;
}
.service-fenster {
  background-image: url("images/fensterreinigung.png");
  background-position: center right;
}
.service-umzug {
  background-image: url("images/umzug.png");
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
}

.service-treppenhaus {
  background-image: url("images/treppen.png");
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
}
.service-grund {
  background-image: url("images/grund.png");
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
}

.service-buero {
  background-image: url("images/buero.png");
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
}
.service-card h3 {
  margin-bottom: 12px;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(32, 180, 134, 0.35);
}

.service-card p {
  color: var(--muted);
}

/* About */

.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.split p {
  color: var(--muted);
  font-size: 18px;
}

.feature-list {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.feature-list span {
  padding: 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--border);
  font-weight: 800;
  color: var(--navy);
}

/* Process */

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.process-card {
  padding: 30px;
  border-radius: var(--radius);
  background: var(--navy);
  color: #fff;
}

.process-card span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--green);
  font-size: 18px;
  font-weight: 900;
}

.process-card h3 {
  color: #fff;
}

.process-card p {
  color: rgba(255, 255, 255, 0.75);
}

/* Contact */

.contact-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: start;
}

.contact-info {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}

.contact-info p {
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
}

.contact-form {
  padding: 34px;
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-weight: 800;
  color: var(--navy);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
  background: #fff;
  outline: none;
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(32, 180, 134, 0.13);
}

/* Footer */

.site-footer {
  background: var(--navy-dark);
  color: #fff;
  padding: 34px 0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.65);
  margin-top: 6px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.8);
  margin-left: 18px;
}

.site-footer a:hover {
  color: #fff;
}

/* Mobile */

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 82px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 14px;
    border-radius: 12px;
  }

  .nav-cta {
    text-align: center;
    margin-top: 8px;
  }

  .hero-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 60px 0;
  }

  .hero-image-placeholder {
    min-height: 340px;
  }

  .stats-card {
    position: static;
    width: 100%;
    margin-top: 18px;
  }

  .service-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer a {
    margin-left: 0;
    margin-right: 18px;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .logo strong {
    font-size: 14px;
  }

  .logo small {
    font-size: 12px;
  }

  h1 {
    font-size: 42px;
  }

  .hero-text {
    font-size: 17px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .contact-form {
    padding: 22px;
  }
}
.hero-card,
.hero-image-placeholder {
  display: none !important;
}
.legal-page {
  padding: 70px 0;
}

.legal-page .container {
  max-width: 820px;
}

.legal-page h1 {
  font-size: 42px;
  margin-bottom: 28px;
}

.legal-page h2 {
  font-size: 26px;
  margin-top: 28px;
  margin-bottom: 12px;
}

.legal-page p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 14px;
}

.legal-page a {
  color: var(--green-dark);
  font-weight: 700;
}
.logo-img {
  width: 58px !important;
  height: 58px !important;
  object-fit: contain !important;
  transform: scale(1.9) !important;
  transform-origin: center !important;
  margin-right: 18px !important;
}

/* Mobile Header komplett getrennt */

.mobile-header {
  display: none;
}

@media (max-width: 900px) {
  .desktop-header {
    display: none !important;
  }

  .mobile-header {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }

  .mobile-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
  }

  .mobile-logo-img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
  }

  .mobile-logo strong {
    display: block;
    color: var(--navy);
    font-size: 15px;
    line-height: 1.05;
    font-weight: 900;
  }

  .mobile-logo small {
    display: block;
    color: var(--muted);
    font-size: 12px;
    margin-top: 4px;
  }

  .mobile-menu-toggle {
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    cursor: pointer;
    flex-shrink: 0;
  }

  .mobile-menu-toggle span {
    width: 19px;
    height: 2px;
    display: block;
    background: var(--navy);
    border-radius: 999px;
    margin: 0;
  }

  .mobile-nav {
    position: absolute;
    top: 78px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 14px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow);
    z-index: 999;
  }

  .mobile-nav.is-open {
    display: flex;
  }

  .mobile-nav a {
    padding: 14px 16px;
    border-radius: 14px;
    color: var(--navy);
    font-size: 15px;
    font-weight: 800;
    background: #f7fafc;
  }

  .mobile-nav a:hover {
    background: #eef5f3;
  }

  .mobile-whatsapp {
    background: rgba(32, 180, 134, 0.12) !important;
    color: var(--green-dark) !important;
  }

  .mobile-offer {
    background: var(--green) !important;
    color: #ffffff !important;
    text-align: center;
  }

  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }
}

@media (max-width: 900px) {
  .mobile-header {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }

  .mobile-logo {
    position: static;
    transform: none;
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: left;
    max-width: 250px;
  }

  .mobile-logo-img {
    width: 46px;
    height: 46px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
  }

  .mobile-logo strong {
    display: block;
    color: var(--navy);
    font-size: 16px;
    line-height: 1.05;
    font-weight: 900;
  }

  .mobile-logo small {
    display: block;
    color: var(--muted);
    font-size: 12px;
    margin-top: 4px;
  }

  .mobile-menu-toggle {
    position: static;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    cursor: pointer;
    flex-shrink: 0;
  }

  .mobile-menu-toggle span {
    width: 19px;
    height: 2px;
    display: block;
    background: var(--navy);
    border-radius: 999px;
    margin: 0;
  }

  .mobile-nav {
    top: 82px;
  }
}