/* About Us — light theme + layout (matches home/login/register) */

/* Base structure (formerly from landing-dark.css) */
.landing-page-hero {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.landing-page-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.landing-page-hero__shade {
  position: absolute;
  inset: 0;
}

.landing-page-hero .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 16px;
  text-align: left;
}

.landing-page-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
}

.landing-page-hero h1 .gold {
  display: block;
  font-size: 0.55em;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.landing-page-hero .hero-tagline {
  font-size: 1.05rem;
  max-width: 58ch;
  margin: 0 0 24px;
}

.landing-section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.landing-section-title {
  margin: 0 0 20px;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
}

.landing-section-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 10px;
  border-radius: 2px;
}

.landing-section-card {
  margin-bottom: 28px;
}

.landing-section-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
  border-radius: var(--rb-radius-lg, 16px);
  overflow: hidden;
}

.landing-section-media {
  margin: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.landing-section-body {
  padding: 28px 24px;
}

.landing-prose {
  font-size: 15px;
  line-height: 1.7;
}

.landing-prose h2 {
  font-size: 1.35rem;
  margin: 28px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(180, 140, 40, 0.35);
}

.landing-prose h2:first-child {
  margin-top: 0;
}

.landing-prose h3 {
  font-size: 1.05rem;
  margin: 20px 0 10px;
}

.landing-prose p {
  margin: 0 0 14px;
}

.landing-prose ul {
  margin: 0 0 16px;
  padding-left: 1.25rem;
}

.landing-prose li {
  margin-bottom: 8px;
}

.landing-icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.landing-dual-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .landing-dual-cards {
    grid-template-columns: 1fr 1fr;
  }
}

.landing-glass-card {
  border-radius: var(--rb-radius-lg, 16px);
  padding: 28px 24px;
}

.landing-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 40px;
  padding: 32px 20px;
  border-radius: var(--rb-radius-lg, 16px);
}

@media (min-width: 768px) {
  .landing-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.landing-stat {
  text-align: left;
  padding: 12px;
}

.landing-stat [data-counter] {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.1;
}

.landing-stat span.label {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.landing-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
  padding: 24px;
  border-radius: var(--rb-radius-md, 12px);
}

.landing-trust-badge {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 100px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.landing-trust-badge .badge-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.landing-block {
  margin-bottom: 48px;
}

.landing-block:last-child {
  margin-bottom: 0;
}

/* Light theme overrides */
.home-page--light.landing-page--about {
  font-family: "Titillium Web", "Segoe UI", Roboto, sans-serif;
}

.home-page--light.landing-page--about .landing-faq.landing-glass-card {
  padding: 20px 24px;
}

.home-page--light.landing-page--about .landing-page-hero {
  min-height: min(48vh, 420px);
  border-bottom: 1px solid rgba(180, 140, 40, 0.22);
}

.home-page--light.landing-page--about .landing-page-hero__bg {
  opacity: 1;
}

.home-page--light.landing-page--about .landing-page-hero__shade {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.45) 50%,
    transparent 100%
  );
}

.home-page--light.landing-page--about .landing-page-hero h1 {
  color: #fff;
  max-width: 28ch;
  text-shadow: none;
}

.home-page--light.landing-page--about .landing-page-hero h1 .gold {
  color: var(--rb-gold, #b8860b);
}

.home-page--light.landing-page--about .landing-page-hero .hero-tagline {
  color: rgba(255, 255, 255, 0.92);
  max-width: 58ch;
  text-shadow: none;
}

.home-page--light.landing-page--about .landing-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 16px 48px;
}

.home-page--light.landing-page--about .landing-block {
  margin-bottom: 40px;
  text-align: left;
}

.home-page--light.landing-page--about .landing-section-label {
  color: #b8860b;
}

.home-page--light.landing-page--about .landing-section-title {
  color: #1a1a1a;
  max-width: 48ch;
}

.home-page--light.landing-page--about .landing-section-title::after {
  background: linear-gradient(90deg, #b8860b, transparent);
}

/* Image + text split — fix tall stretched image on desktop */
.home-page--light.landing-page--about .landing-section-grid {
  background: #fff;
  border: 1px solid rgba(180, 140, 40, 0.22);
  box-shadow: 0 4px 24px rgba(28, 24, 16, 0.06);
  align-items: start;
}

.home-page--light.landing-page--about .landing-section-media {
  background: #faf8f5;
  border-right: 1px solid rgba(180, 140, 40, 0.15);
  min-height: 0;
  align-self: start;
  padding: 12px;
}

.home-page--light.landing-page--about .landing-section-card.is-reverse .landing-section-media {
  border-right: none;
  border-left: 1px solid rgba(180, 140, 40, 0.15);
}

.home-page--light.landing-page--about .landing-section-media img {
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: 420px;
  object-fit: contain;
  object-position: top center;
  display: block;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(180, 140, 40, 0.12);
}

.home-page--light.landing-page--about .landing-section-media--portrait img {
  max-height: 480px;
  object-fit: cover;
  object-position: top center;
}

@media (min-width: 900px) {
  .home-page--light.landing-page--about .landing-section-media {
    position: sticky;
    top: 118px;
  }

  .home-page--light.landing-page--about .landing-section-grid {
    grid-template-columns: minmax(280px, 38%) 1fr;
  }

  .home-page--light.landing-page--about .landing-section-card.is-reverse .landing-section-grid {
    grid-template-columns: 1fr minmax(280px, 38%);
  }
}

.home-page--light.landing-page--about .landing-section-body {
  padding: 24px 28px;
}

.home-page--light.landing-page--about .landing-prose {
  color: #555561;
}

.home-page--light.landing-page--about .landing-prose h2,
.home-page--light.landing-page--about .landing-prose h3 {
  color: #1a1a1a;
}

.home-page--light.landing-page--about .landing-prose h3 {
  color: #9b1b30;
}

.home-page--light.landing-page--about .landing-prose strong {
  color: #1a1a1a;
}

.home-page--light.landing-page--about .landing-glass-card {
  background: #fff;
  border: 1px solid rgba(180, 140, 40, 0.22);
  box-shadow: 0 4px 24px rgba(28, 24, 16, 0.06);
}

.home-page--light.landing-page--about .landing-dual-cards .landing-glass-card h3 {
  color: #9b1b30;
}

.home-page--light.landing-page--about .landing-icon-card {
  background: #fff;
  border: 1px solid rgba(180, 140, 40, 0.18);
  text-align: left;
  padding: 18px 16px;
}

.home-page--light.landing-page--about .landing-icon-card .icon-wrap {
  margin: 0 0 12px;
  background: linear-gradient(145deg, rgba(245, 213, 101, 0.25), rgba(255, 248, 235, 0.9));
  border-color: rgba(180, 140, 40, 0.25);
  color: #b8860b;
}

.home-page--light.landing-page--about .landing-icon-card h3 {
  color: #1a1a1a;
  text-transform: none;
  letter-spacing: 0;
  font-size: 1rem;
}

.home-page--light.landing-page--about .landing-icon-card p {
  color: #555561;
}

.home-page--light.landing-page--about .landing-stats {
  background: linear-gradient(145deg, #fff 0%, #fff9ee 100%);
  border: 1px solid rgba(180, 140, 40, 0.22);
}

.home-page--light.landing-page--about .landing-stat [data-counter] {
  color: #b8860b;
}

.home-page--light.landing-page--about .landing-stat {
  text-align: left;
}

.home-page--light.landing-page--about .landing-stat span.label {
  color: #555561;
}

.home-page--light.landing-page--about .landing-trust-row {
  background: #fff;
  border: 1px dashed rgba(180, 140, 40, 0.35);
  justify-content: flex-start;
  gap: 16px;
}

.home-page--light.landing-page--about .landing-trust-badge {
  color: #555561;
  text-align: left;
  align-items: flex-start;
  min-width: 120px;
}

.home-page--light.landing-page--about .landing-trust-badge .badge-icon {
  background: #fff9ee;
  border-color: rgba(180, 140, 40, 0.25);
  color: #b8860b;
}

.home-page--light.landing-page--about .landing-faq details {
  background: #fff;
  border-color: rgba(180, 140, 40, 0.18);
  color: #1a1a1a;
}

.home-page--light.landing-page--about .landing-faq summary {
  color: #1a1a1a;
}

.home-page--light.landing-page--about .landing-faq details[open] summary {
  color: #9b1b30;
}

.home-page--light.landing-page--about .landing-faq .faq-body {
  color: #555561;
}

.home-page--light.landing-page--about .landing-cta-band {
  background: linear-gradient(145deg, #fff9ee 0%, #fff 100%);
  border: 1px solid rgba(180, 140, 40, 0.28);
  box-shadow: 0 4px 24px rgba(28, 24, 16, 0.06);
  text-align: left;
}

.home-page--light.landing-page--about .landing-cta-band h2 {
  color: #1a1a1a;
}

.home-page--light.landing-page--about .landing-cta-band p {
  color: #555561;
  max-width: 72ch;
}

.home-page--light.landing-page--about .landing-cta-band .landing-hero-cta {
  justify-content: flex-start !important;
}

/* —— Who We Are showcase —— */
.about-showcase {
  background: #fff;
  border: 1px solid rgba(180, 140, 40, 0.22);
  border-radius: var(--rb-radius-lg, 16px);
  box-shadow: 0 4px 24px rgba(28, 24, 16, 0.06);
  overflow: hidden;
}

.about-showcase__banner {
  margin: 0;
  line-height: 0;
  background: linear-gradient(145deg, #fff9ee 0%, #faf8f5 100%);
  border-bottom: 1px solid rgba(180, 140, 40, 0.15);
}

.about-showcase__banner img {
  width: 100%;
  height: clamp(200px, 32vw, 340px);
  display: block;
  object-fit: cover;
  object-position: top center;
}

.about-showcase__body {
  padding: 24px 24px 28px;
}

.about-showcase__lead {
  margin: 0 0 20px;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #2a2a32;
  font-weight: 600;
  max-width: 72ch;
}

.about-showcase__paths {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 24px;
}

@media (min-width: 640px) {
  .about-showcase__paths {
    grid-template-columns: repeat(3, 1fr);
  }
}

.about-showcase__path {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(180, 140, 40, 0.22);
  background: linear-gradient(145deg, #fffaf2 0%, #fff 100%);
  color: #1a1a1a !important;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.about-showcase__path i {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(184, 134, 11, 0.12);
  color: #b8860b;
  font-size: 1rem;
}

.about-showcase__path:hover {
  border-color: rgba(155, 27, 48, 0.35);
  box-shadow: 0 4px 14px rgba(28, 24, 16, 0.08);
  color: #9b1b30 !important;
}

.about-showcase__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

.about-showcase__col h3 {
  margin: 0 0 12px;
  font-size: 1.05rem;
  color: #9b1b30;
}

.about-showcase__col p:last-child {
  margin-bottom: 0;
}

/* —— Offer cards (wider, responsive) —— */
.about-offer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 560px) {
  .about-offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .about-offer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}

.about-offer-card {
  background: #fff;
  border: 1px solid rgba(180, 140, 40, 0.18);
  border-radius: var(--rb-radius-md, 12px);
  padding: 22px 20px;
  min-height: 168px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 2px 12px rgba(28, 24, 16, 0.04);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.about-offer-card:hover {
  border-color: rgba(184, 134, 11, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(28, 24, 16, 0.08);
}

.about-offer-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(245, 213, 101, 0.3), rgba(255, 248, 235, 0.95));
  border: 1px solid rgba(180, 140, 40, 0.25);
  color: #b8860b;
  font-size: 1.25rem;
}

.about-offer-card h3 {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
}

.about-offer-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #555561;
}

/* —— Trust badges (centered, responsive grid) —— */
.about-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px 20px;
  background: #fff;
  border: 1px dashed rgba(180, 140, 40, 0.35);
  border-radius: var(--rb-radius-lg, 16px);
  justify-items: center;
}

@media (min-width: 600px) {
  .about-trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .about-trust-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    padding: 32px 24px;
  }
}

.about-trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  text-align: center;
  width: 100%;
  max-width: 160px;
}

.about-trust-badge__icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff9ee;
  border: 1px solid rgba(180, 140, 40, 0.25);
  color: #b8860b;
  font-size: 1.45rem;
  flex-shrink: 0;
}

.about-trust-badge__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.35;
  color: #555561;
}

/* —— Payments & support showcase —— */
.about-payments-showcase {
  background: #fff;
  border: 1px solid rgba(180, 140, 40, 0.22);
  border-radius: var(--rb-radius-lg, 16px);
  box-shadow: 0 4px 24px rgba(28, 24, 16, 0.06);
  overflow: hidden;
}

.about-payments-showcase__hero {
  margin: 0;
  line-height: 0;
  background: #faf8f5;
  border-bottom: 1px solid rgba(180, 140, 40, 0.12);
}

.about-payments-showcase__hero img {
  width: 100%;
  height: clamp(180px, 28vw, 300px);
  display: block;
  object-fit: cover;
  object-position: center top;
}

.about-payments-showcase__panels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 900px) {
  .about-payments-showcase__panels {
    grid-template-columns: 1fr 1fr;
  }
}

.about-payments-panel {
  padding: 24px 24px 28px;
  border-bottom: 1px solid rgba(180, 140, 40, 0.12);
}

@media (min-width: 900px) {
  .about-payments-panel {
    border-bottom: none;
    border-right: 1px solid rgba(180, 140, 40, 0.12);
  }

  .about-payments-panel--support {
    border-right: none;
  }
}

.about-payments-panel__head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.about-payments-panel__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(245, 213, 101, 0.3), #fff9ee);
  border: 1px solid rgba(180, 140, 40, 0.25);
  color: #b8860b;
  font-size: 1.2rem;
}

.about-payments-panel h3 {
  margin: 0;
  font-size: 1.08rem;
  color: #9b1b30;
  line-height: 1.35;
}

.about-payments-panel > p:first-of-type {
  margin: 0 0 14px;
  color: #555561;
  font-size: 0.95rem;
  line-height: 1.6;
}

.about-payments-panel__list {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.about-payments-panel__list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #44444f;
}

.about-payments-panel__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #b8860b;
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.15);
}

.about-payments-panel__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.about-payments-panel__chips span {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #5a4a2a;
  background: #fff9ee;
  border: 1px solid rgba(180, 140, 40, 0.28);
}

.about-payments-panel__note {
  margin: 0 0 12px;
  font-size: 0.88rem;
  line-height: 1.6;
  color: #666672;
}

.about-payments-panel__note:last-of-type {
  margin-bottom: 0;
}

.about-payments-panel__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #9b1b30 !important;
  background: rgba(155, 27, 48, 0.06);
  border: 1px solid rgba(155, 27, 48, 0.2);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.about-payments-panel__cta:hover {
  background: rgba(155, 27, 48, 0.1);
  border-color: rgba(155, 27, 48, 0.35);
  color: #7d001c !important;
}
