/* ===== ABOUT HERO ===== */
.about-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-page);
  width: 100%;
}

.about-hero__globe {
  position: absolute;
  top: -8%;
  right: -5%;
  width: 62%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  background: transparent;
  filter: none;
}
.about-hero__content {
  position: relative;
  z-index: 2;
  padding: 80px 24px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.about-hero__heading {
  font-size: 56px;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}
.about-hero__sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 32px;
}
.about-hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.about-hero__ctas--single {
  justify-content: center;
}

/* ===== ABOUT SPLIT SECTIONS ===== */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-split--reverse .about-split__text {
  order: 2;
}
.about-split--reverse .about-split__image {
  order: 1;
}
.about-split__heading {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-primary);
}
.about-split__text p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.about-split__image {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-light);
}
.about-split__image img {
  width: 100%;
  height: auto;
  display: block;
}
#rebates .about-split__image {
  border: 0;
}

/* Stats row inside "Who we are" */
.about-split__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border-light);
}
.about-stat {
  display: flex;
  flex-direction: column;
}
.about-stat__number {
  font-size: 28px;
  font-weight: 800;
  color: var(--blue-primary);
  line-height: 1.2;
}
.about-stat__label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Checklist */
.about-checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0 28px;
  padding-left: 0;
}
.about-checklist li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  color: var(--text-primary);
  line-height: 1.5;
}
.about-checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green-light);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%2327b36a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 11px;
  background-position: center;
  background-repeat: no-repeat;
}

/* ===== CTA BLOCK ===== */
.about-cta-block {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  padding: 40px 0;
}
.about-cta-block__heading {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
}
.about-cta-block__sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 32px;
}
.about-cta-block__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.about-cta-block__actions--single {
  justify-content: center;
}

.about-premium-section {
  background: linear-gradient(180deg, var(--bg-page) 0%, var(--bg-white) 100%);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.about-premium-note {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: 8px 0 0 32px;
  text-align: left;
}
.about-premium-note::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  bottom: 0;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--red-primary), rgba(239,43,45,0.22));
}
.about-premium-note p {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-muted);
}
.about-premium-note p:first-child {
  font-size: 21px;
  line-height: 1.55;
  color: var(--text-primary);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.about-premium-note p:last-child {
  margin-bottom: 0;
}
.about-premium-note__risk {
  margin-top: 28px !important;
  padding: 20px 22px;
  border: 1px solid rgba(239,43,45,0.14);
  border-radius: var(--radius-lg);
  background: rgba(239,43,45,0.045);
  color: var(--text-primary) !important;
}
.about-premium-note__risk strong {
  color: var(--red-primary);
}

/* More links */
.about-more-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}
.about-more-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  transition: background 0.2s, transform 0.2s;
}
.about-more-link:hover {
  background: var(--bg-card-hover);
  transform: translateX(4px);
}
.about-more-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ===== ACTIVE NAV LINK ===== */
.header-nav__link--active {
  color: var(--blue-primary);
}
.header-nav__link--active::after {
  width: 100% !important;
  background: var(--blue-primary) !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-split {
    gap: 40px;
  }
  .about-hero__heading {
    font-size: 38px;
  }
  .about-hero__globe {
    width: 50%;
  }
  .about-split__heading {
    font-size: 30px;
  }
  .about-split__stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-hero {
    min-height: 320px;
    flex-direction: column;
    justify-content: center;
  }
  .about-hero__globe {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
  }
  .about-hero__content {
    padding: 48px 16px;
    max-width: 100%;
  }
  .about-hero__heading {
    font-size: 28px;
  }
  .about-hero__sub {
    font-size: 15px;
  }
  .about-hero__ctas--single {
    align-items: center;
  }
  .about-hero__ctas--single .btn {
    width: auto;
    min-width: min(100%, 280px);
  }
  .about-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-split--reverse .about-split__text {
    order: 1;
  }
  .about-split--reverse .about-split__image {
    order: 2;
  }
  .about-split__heading {
    font-size: 26px;
  }
  .about-split__text p {
    font-size: 15px;
  }
  .about-split__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .about-stat__number {
    font-size: 22px;
  }
  .about-stat__label {
    font-size: 12px;
  }
  .about-checklist li {
    font-size: 14px;
  }
  .about-cta-block {
    padding: 32px 0;
  }
  .about-cta-block__heading {
    font-size: 24px;
  }
  .about-cta-block__sub {
    font-size: 14px;
    margin-bottom: 24px;
  }
  .about-premium-note {
    padding: 6px 0 0 22px;
  }
  .about-premium-note p {
    font-size: 14px;
    line-height: 1.65;
  }
  .about-premium-note p:first-child {
    font-size: 18px;
    line-height: 1.55;
  }
  .about-premium-note__risk {
    padding: 16px;
  }
  .about-more-links {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  .about-more-link {
    padding: 12px 16px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .about-hero {
    min-height: 280px;
  }
  .about-hero__content {
    padding: 36px 14px;
  }
  .about-hero__heading {
    font-size: 24px;
    margin-bottom: 14px;
  }
  .about-hero__sub {
    font-size: 13px;
    margin-bottom: 20px;
    line-height: 1.5;
  }
  .about-hero__ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .about-hero__ctas .btn {
    width: 100%;
    justify-content: center;
  }
  .about-hero__ctas--single {
    align-items: center;
  }
  .about-hero__ctas--single .btn {
    width: auto;
    min-width: min(100%, 280px);
  }
  .about-split__heading {
    font-size: 20px;
  }
  .about-split__text p {
    font-size: 14px;
  }
  .about-split__stats {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .about-stat__number {
    font-size: 20px;
  }
  .about-cta-block__heading {
    font-size: 20px;
  }
  .about-cta-block__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .about-cta-block__actions .btn {
    width: 100%;
    justify-content: center;
  }
  .about-premium-note {
    padding: 4px 0 0 18px;
  }
  .about-cta-block__actions--single {
    align-items: center;
  }
  .about-cta-block__actions--single .btn {
    width: auto;
    min-width: min(100%, 280px);
  }
}

@media (max-width: 360px) {
  .about-hero__heading {
    font-size: 21px;
  }
  .about-hero__sub {
    font-size: 12px;
  }
  .about-split__heading {
    font-size: 18px;
  }
  .about-cta-block__heading {
    font-size: 18px;
  }
}
