* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: #111827;
  background-color: #ffffff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
}

.container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

/* =========================
   HEADER
========================= */

.header {
  padding: 20px 0;
  border-bottom: 1px solid #f3f4f6;
}

.logo img {
  height: 38px;
  width: auto;
}

/* =========================
   HERO
========================= */

.hero {
  padding: 64px 0 80px;
  background: linear-gradient(160deg, #fff7f3 0%, #ffffff 55%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
}

.hero-content {
  max-width: 580px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f97b39;
  background: #fff3ec;
  border: 1px solid #fdd5bc;
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(38px, 4.5vw, 58px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin-bottom: 20px;
}

.hero-text {
  font-size: 18px;
  color: #374151;
  margin-bottom: 36px;
  line-height: 1.65;
}

.hero-image img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
}

/* =========================
   BUTTONS
========================= */

.button,
.btn-light,
.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  background: linear-gradient(135deg, #f97b39 0%, #ff9158 100%);
  color: #ffffff !important;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(249, 123, 57, 0.35);
}

.button:hover,
.btn-light:hover,
.btn-outline-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249, 123, 57, 0.45);
}

/* =========================
   CALCULATOR
========================= */

.calculator-section {
  padding: 72px 0 80px;
  background: #f8fafc;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.calculator-section .container > p,
.ur-intro {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 32px;
}

#umzug-rechner {
  font-family: 'Inter', sans-serif;
  color: #1f2937;
}

#umzug-rechner .ur-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  padding: 40px;
  max-width: 100%;
}

#umzug-rechner .ur-sub {
  margin: 0 0 28px;
  color: #1f2937;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55;
}

#umzug-rechner .ur-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

#umzug-rechner .ur-field {
  display: flex;
  flex-direction: column;
}

#umzug-rechner .ur-field-full {
  grid-column: 1 / -1;
}

#umzug-rechner label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #374151;
  letter-spacing: 0.01em;
}

#umzug-rechner input,
#umzug-rechner select {
  width: 100%;
  min-height: 46px;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #111827;
  box-sizing: border-box;
  transition: border-color 0.15s ease;
  appearance: auto;
}

#umzug-rechner input:focus,
#umzug-rechner select:focus {
  outline: none;
  border-color: #f97b39;
  box-shadow: 0 0 0 3px rgba(249, 123, 57, 0.12);
}

#umzug-rechner .ur-result {
  margin-top: 32px;
  background: linear-gradient(135deg, #fff7f3 0%, #fff3ec 100%);
  border-radius: 16px;
  padding: 28px;
  border: 1.5px solid #fdd5bc;
}

#umzug-rechner .ur-result-top {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 24px;
}

#umzug-rechner .ur-result-label {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

#umzug-rechner .ur-price {
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

#umzug-rechner .ur-note {
  font-size: 14px;
  color: #0f172a;
  line-height: 1.55;
  max-width: 360px;
}

#umzug-rechner .ur-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #f97b39 0%, #ff9158 100%);
  color: #fff;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 4px 14px rgba(249, 123, 57, 0.35);
}

#umzug-rechner .ur-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249, 123, 57, 0.45);
}

/* =========================
   PREISE ACCORDION
========================= */

.preise-section {
  padding: 0 0 80px;
}

.preise-wrap {
  border-top: 1.5px solid #e5e7eb;
  border-bottom: 1.5px solid #e5e7eb;
}

.preise-accordion {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 28px 0;
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  cursor: pointer;
  text-align: left;
  letter-spacing: -0.01em;
  transition: color 0.15s ease;
}

.preise-accordion:hover {
  color: #f97b39;
}

.preise-chevron-wrap {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s ease, transform 0.25s ease;
}

.preise-accordion:hover .preise-chevron-wrap {
  background: #fff3ec;
}

.preise-chevron {
  transition: transform 0.25s ease;
  color: #6b7280;
}

.preise-accordion[aria-expanded="true"] .preise-chevron {
  transform: rotate(180deg);
}

.preise-accordion[aria-expanded="true"] .preise-chevron-wrap {
  background: #fff3ec;
}

.preise-accordion[aria-expanded="true"] .preise-chevron {
  color: #f97b39;
}

.preise-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.preise-accordion[aria-expanded="true"] + .preise-body {
  max-height: 600px;
}

.preise-list {
  padding: 8px 0 32px;
  max-width: 560px;
}

.preise-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-radius: 10px;
  font-size: 16px;
  transition: background 0.12s ease;
}

.preise-row:hover {
  background: #f8fafc;
}

.preise-label {
  color: #1f2937;
}

.preise-price {
  font-weight: 700;
  color: #0f172a;
  white-space: nowrap;
  margin-left: 24px;
}

.preise-footnote {
  margin-top: 8px;
  padding: 0 20px;
  font-size: 13px;
  color: #6b7280;
}

/* =========================
   BOTTOM CTA
========================= */

.bottom-cta {
  padding: 60px 0 60px;
}

.bottom-cta .container {
  display: block;
}

.bottom-cta__inner {
  background: linear-gradient(135deg, #1e9bff 0%, #36a7ff 60%, #5ab8ff 100%);
  border-radius: 28px;
  overflow: visible;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  min-height: 440px;
  box-shadow: 0 24px 64px rgba(54, 167, 255, 0.25);
}

.bottom-cta__content {
  padding: 56px;
  color: #ffffff;
}

.bottom-cta__title {
  margin: 0 0 20px;
  font-size: clamp(2rem, 3.8vw, 4rem);
  line-height: 1.05;
  font-weight: 300;
  letter-spacing: -0.02em;
}

.bottom-cta__title strong {
  font-weight: 800;
}

.bottom-cta__text {
  max-width: 480px;
  margin: 0 0 32px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.96);
}

.bottom-cta__buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.bottom-cta__image {
  position: relative;
  height: 100%;
  min-height: 440px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 18px;
}

.bottom-cta__image img {
  position: absolute;
  bottom: 0;
  right: 18px;
  display: block;
  width: auto;
  height: calc(100% + 60px);
  max-height: none;
  object-fit: contain;
}

/* =========================
   BREAKPOINTS
========================= */

@media (max-width: 1100px) {
  .bottom-cta__inner {
    grid-template-columns: 1fr;
  }

  .bottom-cta__content {
    padding: 42px 36px 24px;
  }

  .bottom-cta__image {
    min-height: 320px;
    padding: 0 20px;
  }

  .bottom-cta__image img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: calc(100% + 40px);
    width: auto;
  }
}

@media (max-width: 700px) {
  .hero {
    padding: 40px 0 56px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-content {
    display: contents;
  }

  .eyebrow       { order: 1; }
  .hero h1       { order: 2; }
  .hero-image    { order: 3; }
  .hero-text     { order: 4; margin-bottom: 0; }
  .hero .button  { order: 5; }

  #umzug-rechner .ur-card {
    padding: 24px 20px;
  }

  #umzug-rechner .ur-result-top {
    flex-direction: column;
    gap: 12px;
  }

  #umzug-rechner .ur-price {
    font-size: 40px;
  }

  .bottom-cta {
    padding: 28px 0 40px;
  }

  .bottom-cta__inner {
    border-radius: 22px;
    min-height: auto;
  }

  .bottom-cta__content {
    padding: 32px 24px 20px;
  }

  .bottom-cta__title {
    font-size: 2rem;
  }

  .bottom-cta__buttons {
    flex-direction: column;
  }

  .bottom-cta__buttons a {
    width: 100%;
  }

  .bottom-cta__image {
    min-height: 240px;
  }

  .bottom-cta__image img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: calc(100% + 20px);
    width: auto;
  }
}
