@charset "UTF-8";
/* =====================================================================
   About page — layered on top of main.css (uses the same design tokens)
   ===================================================================== */

/* ---------- Hero ---------- */
.about-hero {
  position: relative;
  padding: 74px 0;
  text-align: left;
  color: #fff;
  background: linear-gradient(180deg, rgba(5, 11, 32, 0.82), rgba(5, 11, 32, 0.92)), url("../images/rv/hero.jpg") center/cover no-repeat;
}
.about-hero .rv-eyebrow {
  color: #fff;
  justify-content: center;
  margin-bottom: 16px;
}
.about-hero h1 {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #fff;
  margin-bottom: 14px;
}
.about-hero p {
  max-width: 640px;
  margin: 0;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
}
.about-crumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}
.about-crumb a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}
.about-crumb a:hover {
  color: var(--primary-color);
}
.about-crumb span {
  color: rgba(255, 255, 255, 0.45);
}
.about-crumb span:last-child {
  color: #fff;
}
@media (max-width: 767px) {
  .about-hero {
    padding: 52px 0;
  }
  .about-hero h1 {
    font-size: 30px;
  }
}

/* ---------- Story ---------- */
.about-story-img {
  position: relative;
  height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-story-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 320px;
}
.about-story-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow);
}
.about-story-badge .b-num {
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  color: var(--primary-color);
}
.about-story-badge .b-lab {
  font-size: 13px;
  font-weight: 600;
  color: var(--secondary-color);
  line-height: 1.3;
}
.about-story p {
  color: var(--text-color);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.about-story .rv-lead {
  max-width: none;
}
.about-checklist {
  list-style: none;
  padding: 0;
  margin: 22px 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}
.about-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--secondary-color);
  font-size: 15px;
}
.about-checklist svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--primary-color);
}
@media (max-width: 575px) {
  .about-checklist {
    grid-template-columns: 1fr;
  }
}

/* ---------- Stats band ---------- */
.about-stats {
  background: var(--secondary-color);
  border-radius: var(--radius);
  padding: 40px 24px;
}
.about-stat {
  text-align: center;
  color: #fff;
}
.about-stat .num {
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  color: #fff;
}
.about-stat .num .plus {
  color: var(--primary-color);
}
.about-stat .lab {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.68);
}
@media (max-width: 767px) {
  .about-stat .num {
    font-size: 30px;
  }
}

/* ---------- Value cards ---------- */
.about-value {
  height: 100%;
  background: #fff;
  border: 1px solid var(--line-color);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.about-value:hover {
  transform: translateY(-4px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow);
}
.about-value .ic {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #fef2f2;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.about-value .ic svg {
  width: 26px;
  height: 26px;
}
.about-value h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 8px;
}
.about-value p {
  font-size: 14px;
  color: var(--muted-color);
  line-height: 1.6;
  margin: 0;
}

/* ---------- Steps ---------- */
.about-step {
  text-align: center;
  padding: 0 10px;
}
.about-step .n {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  font-weight: 800;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 8px 20px rgba(254, 0, 9, 0.26);
}
.about-step h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 8px;
}
.about-step p {
  font-size: 14px;
  color: var(--muted-color);
  line-height: 1.6;
  margin: 0;
}

/* ---------- CTA ---------- */
.about-cta {
  background: linear-gradient(135deg, var(--secondary-color), #0b1533);
  border-radius: var(--radius);
  padding: 56px 40px;
  text-align: center;
  color: #fff;
}
.about-cta h2 {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.about-cta p {
  max-width: 560px;
  margin: 0 auto 26px;
  color: rgba(255, 255, 255, 0.8);
}
.about-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .about-cta {
    padding: 40px 22px;
  }
  .about-cta h2 {
    font-size: 26px;
  }
}
