/* ═══════════════════════════════════════════
   Thm-mothercare-v1 Bold — Magazine/Editorial CSS
   Colors: Dark Red #7F1D1D, Yellow #EAB308, Black #0A0A0A
   Background: Light #FAFAF9
   Style: Sharp corners, left accent bars, heavy typography
   ═══════════════════════════════════════════ */

/* ── CSS Custom Properties ── */
:root {
  --mc-bold-red: #430c0c;
  --mc-bold-red-mid: #991B1B;
  --mc-bold-red-light: #FEE2E2;
  --mc-bold-yellow: #ffffff;
  --mc-bold-yellow-light: #FEF9C3;
  --mc-bold-yellow-dark: #CA8A04;
  --mc-bold-black: #00000070;
  --mc-bold-black-soft: #1C1917;
  --mc-bold-white: #FFFFFF;
  --mc-bold-light: #FAFAF9;
  --mc-bold-light-alt: #F5F5F4;
  --mc-bold-gray: #57534E;
  --mc-bold-gray-light: #A8A29E;
  --mc-bold-border: #D6D3D1;
}

/* ── Base Reset ── */
.mc-content-bold {
  box-sizing: border-box;
  font-family: 'Arial Black', 'Helvetica Neue', Arial, sans-serif;
  color: var(--mc-bold-black);
  line-height: 1.6;
  background: var(--mc-bold-light);
  letter-spacing: -0.01em;
}

.mc-content-bold *,
.mc-content-bold *::before,
.mc-content-bold *::after {
  box-sizing: border-box;
}

.mc-content-bold h1,
.mc-content-bold h2,
.mc-content-bold h3,
.mc-content-bold h4,
.mc-content-bold h5,
.mc-content-bold h6 {
  margin: 0 0 16px;
  font-weight: 900;
  line-height: 1.15;
  color: var(--mc-bold-black);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.mc-content-bold p {
  margin: 0 0 16px;
  color: var(--mc-bold-gray);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
}

.mc-content-bold a {
  color: var(--mc-bold-red);
  text-decoration: none;
  transition: color 0.15s ease;
  font-weight: 700;
}

.mc-content-bold a:hover {
  color: var(--mc-bold-yellow-dark);
}

/* ── Shared Components ── */
.mc-bold-brand {
  display: inline-flex;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-family: 'Arial Black', sans-serif;
}

.mc-bold-brand .mc-bold-first {
  color: var(--mc-bold-red);
}

.mc-bold-brand .mc-bold-second {
  color: var(--mc-bold-gray-light);
}

.mc-bold-eyebrow {
  display: inline-block;
  padding: 8px 24px;
  margin-bottom: 16px;
  background: var(--mc-bold-black);
  color: var(--mc-bold-yellow);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: 'Arial Black', sans-serif;
}

.mc-bold-divider {
  width: 80px;
  height: 4px;
  background: var(--mc-bold-yellow);
  margin: 20px 0;
}

.mc-bold-title {
  margin: 0 0 16px;
  font-size: 40px;
  font-weight: 900;
  color: var(--mc-bold-black);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  font-family: 'Arial Black', sans-serif;
}

.mc-bold-subtitle {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--mc-bold-gray);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.mc-bold-section {
  margin-bottom: 0;
  padding: 56px 48px;
  background: var(--mc-bold-white);
  border-top: 4px solid var(--mc-bold-black);
}

.mc-bold-section--alt {
  background: var(--mc-bold-light-alt);
}

.mc-bold-red {
  color: var(--mc-bold-red);
}

.mc-bold-yellow {
  color: var(--mc-bold-yellow);
}

/* ── Hero Section ── */
.mc-bold-hero {
  margin-bottom: 0;
  padding: 0;
  background: var(--mc-bold-black);
  border: none;
  position: relative;
  overflow: hidden;
}

.mc-bold-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: var(--mc-bold-red);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 0.9;
}

.mc-bold-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 320px;
}

.mc-bold-hero__content {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mc-bold-hero__title {
  margin: 0 0 20px;
  font-size: 44px;
  font-weight: 900;
  color: var(--mc-bold-white);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  font-family: 'Arial Black', sans-serif;
}

.mc-bold-hero__title span {
  color: var(--mc-bold-yellow);
}

.mc-bold-hero__intro {
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  max-width: 480px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.mc-bold-hero__intro a {
  color: var(--mc-bold-yellow);
  border-bottom: 2px solid var(--mc-bold-yellow);
  transition: all 0.15s ease;
}

.mc-bold-hero__intro a:hover {
  color: var(--mc-bold-white);
  border-color: var(--mc-bold-white);
}

.mc-bold-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.mc-bold-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: transparent;
  border: 2px solid var(--mc-bold-yellow);
  font-size: 12px;
  color: var(--mc-bold-yellow);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.15s ease;
  font-family: 'Arial Black', sans-serif;
}

.mc-bold-badge:hover {
  background: var(--mc-bold-yellow);
  color: var(--mc-bold-black);
}

.mc-bold-badge__icon {
  font-size: 16px;
}

.mc-bold-badge__text {
  font-size: 12px;
  font-weight: 900;
}

/* ── Features Section ── */
.mc-bold-features {
  margin-bottom: 0;
  padding: 56px 48px;
  background: var(--mc-bold-light-alt);
  border-top: 4px solid var(--mc-bold-yellow);
}

.mc-bold-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.mc-bold-feature-card {
  padding: 32px 28px;
  background: var(--mc-bold-white);
  border: 1px solid var(--mc-bold-border);
  border-left: 4px solid var(--mc-bold-red);
  text-align: left;
  transition: all 0.15s ease;
  position: relative;
}

.mc-bold-feature-card:hover {
  border-left-color: var(--mc-bold-yellow);
  background: var(--mc-bold-light);
}

.mc-bold-feature-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--mc-bold-red-light);
  font-size: 24px;
}

.mc-bold-feature-card__title {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 900;
  color: var(--mc-bold-black);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Arial Black', sans-serif;
}

.mc-bold-feature-card__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--mc-bold-gray);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ── Steps Section — Horizontal Timeline ── */
.mc-bold-steps {
  margin-bottom: 0;
  padding: 56px 48px;
  background: var(--mc-bold-black);
  border: none;
}

.mc-bold-steps__title {
  margin: 0 0 8px;
  font-size: 36px;
  font-weight: 900;
  color: var(--mc-bold-white);
  text-transform: uppercase;
  font-family: 'Arial Black', sans-serif;
}

.mc-bold-steps__intro {
  margin: 0 0 40px;
  font-size: 16px;
  color: var(--mc-bold-gray-light);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.mc-bold-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.mc-bold-steps__grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--mc-bold-red);
  z-index: 0;
}

.mc-bold-step-card {
  padding: 24px 20px;
  padding-top: 64px;
  background: transparent;
  border: none;
  position: relative;
  z-index: 1;
}

.mc-bold-step-card__num {
  position: absolute;
  top: 0;
  left: 20px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--mc-bold-red);
  color: var(--mc-bold-white);
  font-size: 20px;
  font-weight: 900;
  border: 3px solid var(--mc-bold-yellow);
  font-family: 'Arial Black', sans-serif;
}

.mc-bold-step-card__title {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 900;
  color: var(--mc-bold-white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Arial Black', sans-serif;
}

.mc-bold-step-card__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--mc-bold-gray-light);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.mc-bold-step-card__text a {
  color: var(--mc-bold-yellow);
  border-bottom: 1px solid var(--mc-bold-yellow);
}

/* ── FAQ Section — Accordion Style ── */
.mc-bold-faq {
  margin-bottom: 0;
  padding: 56px 48px;
  background: var(--mc-bold-white);
  border-top: 4px solid var(--mc-bold-red);
}

.mc-bold-faq__title {
  margin: 0 0 8px;
  font-size: 36px;
  font-weight: 900;
  color: var(--mc-bold-black);
  text-transform: uppercase;
  font-family: 'Arial Black', sans-serif;
}

.mc-bold-faq__intro {
  margin: 0 0 32px;
  font-size: 16px;
  color: var(--mc-bold-gray);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.mc-bold-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mc-bold-faq-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--mc-bold-light);
  border: 1px solid var(--mc-bold-border);
  border-left: 4px solid var(--mc-bold-yellow);
  transition: all 0.15s ease;
}

.mc-bold-faq-item:hover {
  border-left-color: var(--mc-bold-red);
  background: var(--mc-bold-white);
}

.mc-bold-faq-item__num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--mc-bold-black);
  color: var(--mc-bold-yellow);
  font-size: 16px;
  font-weight: 900;
  font-family: 'Arial Black', sans-serif;
}

.mc-bold-faq-item__content {
  flex: 1;
}

.mc-bold-faq-item__question {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 900;
  color: var(--mc-bold-black);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  font-family: 'Arial Black', sans-serif;
}

.mc-bold-faq-item__answer {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--mc-bold-gray);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ── Reviews Section ── */
.mc-bold-reviews {
  margin-bottom: 0;
  padding: 56px 48px;
  background: var(--mc-bold-light-alt);
  border-top: 4px solid var(--mc-bold-black);
}

.mc-bold-reviews__title {
  margin: 0 0 8px;
  font-size: 36px;
  font-weight: 900;
  color: var(--mc-bold-black);
  text-transform: uppercase;
  font-family: 'Arial Black', sans-serif;
}

.mc-bold-reviews__rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.mc-bold-reviews__stars {
  color: var(--mc-bold-yellow);
  font-size: 20px;
  letter-spacing: 2px;
}

.mc-bold-reviews__score {
  font-size: 18px;
  font-weight: 900;
  color: var(--mc-bold-black);
  font-family: 'Arial Black', sans-serif;
}

.mc-bold-reviews__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.mc-bold-review-card {
  padding: 28px;
  background: var(--mc-bold-white);
  border: 1px solid var(--mc-bold-border);
  border-top: 3px solid var(--mc-bold-red);
  transition: all 0.15s ease;
}

.mc-bold-review-card:hover {
  border-top-color: var(--mc-bold-yellow);
}

.mc-bold-review-card__user {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.mc-bold-review-card__avatar {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--mc-bold-black);
  color: var(--mc-bold-yellow);
  font-size: 20px;
  font-weight: 900;
  font-family: 'Arial Black', sans-serif;
}

.mc-bold-review-card__name {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 900;
  color: var(--mc-bold-black);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Arial Black', sans-serif;
}

.mc-bold-review-card__city {
  font-size: 11px;
  color: var(--mc-bold-gray-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

.mc-bold-review-card__stars {
  margin-bottom: 12px;
  color: var(--mc-bold-yellow);
  font-size: 14px;
  letter-spacing: 2px;
}

.mc-bold-review-card__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--mc-bold-gray);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ── CTA Section ── */
.mc-bold-cta {
  margin-bottom: 0;
}

.mc-bold-cta__banner {
  position: relative;
  padding: 72px 48px;
  background: var(--mc-bold-red);
  overflow: hidden;
}

.mc-bold-cta__banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(0, 0, 0, 0.15) 20px,
    rgba(0, 0, 0, 0.15) 40px
  );
}

.mc-bold-cta__banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--mc-bold-yellow);
}

.mc-bold-cta__content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.mc-bold-cta__headline {
  margin: 0 0 16px;
  font-size: 44px;
  font-weight: 900;
  color: var(--mc-bold-white);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  font-family: 'Arial Black', sans-serif;
}

.mc-bold-cta__subtext {
  margin: 0 0 36px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.mc-bold-cta__button {
  display: inline-block;
  padding: 18px 56px;
  background: var(--mc-bold-yellow);
  color: var(--mc-bold-black);
  font-size: 16px;
  font-weight: 900;
  text-decoration: none;
  border-radius: 0;
  transition: all 0.15s ease;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Arial Black', sans-serif;
  border: 3px solid var(--mc-bold-black);
}

.mc-bold-cta__button:hover {
  background: var(--mc-bold-white);
  color: var(--mc-bold-red);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* ── Floating CTA (bold variant) ── */
.mc-cta-floating {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0;
  background: var(--mc-bold-black);
  border-top: 3px solid var(--mc-bold-yellow);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

.mc-cta-floating__btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 0;
  transition: all 0.15s ease;
  color: var(--mc-bold-white);
  background: transparent;
  border: none;
  font-family: 'Arial Black', sans-serif;
}

.mc-cta-floating__btn:hover {
  background: var(--mc-bold-red);
}

.mc-cta-floating__btn--primary {
  background: var(--mc-bold-red);
  color: var(--mc-bold-white);
}

.mc-cta-floating__btn--primary:hover {
  background: var(--mc-bold-red-mid);
}

.mc-cta-floating__divider {
  width: 1px;
  height: 28px;
  background: var(--mc-bold-gray);
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .mc-bold-hero__inner {
    grid-template-columns: 1fr;
  }

  .mc-bold-hero::before {
    width: 100%;
    height: 40%;
    clip-path: polygon(0 60%, 100% 20%, 100% 100%, 0 100%);
  }

  .mc-bold-hero__content {
    padding: 32px 24px;
  }

  .mc-bold-hero__title {
    font-size: 32px;
  }

  .mc-bold-features,
  .mc-bold-steps,
  .mc-bold-faq,
  .mc-bold-reviews {
    padding: 32px 24px;
  }

  .mc-bold-steps__title,
  .mc-bold-faq__title,
  .mc-bold-reviews__title {
    font-size: 28px;
  }

  .mc-bold-hero__badges {
    flex-direction: column;
  }

  .mc-bold-features__grid {
    grid-template-columns: 1fr;
  }

  .mc-bold-steps__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .mc-bold-steps__grid::before {
    display: none;
  }

  .mc-bold-step-card {
    padding-top: 24px;
    padding-left: 80px;
  }

  .mc-bold-step-card__num {
    left: 0;
  }

  .mc-bold-reviews__grid {
    grid-template-columns: 1fr;
  }

  .mc-bold-faq-item {
    flex-direction: column;
    gap: 12px;
  }

  .mc-bold-cta__banner {
    padding: 48px 24px;
  }

  .mc-bold-cta__headline {
    font-size: 32px;
  }

  .mc-bold-cta__button {
    padding: 14px 36px;
    font-size: 14px;
  }
}
