/* UmzugsMeister Berlin — sections.css (BEM) */

/* Stats strip */
.stats {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 48px 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.stats__item { text-align: left; }
.stats__value {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  color: var(--color-terracotta);
  line-height: 1.05;
  margin-bottom: 6px;
}
.stats__label {
  font-size: 14px;
  color: rgba(250, 247, 242, 0.8);
  line-height: 1.4;
}
@media (min-width: 768px) {
  .stats__grid { grid-template-columns: repeat(4, 1fr); }
}

/* Services */
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.service-card {
  background: var(--color-white);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.service-card__icon {
  width: 48px; height: 48px;
  background: rgba(200, 90, 58, 0.10);
  color: var(--color-terracotta);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
}
.service-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-navy);
  margin: 0 0 12px;
}
.service-card__desc {
  color: var(--color-muted);
  margin: 0 0 20px;
  flex: 1;
}
.service-card__price {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-terracotta);
  margin-bottom: 16px;
}
.service-card__link {
  color: var(--color-navy);
  font-weight: 600;
  font-size: 15px;
  border-bottom: 2px solid var(--color-terracotta);
  padding-bottom: 2px;
  display: inline-block;
  text-decoration: none;
  align-self: flex-start;
}
.service-card__link:hover { color: var(--color-terracotta); text-decoration: none; }

@media (min-width: 768px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}
@media (min-width: 1024px) {
  .services__grid { grid-template-columns: repeat(3, 1fr); }
}

/* Process / How */
.process__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  list-style: none;
  padding: 0;
  counter-reset: step;
}
.process__item {
  padding-left: 68px;
  position: relative;
  counter-increment: step;
}
.process__item::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0; top: -2px;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  color: var(--color-terracotta);
  line-height: 1;
}
.process__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-navy);
  margin: 0 0 8px;
}
.process__desc {
  color: var(--color-muted);
  margin: 0;
}
@media (min-width: 900px) {
  .process__list { grid-template-columns: repeat(2, 1fr); gap: 40px 48px; }
}

/* Pricing table */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.pricing-table th,
.pricing-table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  font-size: 15px;
}
.pricing-table th {
  background: var(--color-navy);
  color: var(--color-white);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table td:last-child {
  font-weight: 600;
  color: var(--color-terracotta);
  white-space: nowrap;
}
@media (max-width: 600px) {
  .pricing-table th, .pricing-table td { padding: 12px 14px; font-size: 14px; }
}

/* Team */
.team__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.team-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.team-card__photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}
.team-card__body {
  padding: 20px 24px 24px;
}
.team-card__name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-navy);
  margin: 0 0 4px;
}
.team-card__role {
  color: var(--color-terracotta);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.team-card__bio {
  color: var(--color-muted);
  font-size: 15px;
  margin: 0;
}
@media (min-width: 600px) { .team__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .team__grid { grid-template-columns: repeat(4, 1fr); } }

/* FAQ */
.faq {
  max-width: 880px;
}
.faq__item {
  border-bottom: 1px solid var(--color-border);
}
.faq__trigger {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 22px 48px 22px 0;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  color: var(--color-navy);
  cursor: pointer;
  position: relative;
  min-height: 48px;
  line-height: 1.4;
}
.faq__trigger::after {
  content: '+';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  font-weight: 400;
  color: var(--color-terracotta);
  transition: transform var(--transition);
  line-height: 1;
}
.faq__item--open .faq__trigger::after {
  content: '\2212';
  transform: translateY(-50%);
}
.faq__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
}
.faq__item--open .faq__panel { max-height: 800px; }
.faq__panel-inner {
  padding: 0 0 24px;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.6;
}
.faq__panel-inner p { margin: 0 0 12px; }
.faq__panel-inner p:last-child { margin: 0; }

/* Lead form block */
.lead {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
  color: var(--color-white);
  padding: 72px 0;
}
.lead__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.lead__title {
  color: var(--color-white);
  margin: 0 0 16px;
}
.lead__text {
  color: rgba(250, 247, 242, 0.85);
  margin: 0 0 20px;
  font-size: 17px;
}
.lead__contacts {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
}
.lead__contacts li { margin-bottom: 10px; }
.lead__contacts a { color: var(--color-white); font-weight: 600; }
.lead__contacts a:hover { color: var(--color-terracotta); text-decoration: none; }

.form {
  background: var(--color-white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  color: var(--color-text);
}
.form__title {
  font-size: 22px;
  font-family: var(--font-display);
  color: var(--color-navy);
  margin: 0 0 20px;
}
.form__field { margin-bottom: 16px; }
.form__label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 6px;
}
.form__input {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text);
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition);
}
.form__input:focus {
  outline: none;
  border-color: var(--color-terracotta);
  background: var(--color-white);
}
.form__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--color-muted);
  margin-bottom: 20px;
  line-height: 1.45;
}
.form__consent input {
  margin-top: 3px;
  width: 18px; height: 18px;
  accent-color: var(--color-terracotta);
  flex-shrink: 0;
}
.form__submit { width: 100%; }
.form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}
.form__message {
  margin-top: 16px;
  padding: 12px;
  border-radius: var(--radius-md);
  font-size: 14px;
  display: none;
}
.form__message--error {
  display: block;
  background: #fde8e3;
  color: #a8472c;
}
.form__message--ok {
  display: block;
  background: #e4f3ea;
  color: #2f7d50;
}

@media (min-width: 900px) {
  .lead__grid { grid-template-columns: 1fr 1fr; gap: 64px; }
}

/* Trust / why-us */
.why__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.why__item {
  background: var(--color-white);
  padding: 28px;
  border-left: 4px solid var(--color-terracotta);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  box-shadow: var(--shadow-sm);
}
.why__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-navy);
  margin: 0 0 8px;
}
.why__text {
  color: var(--color-muted);
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}
@media (min-width: 700px) { .why__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .why__grid { grid-template-columns: repeat(3, 1fr); } }

/* Legal content */
.legal-content { max-width: 820px; }
.legal-content h2 {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 12px;
  color: var(--color-navy);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-size: 18px;
  margin-top: 24px;
  margin-bottom: 10px;
}
.legal-content p, .legal-content li {
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.65;
}
.legal-content ul { padding-left: 22px; }
.legal-content .meta { color: var(--color-muted); font-size: 14px; margin-bottom: 24px; }

/* Contacts grid */
.contacts__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 48px;
}
.contact-card {
  background: var(--color-white);
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}
.contact-card__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-terracotta);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.contact-card__value {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--color-navy);
  font-weight: 700;
  line-height: 1.3;
}
.contact-card__value a { color: var(--color-navy); }
.contact-card__value a:hover { color: var(--color-terracotta); text-decoration: none; }
.contact-card__note { color: var(--color-muted); font-size: 14px; margin-top: 6px; }

@media (min-width: 700px) { .contacts__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .contacts__grid { grid-template-columns: repeat(4, 1fr); } }

/* 404 */
.error-page {
  text-align: center;
  padding: 120px 24px;
}
.error-page__code {
  font-family: var(--font-display);
  font-size: clamp(80px, 15vw, 160px);
  color: var(--color-terracotta);
  line-height: 1;
  margin: 0 0 16px;
}
.error-page__title { margin-bottom: 16px; }
.error-page__text { color: var(--color-muted); margin-bottom: 28px; }

/* Thanks page */
.thanks-card {
  max-width: 680px;
  margin: 0 auto;
  background: var(--color-white);
  padding: 56px 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.thanks-card__icon {
  width: 72px; height: 72px;
  margin: 0 auto 24px;
  background: var(--color-success);
  border-radius: 50%;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}
.thanks-next {
  margin-top: 32px;
  padding: 24px;
  background: var(--color-cream);
  border-radius: var(--radius-md);
  text-align: left;
}
.thanks-next h3 { margin: 0 0 12px; font-size: 18px; }
.thanks-next ul { padding-left: 22px; margin: 0; }
.thanks-next li { color: var(--color-text); margin-bottom: 8px; }
