/* ============================================================
   SUBPAGE: BESTELLEN — /bestellen.html
   ============================================================ */

/* ── Shared Section Wrapper ── */
.order-section {
  padding-block: clamp(72px, 10vw, 104px);
}

.order-section--alt {
  background-color: var(--background-secondary);
}

.order-inner {
  max-width: var(--container-max-width);
  margin-inline: auto;
  padding-inline: var(--container-padding-x);
}

.order-inner--narrow {
  max-width: 860px;
  margin-inline: auto;
  padding-inline: var(--container-padding-x);
}

/* ── Shared Eyebrow ── */
.order-eyebrow {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin-bottom: 20px;
}

/* ── Shared Section Headline ── */
.order-headline {
  font-size: clamp(1.875rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 48px;
}

/* ── Shared Section Sub ── */
.order-section-sub {
  font-size: clamp(0.9375rem, 1.3vw, 1.0625rem);
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 600px;
  margin-top: -28px;
  margin-bottom: 56px;
}

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

.order-hero {
  background-color: var(--background-primary);
  padding-top: clamp(100px, 14vw, 148px);
  padding-bottom: clamp(56px, 7vw, 80px);
  border-bottom: 1px solid var(--border-subtle);
}

.order-hero-inner {
  max-width: var(--container-max-width);
  margin-inline: auto;
  padding-inline: var(--container-padding-x);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(32px, 5vw, 64px);
  align-items: end;
}

.order-hero-text {}

.order-hero-headline {
  font-size: clamp(2.25rem, 5.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 20px;
  max-width: 620px;
}

.order-hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 0 32px;
}

.order-hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.order-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.order-hero-badge svg {
  color: var(--accent-primary);
  flex-shrink: 0;
}

/* ── Right: Price anchor ── */
.order-hero-price-anchor {
  flex-shrink: 0;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 28px 32px;
  text-align: center;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  min-width: 220px;
}

.order-hero-price-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-primary);
  display: block;
  margin-bottom: 8px;
}

.order-hero-price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}

.order-hero-price-note {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  display: block;
  margin-bottom: 20px;
}

.order-hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 13px 24px;
  background: var(--accent-primary);
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 700;
  font-family: inherit;
  border-radius: 50px;
  text-decoration: none;
  transition: opacity 180ms ease, transform 140ms ease;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.order-hero-cta:hover {
  opacity: 0.87;
  transform: scale(1.02);
}

/* ============================================================
   CONTENTS LIST — 2-column on Desktop
   ============================================================ */

.order-contents-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
}

.order-contents-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.order-contents-item:nth-child(-n+2) {
  border-top: 1px solid var(--border-subtle);
}

.order-item-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(147, 39, 195, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.order-item-check svg {
  width: 11px;
  height: 11px;
  color: var(--accent-primary);
}

.order-item-body {
  flex: 1;
  min-width: 0;
}

.order-item-title {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.35;
  margin-bottom: 3px;
}

.order-item-desc {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}

/* ── Last item: full-width if odd ── */
.order-contents-item--full {
  grid-column: 1 / -1;
  border-top: none;
}

/* ============================================================
   TIMELINE — Large numbered cards
   ============================================================ */

.order-timeline-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.order-timeline-sticky {
  position: sticky;
  top: 88px;
}

.order-timeline-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent-primary);
  background: rgba(147, 39, 195, 0.07);
  border: 1px solid rgba(147, 39, 195, 0.18);
  border-radius: 40px;
  padding: 6px 14px;
  margin-bottom: 24px;
  white-space: nowrap;
}

.order-timeline-title {
  font-size: clamp(1.625rem, 2.5vw, 2.125rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.order-timeline-sub {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

/* ── Steps ── */
.order-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.order-step {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0 20px;
  align-items: start;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.order-step:hover {
  border-color: rgba(147, 39, 195, 0.25);
  box-shadow: 0 4px 16px rgba(147, 39, 195, 0.07);
}

.order-step-num {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--accent-primary);
  opacity: 0.25;
  grid-row: 1 / 3;
  padding-top: 2px;
}

.order-step-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.order-step-desc {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */

.order-trust-strip {
  padding-block: clamp(36px, 4vw, 48px);
  background: var(--background-primary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.order-trust-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: var(--container-max-width);
  margin-inline: auto;
  padding-inline: var(--container-padding-x);
}

.order-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 24px;
  border-right: 1px solid var(--border-subtle);
}

.order-trust-item:first-child {
  padding-left: 0;
}

.order-trust-item:last-child {
  border-right: none;
}

.order-trust-icon {
  width: 20px;
  height: 20px;
  color: var(--accent-primary);
  flex-shrink: 0;
}

.order-trust-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.35;
}

/* ============================================================
   PRICE BLOCK
   ============================================================ */

.order-price-section {
  padding-block: clamp(72px, 10vw, 104px);
  background-color: var(--background-secondary);
}

.order-price-card {
  max-width: 600px;
  margin-inline: auto;
  padding-inline: var(--container-padding-x);
  text-align: center;
}

.order-price-card-inner {
  background: #ffffff;
  border-radius: 24px;
  padding: clamp(48px, 6vw, 72px) clamp(36px, 5vw, 64px);
  border: 1px solid var(--border-subtle);
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.03),
    0 8px 40px rgba(0,0,0,0.09),
    0 2px 8px rgba(0,0,0,0.05);
}

.order-price-product {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-primary);
  display: block;
  margin-bottom: 24px;
}

.order-price-amount {
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 6px;
}

.order-price-sub {
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.5;
}

.order-price-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 17px 32px;
  background: var(--accent-primary);
  color: #ffffff;
  font-size: 1.0625rem;
  font-weight: 700;
  font-family: inherit;
  border-radius: 50px;
  text-decoration: none;
  transition: opacity 180ms ease, transform 140ms ease;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.order-price-cta:hover {
  opacity: 0.87;
  transform: scale(1.015);
}

.order-price-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--text-tertiary, #8A8A8A);
  margin-bottom: 28px;
}

.order-price-trust svg {
  color: var(--accent-primary);
  opacity: 0.7;
}

.order-price-items {
  padding-top: 28px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.order-price-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.order-price-item svg {
  color: var(--accent-primary);
  flex-shrink: 0;
  width: 15px;
  height: 15px;
}

/* ============================================================
   FAQ MINI
   ============================================================ */

.order-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.order-faq-item {
  border-bottom: 1px solid var(--border-subtle);
}

.order-faq-item:first-child {
  border-top: 1px solid var(--border-subtle);
}

.order-faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}

.order-faq-question-text {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}

.order-faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--text-secondary);
  transition: transform 280ms ease;
}

.order-faq-item.is-open .order-faq-icon {
  transform: rotate(45deg);
}

.order-faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 350ms ease;
}

.order-faq-item.is-open .order-faq-answer {
  max-height: 400px;
}

.order-faq-answer-inner {
  padding-bottom: 24px;
}

.order-faq-answer-body {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* ── Closing CTA after FAQ ── */
.order-closing-cta {
  margin-top: clamp(48px, 6vw, 72px);
  padding-top: clamp(40px, 5vw, 56px);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.order-closing-text {
  flex: 1;
  min-width: 0;
}

.order-closing-headline {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--text-primary);
  margin-bottom: 6px;
  line-height: 1.25;
}

.order-closing-sub {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin: 0;
}

.order-closing-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: var(--accent-primary);
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 700;
  font-family: inherit;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 180ms ease, transform 140ms ease;
  letter-spacing: -0.01em;
}

.order-closing-btn:hover {
  opacity: 0.87;
  transform: scale(1.02);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .order-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .order-hero-price-anchor {
    max-width: 400px;
  }

  .order-timeline-layout {
    grid-template-columns: 280px 1fr;
  }
}

@media (max-width: 860px) {
  .order-timeline-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .order-timeline-sticky {
    position: static;
  }

  .order-contents-grid {
    grid-template-columns: 1fr;
  }

  .order-contents-item:nth-child(-n+2) {
    border-top: none;
  }

  .order-contents-item:first-child {
    border-top: 1px solid var(--border-subtle);
  }

  .order-contents-item--full {
    grid-column: 1;
  }

  .order-trust-items {
    grid-template-columns: 1fr 1fr;
    gap: 16px 0;
  }

  .order-trust-item {
    padding: 8px 16px;
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
  }

  .order-trust-item:nth-child(odd) {
    border-right: 1px solid var(--border-subtle);
    padding-left: 0;
  }

  .order-trust-item:last-child,
  .order-trust-item:nth-last-child(2) {
    border-bottom: none;
  }
}

@media (max-width: 560px) {
  .order-step {
    grid-template-columns: 40px 1fr;
    gap: 0 16px;
    padding: 20px 20px;
  }

  .order-step-num {
    font-size: 1.625rem;
  }

  .order-price-card-inner {
    padding: 36px 24px;
  }

  .order-closing-cta {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .order-closing-btn {
    width: 100%;
    justify-content: center;
  }

  .order-trust-items {
    grid-template-columns: 1fr;
  }

  .order-trust-item {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
    padding: 10px 0;
  }

  .order-trust-item:last-child {
    border-bottom: none;
  }
}
