/* ==========================================================================
   Ordnungskommando — About (section-specific styles)
   --------------------------------------------------------------------------
   Reuses the global system (.ord-section, .ord-card, .ord-btn, .ord-icon)
   and only adds what is unique here, scoped by .ab-* classes.

   Inner content width is capped at 1350px (.ab-container) per the design.

   Sections
     ab-hero   1  Hero — dark photo band + checklist + floating stat cards
   ========================================================================== */

/* Local container — 1350px max width, shares the global gutter token. */
.ab-container {
  width: 100%;
  max-width: 1350px;
  margin-inline: auto;
  padding-inline: var(--ord-gutter);
}

/* ==========================================================================
   SECTION 1 — Hero
   ========================================================================== */
.ab-hero {
  position: relative;
  color: #fff;
}

/* ---- Dark photo band ---------------------------------------------------- */
.ab-hero__band {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 720px;
  overflow: hidden;
}

.ab-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.ab-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 48px;
  /* Extra bottom padding leaves room for the stat cards that float up. */
  padding-top: 72px;
  padding-bottom: 132px;
}

/* ---- Breadcrumb --------------------------------------------------------- */
.ab-hero__crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.75);
}
.ab-hero__crumbs a {
  color: rgba(255, 255, 255, 0.75);
}
.ab-hero__crumbs a:hover {
  color: #fff;
}
.ab-hero__crumbs .is-current {
  color: #fff;
  font-weight: var(--ord-fw-medium);
}

/* ---- Title -------------------------------------------------------------- */
.ab-hero__title {
  color: #fff;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: var(--ord-lh-heading);
  max-width: 16ch;
  margin: 0 0 30px;
}

/* ---- CTAs --------------------------------------------------------------- */
.ab-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* ---- Checklist ---------------------------------------------------------- */
.ab-hero__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ab-hero__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.92);
}
.ab-hero__list .ord-icon {
  color: var(--ord-primary);
  font-size: 22px;
  flex-shrink: 0;
}

/* ---- Floating stat cards ------------------------------------------------ */
.ab-hero__stats-wrap {
  position: relative;
  z-index: 2;
 
  padding-bottom: 64px;
}

.ab-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  /* Pull the cards up so they straddle the photo band / light strip edge. */
  margin-top: -88px;
}

.ab-stat {
  padding: 26px 24px;
  text-align: left;
  box-shadow: var(--ord-shadow);
}

.ab-stat__icon {
  color: var(--ord-primary);
  font-size: 22px;
  display: inline-flex;
  margin-bottom: 16px;
}

.ab-stat__num {
  display: block;
  font-family: var(--ord-font-heading);
  font-size: 34px;
  font-weight: var(--ord-fw-bold);
  color: var(--ord-heading);
  line-height: 1.1;
}

.ab-stat__label {
  display: block;
  font-size: 14px;
  color: var(--ord-muted);
  margin-top: 6px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

/* Tablet — checklist drops below the heading/CTA column. */
@media (max-width: 991px) {
  .ab-hero__inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 124px;
  }
}

/* Small tablet — stats become a 2×2 grid. */
@media (max-width: 767px) {
  .ab-hero__band {
    min-height: 0;
  }
  .ab-hero__inner {
    padding-top: 56px;
    padding-bottom: 112px;
  }
  .ab-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: -80px;
  }
  .ab-stat {
    padding: 22px 20px;
  }
  .ab-stat__num {
    font-size: 28px;
  }
}

/* Phone — single-column CTAs + single-column stats. */
@media (max-width: 480px) {
  .ab-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .ab-hero__actions .ord-btn {
    width: 100%;
  }
  .ab-stats {
    grid-template-columns: 1fr;
    margin-top: -72px;
  }
}

/* ==========================================================================
   SECTION 2 — Our Story
   ========================================================================== */
.ab-story {
  position: relative;
  overflow: hidden;
}

/* Faint bear-shield watermark anchored to the right edge. */
.ab-story__watermark {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: auto;
  height: 118%;
  max-width: none;
  opacity: 0.9;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.ab-story__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* ---- Left column -------------------------------------------------------- */
/* Two short red bars echoing the brand mark above the eyebrow. */
.ab-story__mark {
  display: block;
  width: 26px;
  height: 30px;
  margin-bottom: 24px;
  background:
    linear-gradient(var(--ord-primary), var(--ord-primary)) 0 0 / 8px 100% no-repeat,
    linear-gradient(var(--ord-primary), var(--ord-primary)) 18px 0 / 8px 100% no-repeat;
}

.ab-story__title {
  font-size: clamp(30px, 3vw, 42px);
  line-height: var(--ord-lh-heading);
  color: var(--ord-heading);
  margin: 0 0 32px;
}

.ab-story__media {
  margin: 0 0 28px;
  border-radius: var(--ord-radius);
  overflow: hidden;
  box-shadow: var(--ord-shadow-sm);
}
.ab-story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ab-story__lead {
  color: var(--ord-muted);
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
  max-width: 60ch;
}

/* ---- Right column: vertical timeline ------------------------------------ */
.ab-timeline {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 8px;
}

.ab-timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
}

/* Connector line running through the badge centres (skip last item). */
.ab-timeline__item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 52px;
  bottom: -40px;
  width: 2px;
  transform: translateX(-50%);
  background: var(--ord-border);
}

.ab-timeline__badge {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  border-radius: var(--ord-radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ord-font-heading);
  font-weight: var(--ord-fw-bold);
  font-size: 15px;
  color: var(--ord-heading);
  background: var(--ord-white);
  border: 2px solid var(--ord-border);
}
.ab-timeline__badge--active {
  color: #fff;
  background: var(--ord-primary);
  border-color: var(--ord-primary);
  box-shadow: 0 8px 20px rgba(193, 39, 45, 0.28);
}

.ab-timeline__content {
  padding-top: 2px;
}
.ab-timeline__year {
  display: block;
  font-size: 13px;
  font-weight: var(--ord-fw-semibold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ord-primary);
  margin-bottom: 6px;
}
.ab-timeline__title {
  font-size: 20px;
  line-height: 1.3;
  color: var(--ord-heading);
  margin: 0 0 10px;
}
.ab-timeline__content p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ord-muted);
  margin: 0;
}

/* ---- Responsive --------------------------------------------------------- */
/* Tablet — stack columns; calm the watermark so text stays readable. */
@media (max-width: 991px) {
  .ab-story__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .ab-story__lead {
    max-width: none;
  }
  .ab-story__watermark {
    height: auto;
    width: 80%;
    opacity: 0.12;
  }
}

/* Phone — tighten timeline spacing. */
@media (max-width: 480px) {
  .ab-timeline__item {
    grid-template-columns: 42px 1fr;
    gap: 18px;
  }
  .ab-timeline__item:not(:last-child)::before {
    left: 21px;
    top: 48px;
  }
  .ab-timeline__badge {
    width: 42px;
    height: 42px;
  }
}

/* ==========================================================================
   SECTION 3 — Our Mission (dark)
   ========================================================================== */
.ab-mission__head {
  margin-bottom: 40px;
}

.ab-mission__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 760px;
  margin-inline: auto;
}

.ab-mission__pill {
  padding: 14px 26px;
  border-radius: var(--ord-radius-pill);
  font-size: 15px;
  font-weight: var(--ord-fw-medium);
  color: var(--ord-on-dark);
  background: var(--ord-dark-card);
  border: 1px solid rgba(193, 39, 45, 0.35);
  transition: border-color var(--ord-dur) var(--ord-ease),
    background-color var(--ord-dur) var(--ord-ease),
    transform var(--ord-dur) var(--ord-ease);
}
.ab-mission__pill:hover {
  border-color: var(--ord-primary);
  background: rgba(193, 39, 45, 0.12);
  transform: translateY(-2px);
}

/* ---- Responsive --------------------------------------------------------- */
@media (max-width: 480px) {
  .ab-mission__pills {
    gap: 12px;
  }
  .ab-mission__pill {
    padding: 12px 20px;
    font-size: 14px;
  }
}

/* ==========================================================================
   SECTION 4 — What We Do
   ========================================================================== */
.ab-services__head {
  max-width: 720px;
  margin-bottom: 48px;
}
.ab-services__title {
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: var(--ord-lh-heading);
  color: var(--ord-heading);
  margin: 0 0 16px;
}
.ab-services__lead {
  color: var(--ord-muted);
  font-size: var(--ord-fs-lead);
  margin: 0;
}

.ab-services__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.ab-service {
  padding: 30px 26px;
}
.ab-service .ord-icon-chip {
  margin-bottom: 22px;
}
.ab-service__title {
  font-size: 18px;
  line-height: 1.35;
  color: var(--ord-heading);
  margin: 0 0 12px;
}
.ab-service p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ord-muted);
  margin: 0;
}

/* ---- Responsive --------------------------------------------------------- */
/* Small desktop / tablet — 2 columns. */
@media (max-width: 991px) {
  .ab-services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
/* Phone — single column. */
@media (max-width: 560px) {
  .ab-services__grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   SECTION 5 — Customer-Focused Approach (blush)
   ========================================================================== */
.ab-approach__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* ---- Left column -------------------------------------------------------- */
.ab-approach__title {
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: var(--ord-lh-heading);
  color: var(--ord-heading);
  margin: 0 0 20px;
}
.ab-approach__lead {
  color: var(--ord-muted);
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 28px;
  max-width: 52ch;
}
.ab-approach__list {
  gap: 16px;
}
.ab-approach__list li {
  font-size: 15px;
}

/* ---- Right column: testimonial card ------------------------------------- */
.ab-quote {
  position: relative;
  padding: 40px;
  overflow: hidden;
}
/* Oversized typographic quote mark in the top-right corner. */
.ab-quote__mark {
  position: absolute;
  top: 18px;
  right: 30px;
  font-family: var(--ord-font-heading);
  font-weight: var(--ord-fw-extrabold);
  font-size: 90px;
  line-height: 1;
  color: var(--ord-border);
  pointer-events: none;
  user-select: none;
}
.ab-quote__stars {
  position: relative;
  font-size: 18px;
  margin-bottom: 22px;
}
.ab-quote__text {
  position: relative;
  margin: 0 0 28px;
  padding: 0 0 28px;
  border-bottom: 1px solid var(--ord-border-soft);
  font-size: 18px;
  line-height: 1.7;
  font-style: italic;
  color: var(--ord-text);
}
.ab-quote__author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.ab-quote__avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--ord-radius-pill);
  object-fit: cover;
  flex-shrink: 0;
}
.ab-quote__meta {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}
.ab-quote__meta strong {
  font-size: 15px;
  color: var(--ord-heading);
}
.ab-quote__meta span {
  font-size: 13px;
  color: var(--ord-muted);
}

/* ---- Proof bar ---------------------------------------------------------- */
.ab-approach__proof {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
  padding: 18px 28px;
  border-radius: var(--ord-radius);
  background: rgba(193, 39, 45, 0.07);
}
.ab-approach__proof strong {
  font-size: 15px;
  color: var(--ord-heading);
}
.ab-approach__proof-note {
  font-size: 14px;
  color: var(--ord-muted);
}

/* ---- Responsive --------------------------------------------------------- */
@media (max-width: 991px) {
  .ab-approach__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ab-approach__lead {
    max-width: none;
  }
}
@media (max-width: 480px) {
  .ab-quote {
    padding: 28px 24px;
  }
  .ab-quote__text {
    font-size: 16px;
  }
  .ab-quote__mark {
    font-size: 70px;
    right: 22px;
  }
}

/* ==========================================================================
   SECTION 7 — Professional & Reliable Team
   ========================================================================== */
.ab-team__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.ab-team__card {
  position: relative;
  overflow: hidden;
  padding: 32px 30px;
}

/* Oversized faint index number in the top-right corner. */
.ab-team__num {
  position: absolute;
  top: 8px;
  right: 24px;
  font-family: var(--ord-font-heading);
  font-weight: var(--ord-fw-extrabold);
  font-size: 86px;
  line-height: 1;
  color: rgba(193, 39, 45, 0.07);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* Keep all real content above the watermark number. */
.ab-team__card > :not(.ab-team__num) {
  position: relative;
  z-index: 1;
}

.ab-team__card .ord-icon-chip {
  margin-bottom: 22px;
}
.ab-team__title {
  font-size: 20px;
  line-height: 1.3;
  color: var(--ord-heading);
  margin: 0 0 12px;
}
.ab-team__desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ord-muted);
  margin: 0 0 22px;
}
.ab-team__list {
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--ord-border-soft);
}
.ab-team__list li {
  font-size: 14px;
  font-weight: var(--ord-fw-medium);
}

/* ---- Responsive --------------------------------------------------------- */
@media (max-width: 991px) {
  .ab-team__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
  }
}

/* ==========================================================================
   SECTION 8 — Responsible Disposal (red)
   ========================================================================== */
.ab-resp__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

/* Eyebrow sits on red — make text + underline white. */
.ab-resp .ord-eyebrow {
  color: #fff;
}

.ab-resp__title {
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: var(--ord-lh-heading);
  color: #fff;
  margin: 0 0 18px;
}
.ab-resp__lead {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 28px;
  max-width: 52ch;
}

/* ---- Stacked translucent stat cards ------------------------------------- */
.ab-resp__stats {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.ab-resp__card {
  padding: 24px 26px;
  border-radius: var(--ord-radius);
  background: rgba(0, 0, 0, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.ab-resp__top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.ab-resp__icon {
  display: inline-flex;
  color: #fff;
  font-size: 22px;
}
.ab-resp__num {
  font-family: var(--ord-font-heading);
  font-weight: var(--ord-fw-bold);
  font-size: 28px;
  line-height: 1;
  color: #fff;
}
.ab-resp__card-title {
  font-size: 17px;
  color: #fff;
  margin: 0 0 8px;
}
.ab-resp__card p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

/* ---- Right column ------------------------------------------------------- */
.ab-resp__media {
  margin: 0 0 28px;
  border-radius: var(--ord-radius);
  overflow: hidden;
}
.ab-resp__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ab-resp__note {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

/* ---- Responsive --------------------------------------------------------- */
@media (max-width: 991px) {
  .ab-resp__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ab-resp__lead {
    max-width: none;
  }
}

/* ==========================================================================
   SECTION 9 — Why You Choose
   ========================================================================== */
.ab-why__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: center;
}

/* ---- Left column -------------------------------------------------------- */
.ab-why__title {
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: var(--ord-lh-heading);
  color: var(--ord-heading);
  margin: 0 0 20px;
}
.ab-why__accent {
  color: var(--ord-primary);
}
.ab-why__lead {
  color: var(--ord-muted);
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 28px;
  max-width: 46ch;
}

/* Proof — avatars + rating in a soft pill. */
.ab-why__proof {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 14px 22px;
  border-radius: var(--ord-radius-pill);
  background: var(--ord-surface-soft);
  border: 1px solid var(--ord-border-soft);
}
.ab-why__avatars {
  display: inline-flex;
}
.ab-why__avatars span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-left: -10px;
  border-radius: var(--ord-radius-pill);
  border: 2px solid var(--ord-white);
  font-size: 13px;
  font-weight: var(--ord-fw-semibold);
  color: #fff;
}
.ab-why__avatars span:first-child { margin-left: 0; }
.ab-why__avatars span:nth-child(1) { background: #c1272d; }
.ab-why__avatars span:nth-child(2) { background: #7f1718; }
.ab-why__avatars span:nth-child(3) { background: #3a1010; }
.ab-why__avatars span:nth-child(4) { background: #1b1b1b; }

.ab-why__proof-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ab-why__proof-meta .ord-stars {
  font-size: 14px;
}
.ab-why__proof-text {
  font-size: 13px;
  color: var(--ord-muted);
}
.ab-why__proof-text strong {
  color: var(--ord-heading);
}

/* ---- Right column: 2×2 feature cards ------------------------------------ */
.ab-why__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.ab-why__card {
  padding: 28px;
}
.ab-why__card .ord-icon-chip {
  margin-bottom: 20px;
}
.ab-why__card-title {
  font-size: 18px;
  line-height: 1.35;
  color: var(--ord-heading);
  margin: 0 0 10px;
}
.ab-why__card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ord-muted);
  margin: 0;
}

/* ---- Responsive --------------------------------------------------------- */
@media (max-width: 991px) {
  .ab-why__grid {
    grid-template-columns: 1fr;
    gap: 44px;
    align-items: start;
  }
  .ab-why__lead {
    max-width: none;
  }
}
@media (max-width: 560px) {
  .ab-why__cards {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   SECTION 10 — Service Area (dark)
   ========================================================================== */
.ab-area {
  position: relative;
  overflow: hidden;
}

/* Faint oversized "Berlin" word mark behind the content. */
.ab-area__watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--ord-font-heading);
  font-weight: var(--ord-fw-extrabold);
  font-size: clamp(120px, 22vw, 280px);
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
  color: rgba(193, 39, 45, 0.06);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.ab-area__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* ---- Left column -------------------------------------------------------- */
.ab-area__title {
  font-size: clamp(28px, 3vw, 40px);
  line-height: var(--ord-lh-heading);
  color: #fff;
  margin: 0 0 18px;
  max-width: 14ch;
}
.ab-area__lead {
  color: var(--ord-on-dark-muted);
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 32px;
  max-width: 46ch;
}
.ab-area__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* ---- Right column ------------------------------------------------------- */
.ab-area__label {
  display: block;
  font-size: 14px;
  font-weight: var(--ord-fw-semibold);
  color: var(--ord-primary);
  margin-bottom: 18px;
}

.ab-area__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}
.ab-area__pill {
  padding: 11px 18px;
  border-radius: var(--ord-radius-pill);
  font-size: 14px;
  font-weight: var(--ord-fw-medium);
  color: var(--ord-on-dark);
  background: var(--ord-dark-card);
  border: 1px solid var(--ord-border-dark);
  transition: border-color var(--ord-dur) var(--ord-ease),
    transform var(--ord-dur) var(--ord-ease);
}
.ab-area__pill:hover {
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-2px);
}
.ab-area__pill--accent {
  color: #fff;
  background: var(--ord-primary);
  border-color: var(--ord-primary);
}
.ab-area__pill--accent:hover {
  border-color: var(--ord-primary);
}

/* Reassurance note bar. */
.ab-area__note {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border-radius: var(--ord-radius);
  border: 1px solid var(--ord-border-dark);
  background: var(--ord-dark-2);
  font-size: 14px;
  color: var(--ord-on-dark-muted);
}
.ab-area__note .ord-icon {
  color: var(--ord-primary);
  font-size: 18px;
  flex-shrink: 0;
}
.ab-area__note strong {
  color: #fff;
  font-weight: var(--ord-fw-semibold);
}
.ab-area__note:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

/* ---- Responsive --------------------------------------------------------- */
@media (max-width: 991px) {
  .ab-area__inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .ab-area__title,
  .ab-area__lead {
    max-width: none;
  }
}
@media (max-width: 480px) {
  .ab-area__actions .ord-btn {
    width: 100%;
  }
  .ab-area__note {
    align-items: flex-start;
  }
}
